From 0c0b7610706d3d9566c153ee4f766598f2ec647a Mon Sep 17 00:00:00 2001 From: Pratik Dey Date: Sat, 17 Jul 2021 18:10:19 +0530 Subject: [PATCH 1/4] remove unwanted files dependencies Signed-off-by: Pratik Dey --- src/deltacode/models.py | 314 - .../scan/dropbear-2017.75-clip_scan.json | 25174 --- tests/data/models/scan/empty.json | 1 - tests/data/models/scan/empty.txt | 0 .../models/scan/files-count-mismatch.json | 958 - tests/data/models/scan/files-mismatch.json | 936 - tests/data/models/scan/info-not-selected.json | 1363 - tests/data/models/scan/malformed.json | 2138 - .../scan/multiple_copies_01-i_scan.json | 474 - .../scan/new-scancode-header-format.json | 1081 - tests/data/models/scan/old-version.json | 958 - .../models/scan/openssl-1.1.0f-clip_scan.json | 141373 --------------- .../models/scan/samples-clip-json-pp.json | 2171 - .../models/scan/samples-i-no-json-pp.json | 1 - tests/data/models/scan/this-is-json.txt | 2138 - tests/data/models/scan/well-formed-scan.json | 2138 - .../models/scan/zlib-1.2.11-clip_scan.json | 11612 -- tests/test_deltacode.py | 8 +- tests/test_models.py | 1087 - tests/test_utils.py | 2 +- 20 files changed, 8 insertions(+), 193919 deletions(-) delete mode 100644 src/deltacode/models.py delete mode 100644 tests/data/models/scan/dropbear-2017.75-clip_scan.json delete mode 100644 tests/data/models/scan/empty.json delete mode 100644 tests/data/models/scan/empty.txt delete mode 100644 tests/data/models/scan/files-count-mismatch.json delete mode 100644 tests/data/models/scan/files-mismatch.json delete mode 100644 tests/data/models/scan/info-not-selected.json delete mode 100644 tests/data/models/scan/malformed.json delete mode 100644 tests/data/models/scan/multiple_copies_01-i_scan.json delete mode 100644 tests/data/models/scan/new-scancode-header-format.json delete mode 100644 tests/data/models/scan/old-version.json delete mode 100644 tests/data/models/scan/openssl-1.1.0f-clip_scan.json delete mode 100644 tests/data/models/scan/samples-clip-json-pp.json delete mode 100644 tests/data/models/scan/samples-i-no-json-pp.json delete mode 100644 tests/data/models/scan/this-is-json.txt delete mode 100644 tests/data/models/scan/well-formed-scan.json delete mode 100644 tests/data/models/scan/zlib-1.2.11-clip_scan.json delete mode 100644 tests/test_models.py diff --git a/src/deltacode/models.py b/src/deltacode/models.py deleted file mode 100644 index ed7bee88..00000000 --- a/src/deltacode/models.py +++ /dev/null @@ -1,314 +0,0 @@ -# -# Copyright (c) 2017-2018 nexB Inc. and others. All rights reserved. -# http://nexb.com and https://github.com/nexB/deltacode/ -# The DeltaCode software is licensed under the Apache License version 2.0. -# Data generated with DeltaCode require an acknowledgment. -# DeltaCode is a trademark of nexB Inc. -# -# You may not use this software except in compliance with the License. -# You may obtain a copy of the License at: http://apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software distributed -# under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR -# CONDITIONS OF ANY KIND, either express or implied. See the License for the -# specific language governing permissions and limitations under the License. -# -# When you publish or redistribute any data created with DeltaCode or any DeltaCode -# derivative work, you must accompany this data with the following acknowledgment: -# -# Generated with DeltaCode and provided on an "AS IS" BASIS, WITHOUT WARRANTIES -# OR CONDITIONS OF ANY KIND, either express or implied. No content created from -# DeltaCode should be considered or used as legal advice. Consult an Attorney -# for any legal advice. -# DeltaCode is a free and open source software analysis tool from nexB Inc. and others. -# Visit https://github.com/nexB/deltacode/ for support and download. -# - -from __future__ import absolute_import - -from collections import OrderedDict - -import json - - -class Scan(object): - """ - Process the files contained in an incoming ScanCode scan to test whether - they are valid, retrieve the scan's 'files_count' value, create a list of - File objects, and generate a dictionary of File objects indexed by a - selected key. - """ - def __init__(self, path=''): - if path is None: - path = '' - - self.errors = [] - - if not self.is_valid_scan(path): - self.path = '' - self.files_count = 0 - self.files = [] - self.options = {} - else: - self.path = path - self.files_count = self.get_files_count(path) - self.files = self.load_files(path) - self.options = self.get_options(path) - - def get_options(self, path): - """ - Collect the ScanCode options contained in the incoming ScanCode file. - """ - # TODO: handle this exception during #171 - try: - scan = json.loads(open(path).read()) - except IOError: - return - - scan = json.loads(open(path).read()) - - options = scan.get('scancode_options') - if not options: - # Handle new(er) scancode options - headers = scan.get('headers') - if headers: - options = headers[0].get('options') - - return options - - def is_valid_scan(self, location): - """ - In conjunction with test_deltacode.py, test the incoming files to - ensure that they are well-formed JSON and otherwise satisfy the - requirements to be run in DeltaCode (e.g., ScanCode version, proper - ScanCode options etc.). - """ - try: - scan = json.loads(open(location).read()) - except IOError: - return - - scan = json.loads(open(location).read()) - - version = scan.get('scancode_version') - if not version: - # handle new(er) scancode version location - headers = scan.get('headers') - if headers: - version = headers[0].get('tool_version') - - options = scan.get('scancode_options') - if not options: - headers = scan.get('headers') - if headers: - options = headers[0].get('options') - - if not version: - raise ScanException('JSON file: {} is missing the ScanCode version.'.format(location)) - - if int(version.split('.').pop(0)) < 2: - raise ScanException('JSON file: {} was created with an old version of ScanCode.'.format(location)) - - if not options.get('--info'): - raise ScanException('JSON file: {} is missing the ScanCode --info attribute.'.format(location)) - - return True - - def get_files_count(self, path): - """ - Retrieve a scan's 'files_count' value. - """ - if not self.is_valid_scan(path): - # TODO: raise some error - return - - with open(path) as jsonf: - scan = jsonf.read() - - scan = json.loads(scan) - - files_count = scan.get('files_count') - if not files_count: - headers = scan.get('headers') - if headers: - files_count = headers[0].get('extra_data', {}).get('files_count') - - return files_count - - def load_files(self, path): - """ - Return a list of File objects from a scanfile at 'path', - json format. - """ - if not self.is_valid_scan(path): - # TODO: raise some error - return - - with open(path) as jsonf: - scan = jsonf.read() - - return [File(f) for f in json.loads(scan).get('files')] - - def index_files(self, index_key='path'): - """ - Return a dictionary of a list of File objects indexed by the key passed via - the 'key' variable. If no 'key' variable is passed, the dict is - keyed by the File object's 'path' variable. This function does not - currently catch the AttributeError exception. - """ - index = OrderedDict() - - for f in self.files: - key = getattr(f, index_key) - - if index.get(key) is None: - index[key] = [] - index[key].append(f) - else: - index[key].append(f) - - return index - - -class File(object): - """ - File object created from an ABCD formatted 'file' dictionary. - """ - def __init__(self, dictionary={}): - self.path = dictionary.get('path', '') - self.type = dictionary.get('type', '') - self.name = dictionary.get('name', '') - self.size = dictionary.get('size', '') - self.sha1 = dictionary.get('sha1', '') - self.fingerprint = dictionary.get('fingerprint', '') - self.original_path = '' - self.licenses = self.get_licenses(dictionary) if dictionary.get('licenses') else [] - self.copyrights = self.get_copyrights(dictionary) if dictionary.get('copyrights') else [] - - def get_licenses(self, dictionary): - if dictionary.get('licenses') == []: - return [] - 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), - ('type', self.type), - ('name', self.name), - ('size', self.size), - ('sha1', self.sha1), - ('fingerprint', self.fingerprint), - ('original_path', self.original_path), - ]) - - if self.licenses: - d['licenses'] = [l.to_dict() for l in self.licenses] - else: - d['licenses'] = [] - - if self.copyrights: - d['copyrights'] = [l.to_dict() for l in self.copyrights] - else: - d['copyrights'] = [] - - return d - - def size_difference(self, other_file): - """ - Return the difference between the size of the instant File object and - a second File object to which it is being compared. - """ - return self.size - other_file.size - - def __repr__(self): - """ - Return string containing a printable representation of the File object. - """ - return "%s" % self.__dict__ - - -class License(object): - """ - License object created from the 'license' field in an ABCD formatted 'file' - dictionary. - """ - def __init__(self, dictionary={}): - self.key = dictionary.get('key') - self.score = dictionary.get('score') - self.short_name = dictionary.get('short_name') - self.category = dictionary.get('category') - self.owner = dictionary.get('owner') - - def to_dict(self): - """ - Given a License object, return an OrderedDict with the full - set of fields from the ScanCode 'license' value. - """ - d = OrderedDict([ - ('key', self.key), - ('score', self.score), - ('short_name', self.short_name), - ('category', self.category), - ('owner', self.owner) - ]) - - return d - - def __repr__(self): - """ - Return string containing a printable representation of the License - object. - """ - return "%s" % self.__dict__ - - -class Copyright(object): - """ - Copyright object created from the 'copyrights' field in an ABCD formatted - 'file' dictionary. - """ - def __init__(self, dictionary={}): - self.statements = dictionary.get('statements') - self.holders = dictionary.get('holders') - - def to_dict(self): - """ - Given a Copyright object, return an OrderedDict with the full - set of fields from the ScanCode 'copyrights' value. - """ - d = OrderedDict([ - ('statements', self.statements), - ('holders', self.holders) - ]) - - return d - - def __repr__(self): - """ - Return string containing a printable representation of the Copyright - object. - """ - return "%s" % self.__dict__ - - -class ScanException(Exception): - """ - Named exception for JSON file (1) containing no 'scancode_version' - attribute, (2) containing old version of ScanCode, or (3) containing no - 'scancode_options'/'--info' attribute. - """ - pass diff --git a/tests/data/models/scan/dropbear-2017.75-clip_scan.json b/tests/data/models/scan/dropbear-2017.75-clip_scan.json deleted file mode 100644 index 31bc439c..00000000 --- a/tests/data/models/scan/dropbear-2017.75-clip_scan.json +++ /dev/null @@ -1,25174 +0,0 @@ -{ - "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.2.1", - "scancode_options": { - "--copyright": true, - "--license": true, - "--package": true, - "--info": true, - "--license-score": 0, - "--format": "json-pp" - }, - "files_count": 808, - "files": [ - { - "path": "dropbear-2017.75/.hgsigs", - "type": "file", - "name": ".hgsigs", - "base_name": ".hgsigs", - "extension": "", - "date": "2017-05-18", - "size": 7592, - "sha1": "cf2658bbf48171b56612c88e5e69e5ed9b38c20e", - "md5": "b55962f542852fed647c58cebe8ec028", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/.hg_archival.txt", - "type": "file", - "name": ".hg_archival.txt", - "base_name": ".hg_archival", - "extension": ".txt", - "date": "2017-05-18", - "size": 186, - "sha1": "c00c597f18cf8436f8e8eed6ea1aba1a3b400a60", - "md5": "974cbb71e178e96ff8990fb383fbeeba", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/.travis.yml", - "type": "file", - "name": ".travis.yml", - "base_name": ".travis", - "extension": ".yml", - "date": "2017-05-18", - "size": 1499, - "sha1": "afb233bdbfc81d0aec52df22adf8ac0ace675fa3", - "md5": "cae8e22bfddea165775090bbe8a03b2d", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/agentfwd.h", - "type": "file", - "name": "agentfwd.h", - "base_name": "agentfwd", - "extension": ".h", - "date": "2017-05-18", - "size": 2166, - "sha1": "0feed2daf2157a572f89313819e71f1a21cd905b", - "md5": "49bbf36e0c04b219b1d161a9b079b6c6", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/algo.h", - "type": "file", - "name": "algo.h", - "base_name": "algo", - "extension": ".h", - "date": "2017-05-18", - "size": 4050, - "sha1": "a6a95617fff20c2f3fc7e2ef45f290ee391ac2a5", - "md5": "80c5f3fbe08e820d1dff0c94156f811c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/atomicio.c", - "type": "file", - "name": "atomicio.c", - "base_name": "atomicio", - "extension": ".c", - "date": "2017-05-18", - "size": 2019, - "sha1": "b8ab680ee6848bd982285bc340ea981dd873abd2", - "md5": "629fddb63453ee5269409b0b57a4b326", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "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": 7, - "end_line": 25, - "matched_rule": { - "identifier": "bsd-simplified_8.RULE", - "license_choice": false, - "licenses": [ - "bsd-simplified" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995,1999 Theo de Raadt." - ], - "holders": [ - "Theo de Raadt." - ], - "authors": [], - "start_line": 4, - "end_line": 4 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/atomicio.h", - "type": "file", - "name": "atomicio.h", - "base_name": "atomicio", - "extension": ".h", - "date": "2017-05-18", - "size": 1623, - "sha1": "19bb72754b7c2efdcb9330e4f4ce98d0800c0a28", - "md5": "f5e4897ccdec9311ebb5103690977c4e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "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": 10, - "end_line": 28, - "matched_rule": { - "identifier": "bsd-simplified_8.RULE", - "license_choice": false, - "licenses": [ - "bsd-simplified" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995,1999 Theo de Raadt." - ], - "holders": [ - "Theo de Raadt." - ], - "authors": [], - "start_line": 7, - "end_line": 7 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/auth.h", - "type": "file", - "name": "auth.h", - "base_name": "auth", - "extension": ".h", - "date": "2017-05-18", - "size": 4709, - "sha1": "f4d7cbb39fe1821246877b3e383e8e110b03cd21", - "md5": "8913aea17d0479bc691d416c6cd078b8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/bignum.c", - "type": "file", - "name": "bignum.c", - "base_name": "bignum", - "extension": ".c", - "date": "2017-05-18", - "size": 2764, - "sha1": "42034a11057902408a4b4555249d4fbf45a21e17", - "md5": "a199d46befbcde395abd1c84aa96366d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/bignum.h", - "type": "file", - "name": "bignum.h", - "base_name": "bignum", - "extension": ".h", - "date": "2017-05-18", - "size": 1615, - "sha1": "21db188d27f82040082f091a95496d4290b37677", - "md5": "7c6bf493aed65f354be3796a212bb99a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/buffer.c", - "type": "file", - "name": "buffer.c", - "base_name": "buffer", - "extension": ".c", - "date": "2017-05-18", - "size": 9354, - "sha1": "19329e5fc4484d3066aa4b66a689fd4197f96f28", - "md5": "9d16cdbd669ba472ccc2dd4a97444a40", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/buffer.h", - "type": "file", - "name": "buffer.h", - "base_name": "buffer", - "extension": ".h", - "date": "2017-05-18", - "size": 2846, - "sha1": "202d92ab7d102c2b6bcb5c793581ecbd65565763", - "md5": "6fc8435999f80e912705d58f62471ef8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/CHANGES", - "type": "file", - "name": "CHANGES", - "base_name": "CHANGES", - "extension": "", - "date": "2017-05-18", - "size": 46971, - "sha1": "acb3f926873d9656f8875d7bdc97ee8a8c66f22e", - "md5": "1084d3de950116201ec224028cd005b5", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/channel.h", - "type": "file", - "name": "channel.h", - "base_name": "channel", - "extension": ".h", - "date": "2017-05-18", - "size": 5241, - "sha1": "9772fc50504daff5e66cfefb81a43004a361528b", - "md5": "3dccf2e3f55165765d5592607ed9be3a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/chansession.h", - "type": "file", - "name": "chansession.h", - "base_name": "chansession", - "extension": ".h", - "date": "2017-05-18", - "size": 2714, - "sha1": "bc7b7aea1acdc4d8f51146a134879c311456b1a2", - "md5": "bd54428d5532c04c01ed14a8c68dbd6f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/circbuffer.c", - "type": "file", - "name": "circbuffer.c", - "base_name": "circbuffer", - "extension": ".c", - "date": "2017-05-18", - "size": 3476, - "sha1": "0c89b676f08db94205b441b1a8ccb7d6f0ef340f", - "md5": "f455258d95b8e21915ab6d7e10aa9434", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002-2004 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/circbuffer.h", - "type": "file", - "name": "circbuffer.h", - "base_name": "circbuffer", - "extension": ".h", - "date": "2017-05-18", - "size": 2090, - "sha1": "6896387eaae2e6828c7321a84735d6f80cf4a465", - "md5": "f405c5a4fd83b04611ff48aab0037634", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002-2004 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/cli-agentfwd.c", - "type": "file", - "name": "cli-agentfwd.c", - "base_name": "cli-agentfwd", - "extension": ".c", - "date": "2017-05-18", - "size": 7637, - "sha1": "544966390460dfd3d49a2c7509f28facd29d42c1", - "md5": "d7ef8f279bff22a4c3cd367d50b729d0", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2005 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/cli-auth.c", - "type": "file", - "name": "cli-auth.c", - "base_name": "cli-auth", - "extension": ".c", - "date": "2017-05-18", - "size": 9871, - "sha1": "73662965f7c95876613bf81beb6ca9285f998e47", - "md5": "4cf891613637a80f768feb6ebbdef86b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 24, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston", - "Copyright (c) 2004 by Mihnea Stoenescu" - ], - "holders": [ - "Matt Johnston", - "Mihnea Stoenescu" - ], - "authors": [], - "start_line": 4, - "end_line": 6 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/cli-authinteract.c", - "type": "file", - "name": "cli-authinteract.c", - "base_name": "cli-authinteract", - "extension": ".c", - "date": "2017-05-18", - "size": 4481, - "sha1": "ef33ec68de405e0d3feb945881db77d8c9be6b46", - "md5": "953a4a30ad016830887faf4eb3c2a342", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2005 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/cli-authpasswd.c", - "type": "file", - "name": "cli-authpasswd.c", - "base_name": "cli-authpasswd", - "extension": ".c", - "date": "2017-05-18", - "size": 3990, - "sha1": "817fda71e02f2b8531f036ad312a69bc7b319380", - "md5": "a1983b26625203de93d48f9d1428d13f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/cli-authpubkey.c", - "type": "file", - "name": "cli-authpubkey.c", - "base_name": "cli-authpubkey", - "extension": ".c", - "date": "2017-05-18", - "size": 6554, - "sha1": "a99afee19c199bcb9b216f26829105af0d6be663", - "md5": "659d2a0184da4f7e1ab9a176f139eb4a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 24, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston", - "Copyright (c) 2004 by Mihnea Stoenescu" - ], - "holders": [ - "Matt Johnston", - "Mihnea Stoenescu" - ], - "authors": [], - "start_line": 4, - "end_line": 6 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/cli-channel.c", - "type": "file", - "name": "cli-channel.c", - "base_name": "cli-channel", - "extension": ".c", - "date": "2017-05-18", - "size": 2012, - "sha1": "afe6aeb3faff3b84e322033c485abfce9637d820", - "md5": "cfa7e30386cb3ebed7543aadbc9cb910", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002-2004 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/cli-chansession.c", - "type": "file", - "name": "cli-chansession.c", - "base_name": "cli-chansession", - "extension": ".c", - "date": "2017-05-18", - "size": 11736, - "sha1": "0d7136773ed3140d4f64d6885e351efd8f394aa0", - "md5": "17a1a5188714dadab32f03f3bca0253c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 24, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston", - "Copyright (c) 2004 by Mihnea Stoenescu" - ], - "holders": [ - "Matt Johnston", - "Mihnea Stoenescu" - ], - "authors": [], - "start_line": 4, - "end_line": 6 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/cli-kex.c", - "type": "file", - "name": "cli-kex.c", - "base_name": "cli-kex", - "extension": ".c", - "date": "2017-05-18", - "size": 11102, - "sha1": "547e12b8e2d6c24cb0627b418f0e13721fe96a33", - "md5": "10f7cce36f88ad7aeb77695c3108e944", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 24, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002-2004 Matt Johnston", - "Copyright (c) 2004 by Mihnea Stoenescu" - ], - "holders": [ - "Matt Johnston", - "Mihnea Stoenescu" - ], - "authors": [], - "start_line": 4, - "end_line": 6 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/cli-main.c", - "type": "file", - "name": "cli-main.c", - "base_name": "cli-main", - "extension": ".c", - "date": "2017-05-18", - "size": 5166, - "sha1": "41bb0be65fb50c096ec50b6e218850044ecf9b42", - "md5": "3ffef530664dd5a2bef4e1d9b8b90b4a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 25, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston", - "Copyright (c) 2004 by Mihnea Stoenescu" - ], - "holders": [ - "Matt Johnston", - "Mihnea Stoenescu" - ], - "authors": [], - "start_line": 5, - "end_line": 7 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/cli-runopts.c", - "type": "file", - "name": "cli-runopts.c", - "base_name": "cli-runopts", - "extension": ".c", - "date": "2017-05-18", - "size": 22470, - "sha1": "1deaa4c1a3527ccb740ef1395cb16b0625748bc2", - "md5": "bdfaf9010110c5192b8058077b8a204c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/cli-session.c", - "type": "file", - "name": "cli-session.c", - "base_name": "cli-session", - "extension": ".c", - "date": "2017-05-18", - "size": 11815, - "sha1": "3dcc18c9761a1cfe0f2f5a71e7536045f647d136", - "md5": "daf62013df751501c80691b184beca32", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 24, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston", - "Copyright (c) 2004 by Mihnea Stoenescu" - ], - "holders": [ - "Matt Johnston", - "Mihnea Stoenescu" - ], - "authors": [], - "start_line": 4, - "end_line": 6 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/cli-tcpfwd.c", - "type": "file", - "name": "cli-tcpfwd.c", - "base_name": "cli-tcpfwd", - "extension": ".c", - "date": "2017-05-18", - "size": 8068, - "sha1": "0e96a9adea5b3ecf40844d6617ba64b3d8456739", - "md5": "702994bbcaa01560d0a7caa7494a6d51", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/common-algo.c", - "type": "file", - "name": "common-algo.c", - "base_name": "common-algo", - "extension": ".c", - "date": "2017-05-18", - "size": 16385, - "sha1": "ba8f5535cb0ae577ff843e78a1985c3df7b1c5a1", - "md5": "a8dd16a7169b9733d50593a496768f13", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 24, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston", - "Copyright (c) 2004 by Mihnea Stoenescu" - ], - "holders": [ - "Matt Johnston", - "Mihnea Stoenescu" - ], - "authors": [], - "start_line": 4, - "end_line": 6 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/common-channel.c", - "type": "file", - "name": "common-channel.c", - "base_name": "common-channel", - "extension": ".c", - "date": "2017-05-18", - "size": 34949, - "sha1": "4035c48e2d4973977ddb5c5115fe2bac52e6e292", - "md5": "c24eec4d781dc7a45ec7a1a29e2d28bf", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002-2004 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/common-chansession.c", - "type": "file", - "name": "common-chansession.c", - "base_name": "common-chansession", - "extension": ".c", - "date": "2017-05-18", - "size": 1562, - "sha1": "7a60b4e803e36edcfbe67024f21222d4a93173a7", - "md5": "9661af6ffd401c9c68b75d9a159bdd26", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/common-kex.c", - "type": "file", - "name": "common-kex.c", - "base_name": "common-kex", - "extension": ".c", - "date": "2017-05-18", - "size": 28327, - "sha1": "3648e4f353e2b24f40879d0d4416ac32641a28d7", - "md5": "deed724b6c16fc311dcdba737157394c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 24, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002-2004 Matt Johnston", - "Portions Copyright (c) 2004 by Mihnea Stoenescu" - ], - "holders": [ - "Matt Johnston", - "Mihnea Stoenescu" - ], - "authors": [], - "start_line": 4, - "end_line": 6 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/common-runopts.c", - "type": "file", - "name": "common-runopts.c", - "base_name": "common-runopts", - "extension": ".c", - "date": "2017-05-18", - "size": 2987, - "sha1": "fda0f437b4e2469b15760731ca46db4cd48db3b5", - "md5": "9f66c68d0094236e25a7ef47f66a6e08", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/common-session.c", - "type": "file", - "name": "common-session.c", - "base_name": "common-session", - "extension": ".c", - "date": "2017-05-18", - "size": 17938, - "sha1": "f76c3a0a9d7239c6b7d345677e893e3f1dcb9c28", - "md5": "c15d6a3030f2518c426fc786ad9982ed", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/compat.c", - "type": "file", - "name": "compat.c", - "base_name": "compat", - "extension": ".c", - "date": "2017-05-18", - "size": 8318, - "sha1": "faa926817273ad94b2e598fee53cd110758d156b", - "md5": "7836dec0d9865b4aeb34d06b3f28e105", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - }, - { - "key": "bsd-new", - "score": 100.0, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", - "spdx_license_key": "BSD-3-Clause", - "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", - "start_line": 29, - "end_line": 49, - "matched_rule": { - "identifier": "bsd-new_76.RULE", - "license_choice": false, - "licenses": [ - "bsd-new" - ] - } - }, - { - "key": "bsd-new", - "score": 100.0, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", - "spdx_license_key": "BSD-3-Clause", - "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", - "start_line": 56, - "end_line": 78, - "matched_rule": { - "identifier": "bsd-new_19.RULE", - "license_choice": false, - "licenses": [ - "bsd-new" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - }, - { - "statements": [ - "Copyright (c) 1998 Todd C. Miller " - ], - "holders": [ - "Todd C. Miller" - ], - "authors": [], - "start_line": 25, - "end_line": 27 - }, - { - "statements": [ - "Copyright (c) 1990, 1993 The Regents of the University of California." - ], - "holders": [ - "The Regents of the University of California." - ], - "authors": [], - "start_line": 53, - "end_line": 54 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/compat.h", - "type": "file", - "name": "compat.h", - "base_name": "compat", - "extension": ".h", - "date": "2017-05-18", - "size": 1771, - "sha1": "264679cbf82ff5cee679f01bbed5df256e734a63", - "md5": "8e2e39a1660f141445c82d057a420be6", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/config.guess", - "type": "file", - "name": "config.guess", - "base_name": "config", - "extension": ".guess", - "date": "2017-05-18", - "size": 45297, - "sha1": "b35a5c3fd2b1a5a55a3320c7cd12f17c2c8224b7", - "md5": "eea34cf893bb060ee20189e256a8065a", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "gpl-3.0-plus", - "score": 100.0, - "short_name": "GPL 3.0 or later", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html", - "text_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0-plus", - "spdx_license_key": "GPL-3.0+", - "spdx_url": "https://spdx.org/licenses/GPL-3.0", - "start_line": 7, - "end_line": 25, - "matched_rule": { - "identifier": "gpl-3.0-plus_with_autoconf-simple-exception.RULE", - "license_choice": false, - "licenses": [ - "gpl-3.0-plus", - "autoconf-simple-exception" - ] - } - }, - { - "key": "autoconf-simple-exception", - "score": 100.0, - "short_name": "Autoconf simple exception", - "category": "Copyleft Limited", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob;f=config.guess;h=a7448442748cc6f98a066d2d1051fad3b043761a;hb=HEAD", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:autoconf-simple-exception", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 7, - "end_line": 25, - "matched_rule": { - "identifier": "gpl-3.0-plus_with_autoconf-simple-exception.RULE", - "license_choice": false, - "licenses": [ - "gpl-3.0-plus", - "autoconf-simple-exception" - ] - } - }, - { - "key": "free-unknown", - "score": 100.0, - "short_name": "Free unknown", - "category": "Unknown License", - "owner": "Unspecified", - "homepage_url": "", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:free-unknown", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 55, - "end_line": 56, - "matched_rule": { - "identifier": "free-unknown_1.RULE", - "license_choice": false, - "licenses": [ - "free-unknown" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1992-2013 Free Software Foundation, Inc." - ], - "holders": [ - "Free Software Foundation, Inc." - ], - "authors": [], - "start_line": 2, - "end_line": 3 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Per Bothner." - ], - "start_line": 27, - "end_line": 27 - }, - { - "statements": [ - "Copyright 1992-2013 Free Software Foundation, Inc." - ], - "holders": [ - "Free Software Foundation, Inc." - ], - "authors": [ - "Per Bothner." - ], - "start_line": 52, - "end_line": 53 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/config.h.in", - "type": "file", - "name": "config.h.in", - "base_name": "config.h", - "extension": ".in", - "date": "2017-05-18", - "size": 11859, - "sha1": "614f5a937c4595cdbade983dafdbd9bd920d0f26", - "md5": "5e9f50fd1a3e7df72cd92e90a09016c9", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/config.sub", - "type": "file", - "name": "config.sub", - "base_name": "config", - "extension": ".sub", - "date": "2017-05-18", - "size": 35594, - "sha1": "a0870c772b786520326abce13b33db131bfb87da", - "md5": "9e38dc3cc2b4e471ea192c8984fb0cd1", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "gpl-3.0-plus", - "score": 100.0, - "short_name": "GPL 3.0 or later", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html", - "text_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0-plus", - "spdx_license_key": "GPL-3.0+", - "spdx_url": "https://spdx.org/licenses/GPL-3.0", - "start_line": 7, - "end_line": 25, - "matched_rule": { - "identifier": "gpl-3.0-plus_with_autoconf-simple-exception.RULE", - "license_choice": false, - "licenses": [ - "gpl-3.0-plus", - "autoconf-simple-exception" - ] - } - }, - { - "key": "autoconf-simple-exception", - "score": 100.0, - "short_name": "Autoconf simple exception", - "category": "Copyleft Limited", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob;f=config.guess;h=a7448442748cc6f98a066d2d1051fad3b043761a;hb=HEAD", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:autoconf-simple-exception", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 7, - "end_line": 25, - "matched_rule": { - "identifier": "gpl-3.0-plus_with_autoconf-simple-exception.RULE", - "license_choice": false, - "licenses": [ - "gpl-3.0-plus", - "autoconf-simple-exception" - ] - } - }, - { - "key": "free-unknown", - "score": 100.0, - "short_name": "Free unknown", - "category": "Unknown License", - "owner": "Unspecified", - "homepage_url": "", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:free-unknown", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 73, - "end_line": 74, - "matched_rule": { - "identifier": "free-unknown_1.RULE", - "license_choice": false, - "licenses": [ - "free-unknown" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1992-2013 Free Software Foundation, Inc." - ], - "holders": [ - "Free Software Foundation, Inc." - ], - "authors": [], - "start_line": 2, - "end_line": 3 - }, - { - "statements": [ - "Copyright 1992-2013 Free Software Foundation, Inc." - ], - "holders": [ - "Free Software Foundation, Inc." - ], - "authors": [], - "start_line": 71, - "end_line": 71 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/configure", - "type": "file", - "name": "configure", - "base_name": "configure", - "extension": "", - "date": "2017-05-18", - "size": 225616, - "sha1": "d1d08b880517e1ee00566fd506c8f73934890ba3", - "md5": "4e8fe9406c86d14804b42f37275089c6", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "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": 9, - "end_line": 10, - "matched_rule": { - "identifier": "fsf-free.LICENSE", - "license_choice": false, - "licenses": [ - "fsf-free" - ] - } - }, - { - "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": 1436, - "end_line": 1437, - "matched_rule": { - "identifier": "fsf-free.LICENSE", - "license_choice": false, - "licenses": [ - "fsf-free" - ] - } - }, - { - "key": "fsf-free", - "score": 100.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": 7457, - "end_line": 7458, - "matched_rule": { - "identifier": "fsf-free.RULE", - "license_choice": false, - "licenses": [ - "fsf-free" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1992-1996, 1998-2012 Free Software Foundation, Inc." - ], - "holders": [ - "Free Software Foundation, Inc." - ], - "authors": [], - "start_line": 6, - "end_line": 6 - }, - { - "statements": [ - "Copyright (c) 2012 Free Software Foundation, Inc." - ], - "holders": [ - "Free Software Foundation, Inc." - ], - "authors": [], - "start_line": 1435, - "end_line": 1439 - }, - { - "statements": [ - "Copyright (c) 2012 Free Software Foundation, Inc." - ], - "holders": [ - "Free Software Foundation, Inc." - ], - "authors": [], - "start_line": 7456, - "end_line": 7458 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/configure.ac", - "type": "file", - "name": "configure.ac", - "base_name": "configure", - "extension": ".ac", - "date": "2017-05-18", - "size": 21237, - "sha1": "0c0220044d8e411d50e88b5ce733908635c945c8", - "md5": "c9a4e916ee4c20deeae4241f2abb1b95", - "files_count": null, - "mime_type": "text/x-m4", - "file_type": "M4 macro processor script, ASCII text", - "programming_language": "Genshi", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/crypto_desc.c", - "type": "file", - "name": "crypto_desc.c", - "base_name": "crypto_desc", - "extension": ".c", - "date": "2017-05-18", - "size": 1386, - "sha1": "9aebf045b19a0687c65b6396a5f2f82c92234a54", - "md5": "52af0cef83664f68d843d89780f4ad33", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/crypto_desc.h", - "type": "file", - "name": "crypto_desc.h", - "base_name": "crypto_desc", - "extension": ".h", - "date": "2017-05-18", - "size": 156, - "sha1": "49f1a2060c06dd7809fed206f6fdd27b320898e2", - "md5": "cb8edc9d049a4d47404d4598f1ad0b88", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/curve25519-donna.c", - "type": "file", - "name": "curve25519-donna.c", - "base_name": "curve25519-donna", - "extension": ".c", - "date": "2017-05-18", - "size": 27202, - "sha1": "2fbec697f3e00d4030cc954cfb527df7b59b952e", - "md5": "00b37db241c9131d2a4cbd99e1c612a4", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "bsd-new", - "score": 100.0, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", - "spdx_license_key": "BSD-3-Clause", - "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", - "start_line": 4, - "end_line": 28, - "matched_rule": { - "identifier": "bsd-new_150.RULE", - "license_choice": false, - "licenses": [ - "bsd-new" - ] - } - }, - { - "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": 36, - "end_line": 36, - "matched_rule": { - "identifier": "public-domain.LICENSE", - "license_choice": false, - "licenses": [ - "public-domain" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 2008, Google Inc." - ], - "holders": [ - "Google Inc." - ], - "authors": [], - "start_line": 1, - "end_line": 2 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Daniel J. Bernstein " - ], - "start_line": 36, - "end_line": 36 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/dbclient.1", - "type": "file", - "name": "dbclient.1", - "base_name": "dbclient", - "extension": ".1", - "date": "2017-05-18", - "size": 7208, - "sha1": "3a941bf4693f2edf8dab907cb5ac190ba270de74", - "md5": "01d8a2e847f79ffcb6f7ad51dd84407f", - "files_count": null, - "mime_type": "text/troff", - "file_type": "troff or preprocessor input, UTF-8 Unicode text", - "programming_language": "Groff", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/dbhelpers.c", - "type": "file", - "name": "dbhelpers.c", - "base_name": "dbhelpers", - "extension": ".c", - "date": "2017-05-18", - "size": 483, - "sha1": "761e312d22550483567ad19db4bb609f210cef02", - "md5": "473ab16aa39a028632bce3e548c23648", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/dbhelpers.h", - "type": "file", - "name": "dbhelpers.h", - "base_name": "dbhelpers", - "extension": ".h", - "date": "2017-05-18", - "size": 642, - "sha1": "8196c50717562082c1b061a4147ea614e0698908", - "md5": "1fcdf358c2b76a5aeb9a8a00176a2d46", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/dbmulti.c", - "type": "file", - "name": "dbmulti.c", - "base_name": "dbmulti", - "extension": ".c", - "date": "2017-05-18", - "size": 3217, - "sha1": "664107032599160845560a756e182d7e6abc6a76", - "md5": "ec851ee657b1687329036c8a443d35d4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/dbrandom.c", - "type": "file", - "name": "dbrandom.c", - "base_name": "dbrandom", - "extension": ".c", - "date": "2017-05-18", - "size": 8181, - "sha1": "e0a8ab6c3fc2f15f181966f847ea6dd337986b30", - "md5": "db514b4c63a361474deeda4dc65561ed", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/dbrandom.h", - "type": "file", - "name": "dbrandom.h", - "base_name": "dbrandom", - "extension": ".h", - "date": "2017-05-18", - "size": 1475, - "sha1": "5f29ad0ecab8b7104907c01a33fd0a10fd257a48", - "md5": "7b69e7d0c250e4586171c6817ad285a4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/dbutil.c", - "type": "file", - "name": "dbutil.c", - "base_name": "dbutil", - "extension": ".c", - "date": "2017-05-18", - "size": 16969, - "sha1": "5e773d58b9069651832a92bec6caedf35e466f20", - "md5": "ed2537e9121d7c8a12a78ec9853ff8c9", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - }, - { - "key": "bsd-new", - "score": 100.0, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", - "spdx_license_key": "BSD-3-Clause", - "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", - "start_line": 29, - "end_line": 49, - "matched_rule": { - "identifier": "bsd-new_76.RULE", - "license_choice": false, - "licenses": [ - "bsd-new" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - }, - { - "statements": [ - "Copyright (c) 1998 Todd C. Miller " - ], - "holders": [ - "Todd C. Miller" - ], - "authors": [], - "start_line": 25, - "end_line": 27 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/dbutil.h", - "type": "file", - "name": "dbutil.h", - "base_name": "dbutil", - "extension": ".h", - "date": "2017-05-18", - "size": 3497, - "sha1": "30e5be100aeadf48b463e19de048abc84957fc8a", - "md5": "d6a2c672044bd1615320c849ac13f6bd", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/debug.h", - "type": "file", - "name": "debug.h", - "base_name": "debug", - "extension": ".h", - "date": "2017-05-18", - "size": 3195, - "sha1": "342cf27eac7d5c2aa4f587ef0ae12259351db1c4", - "md5": "4bf4267d44b9bacb815007df667805b3", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/dh_groups.c", - "type": "file", - "name": "dh_groups.c", - "base_name": "dh_groups", - "extension": ".c", - "date": "2017-05-18", - "size": 5991, - "sha1": "49f6d5daa7cb0d5290ab91567eb95b499a0d36f7", - "md5": "199a239d0c11e1a3edea39cff69b0e4b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/dh_groups.h", - "type": "file", - "name": "dh_groups.h", - "base_name": "dh_groups", - "extension": ".h", - "date": "2017-05-18", - "size": 428, - "sha1": "753ed1c4d310e2cce266f3f29bbc1554b457dc71", - "md5": "5201287b22dc4a36f930d32b5b7e12e9", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/dropbear.8", - "type": "file", - "name": "dropbear.8", - "base_name": "dropbear", - "extension": ".8", - "date": "2017-05-18", - "size": 5201, - "sha1": "b887708eb1a6a61549b55fe40660267e5aa3548e", - "md5": "2ae18cd84a99b36b3930d78b437efc05", - "files_count": null, - "mime_type": "text/troff", - "file_type": "troff or preprocessor input, ASCII text", - "programming_language": "Groff", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/dropbearconvert.1", - "type": "file", - "name": "dropbearconvert.1", - "base_name": "dropbearconvert", - "extension": ".1", - "date": "2017-05-18", - "size": 1100, - "sha1": "0b2717a358f3cbcf1e5dc619ae1e09a46c93c0ac", - "md5": "c4151f93759d55019966ced6d24a3791", - "files_count": null, - "mime_type": "text/troff", - "file_type": "troff or preprocessor input, ASCII text", - "programming_language": "Groff", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/dropbearconvert.c", - "type": "file", - "name": "dropbearconvert.c", - "base_name": "dropbearconvert", - "extension": ".c", - "date": "2017-05-18", - "size": 3949, - "sha1": "7158219378c068881ee0ec3c22e11d428959e18e", - "md5": "0b29adc68a2898a1e6d0c7ecd65e40ec", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/dropbearkey.1", - "type": "file", - "name": "dropbearkey.1", - "base_name": "dropbearkey", - "extension": ".1", - "date": "2017-05-18", - "size": 1454, - "sha1": "fad134e87cd0124abdb631c1448e6748abe46010", - "md5": "916d6d7589e11801600340d5ea85804e", - "files_count": null, - "mime_type": "text/troff", - "file_type": "troff or preprocessor input, ASCII text", - "programming_language": "Groff", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/dropbearkey.c", - "type": "file", - "name": "dropbearkey.c", - "base_name": "dropbearkey", - "extension": ".c", - "date": "2017-05-18", - "size": 7800, - "sha1": "3d003a84c3afa915d1f91f83acdd9b345ee56b63", - "md5": "7f5f19f2cc7eb254d837e13f0a5221d7", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/dss.c", - "type": "file", - "name": "dss.c", - "base_name": "dss", - "extension": ".c", - "date": "2017-05-18", - "size": 9584, - "sha1": "b5124c6b9dfdac7f354e8397decf925e283716ab", - "md5": "91484c4562efaf009f1194ddab740c30", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/dss.h", - "type": "file", - "name": "dss.h", - "base_name": "dss", - "extension": ".h", - "date": "2017-05-18", - "size": 1961, - "sha1": "721745c2dfe0b74aee8633713e7bba3217f2a214", - "md5": "38a14d0504321b95e22a82ebbf18ab2c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/ecc.c", - "type": "file", - "name": "ecc.c", - "base_name": "ecc", - "extension": ".c", - "date": "2017-05-18", - "size": 6942, - "sha1": "9fd133ea6b6ace39d98410bbedab8c58b899767f", - "md5": "374b19a9c427051bb58e537434c83941", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/ecc.h", - "type": "file", - "name": "ecc.h", - "base_name": "ecc", - "extension": ".h", - "date": "2017-05-18", - "size": 1121, - "sha1": "09a1ffcdf9ec084fded8751e448540a342ea760d", - "md5": "37807b38344366adee5c96e09ac76862", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/ecdsa.c", - "type": "file", - "name": "ecdsa.c", - "base_name": "ecdsa", - "extension": ".c", - "date": "2017-05-18", - "size": 9456, - "sha1": "d3ed79e19ea36e36fd197e1d97af678ff27a77ee", - "md5": "54c1155ea515e8fdc8f523bfb5d9ca02", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/ecdsa.h", - "type": "file", - "name": "ecdsa.h", - "base_name": "ecdsa", - "extension": ".h", - "date": "2017-05-18", - "size": 976, - "sha1": "01c290eac27d57900a3172192e4e72c735350c1d", - "md5": "0f1cb1333c8a2632a14846b502f38424", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/fake-rfc2553.c", - "type": "file", - "name": "fake-rfc2553.c", - "base_name": "fake-rfc2553", - "extension": ".c", - "date": "2017-05-18", - "size": 6378, - "sha1": "1391da8c2ce10cf097ba5ac7d2e7347fecef3d8b", - "md5": "2f878931e9c5fb65670cec71b4650d03", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "bsd-new", - "score": 100.0, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.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": 29, - "matched_rule": { - "identifier": "bsd-new_66.RULE", - "license_choice": false, - "licenses": [ - "bsd-new" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2000-2003 Damien Miller." - ], - "holders": [ - "Damien Miller." - ], - "authors": [], - "start_line": 4, - "end_line": 4 - }, - { - "statements": [ - "Copyright (c) 1999 WIDE Project." - ], - "holders": [ - "WIDE Project." - ], - "authors": [], - "start_line": 5, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/fake-rfc2553.h", - "type": "file", - "name": "fake-rfc2553.h", - "base_name": "fake-rfc2553", - "extension": ".h", - "date": "2017-05-18", - "size": 5393, - "sha1": "16c8cb1549c830a903ac3b22aaf3ba23118942ea", - "md5": "899e412a8cf747ab8a52012d23203ed5", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "bsd-new", - "score": 100.0, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.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": 31, - "matched_rule": { - "identifier": "bsd-new_66.RULE", - "license_choice": false, - "licenses": [ - "bsd-new" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2000-2003 Damien Miller." - ], - "holders": [ - "Damien Miller." - ], - "authors": [], - "start_line": 6, - "end_line": 6 - }, - { - "statements": [ - "Copyright (c) 1999 WIDE Project." - ], - "holders": [ - "WIDE Project." - ], - "authors": [], - "start_line": 7, - "end_line": 7 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/filelist.txt", - "type": "file", - "name": "filelist.txt", - "base_name": "filelist", - "extension": ".txt", - "date": "2017-05-18", - "size": 3178, - "sha1": "a07e688249de73c28f7a8fd9b0702d78b6868956", - "md5": "ecd5e1a5145912feae937827be46f070", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/gendss.c", - "type": "file", - "name": "gendss.c", - "base_name": "gendss", - "extension": ".c", - "date": "2017-05-18", - "size": 4809, - "sha1": "2aa57dd1b0335a663f1421811f1ab20f0952cc42", - "md5": "942781e71290259eb1d515dfcec5d7be", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/gendss.h", - "type": "file", - "name": "gendss.h", - "base_name": "gendss", - "extension": ".h", - "date": "2017-05-18", - "size": 1392, - "sha1": "c5fbfe3c10888bc77615107e1c608702ae440f3f", - "md5": "bc902cf12914cf40816d6dd302d09e22", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/genrsa.c", - "type": "file", - "name": "genrsa.c", - "base_name": "genrsa", - "extension": ".c", - "date": "2017-05-18", - "size": 3896, - "sha1": "c4bbb678ae3f9c9c20d6b2660c36cb73066b0a02", - "md5": "5f273cc95cb86d7b4af3d570be4a8afa", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/genrsa.h", - "type": "file", - "name": "genrsa.h", - "base_name": "genrsa", - "extension": ".h", - "date": "2017-05-18", - "size": 1392, - "sha1": "796dedd7c6a86687fc8ef573d591d80a4cd62812", - "md5": "e36052a28cae6fbeccb814c84afe56f4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/gensignkey.c", - "type": "file", - "name": "gensignkey.c", - "base_name": "gensignkey", - "extension": ".c", - "date": "2017-05-18", - "size": 3616, - "sha1": "1a1359cf5005e7d3613992b1ebd369085c607ae6", - "md5": "4845df8f975d8096d5dc0c5855c09ce4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/gensignkey.h", - "type": "file", - "name": "gensignkey.h", - "base_name": "gensignkey", - "extension": ".h", - "date": "2017-05-18", - "size": 185, - "sha1": "a921aff99b1f8505d85177a3ecf048600b9cf8f2", - "md5": "9de952a8c47883fe501c9d88b1e3094e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/includes.h", - "type": "file", - "name": "includes.h", - "base_name": "includes", - "extension": ".h", - "date": "2017-05-18", - "size": 3916, - "sha1": "6a1d0072da688f16825dc2ee5c419720d631f911", - "md5": "2bddbc728c49f042da50f48c1221a7b4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/INSTALL", - "type": "file", - "name": "INSTALL", - "base_name": "INSTALL", - "extension": "", - "date": "2017-05-18", - "size": 3283, - "sha1": "a4ec090e198b58812c56aaa2892522bd94ea74ee", - "md5": "bf2b9d899d3aa2f850fd04d40ca28142", - "files_count": null, - "mime_type": "text/x-makefile", - "file_type": "makefile script, ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/install-sh", - "type": "file", - "name": "install-sh", - "base_name": "install-sh", - "extension": "", - "date": "2017-05-18", - "size": 5598, - "sha1": "9d4de14ab9fb0facae2f48780b874848cbf2f895", - "md5": "5afe8eb5573965dfb58378e4e46f3813", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "uoi-ncsa", - "score": 100.0, - "short_name": "NCSA Open Source License", - "category": "Permissive", - "owner": "NCSA - University of Illinois", - "homepage_url": "http://www.otm.illinois.edu/faculty/forms/opensource.asp", - "text_url": "http://www.otm.illinois.edu/faculty/forms/opensource.asp", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:uoi-ncsa", - "spdx_license_key": "NCSA", - "spdx_url": "https://spdx.org/licenses/NCSA", - "start_line": 6, - "end_line": 16, - "matched_rule": { - "identifier": "uoi-ncsa_and_mit-old-style-no-advert.RULE", - "license_choice": false, - "licenses": [ - "uoi-ncsa", - "mit-old-style-no-advert" - ] - } - }, - { - "key": "mit-old-style-no-advert", - "score": 100.0, - "short_name": "MIT Old Style no advertising", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://fedoraproject.org/wiki/Licensing:MIT#Old_Style_.28no_advertising_without_permission.29", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit-old-style-no-advert", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 6, - "end_line": 16, - "matched_rule": { - "identifier": "uoi-ncsa_and_mit-old-style-no-advert.RULE", - "license_choice": false, - "licenses": [ - "uoi-ncsa", - "mit-old-style-no-advert" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1991 by the Massachusetts Institute of Technology" - ], - "holders": [ - "Massachusetts Institute of Technology" - ], - "authors": [], - "start_line": 6, - "end_line": 6 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/kex.h", - "type": "file", - "name": "kex.h", - "base_name": "kex", - "extension": ".h", - "date": "2017-05-18", - "size": 3604, - "sha1": "74799bfd14bc74ddbabfc728560d3526e2def946", - "md5": "2173719c4970297dc0195132e8987cc7", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/keyimport.c", - "type": "file", - "name": "keyimport.c", - "base_name": "keyimport", - "extension": ".c", - "date": "2017-05-18", - "size": 52900, - "sha1": "08a89334b5a04499e3fddb51ec6c583d3d73ec9f", - "md5": "e542331fbb310b5769df947fb63d0f4a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", - "spdx_license_key": "MIT", - "spdx_url": "https://spdx.org/licenses/MIT", - "start_line": 13, - "end_line": 30, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "copyright 2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 5, - "end_line": 5 - }, - { - "statements": [ - "copyright 1997-2003 Simon Tatham." - ], - "holders": [ - "Simon Tatham." - ], - "authors": [], - "start_line": 7, - "end_line": 7 - }, - { - "statements": [ - "Portions copyright Robert de Bath, Joris van Rantwijk, Delian Delchev, Andreas Schultz, Jeroen Massar, Wez Furlong, Nicolas Barry, Justin Bradford, and CORE SDI S.A." - ], - "holders": [ - "Robert de Bath, Joris", - "van Rantwijk, Delian Delchev, Andreas Schultz, Jeroen Massar, Wez Furlong, Nicolas Barry, Justin Bradford, and CORE SDI S.A." - ], - "authors": [], - "start_line": 9, - "end_line": 11 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/keyimport.h", - "type": "file", - "name": "keyimport.h", - "base_name": "keyimport", - "extension": ".h", - "date": "2017-05-18", - "size": 1599, - "sha1": "7527ceaac25d4c04853a88ae9d5d9c1e29ef8997", - "md5": "59d561d4be95b455d800ef0bc247225b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/LICENSE", - "type": "file", - "name": "LICENSE", - "base_name": "LICENSE", - "extension": "", - "date": "2017-05-18", - "size": 5880, - "sha1": "8aa579caba4286206acca4a9dc28d176b8d1d0bb", - "md5": "a5ec40cafba26fc4396d0b550f824e01", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 31, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - }, - { - "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": 35, - "end_line": 35, - "matched_rule": { - "identifier": "public-domain.LICENSE", - "license_choice": false, - "licenses": [ - "public-domain" - ] - } - }, - { - "key": "tatu-ylonen", - "score": 100.0, - "short_name": "Tatu Ylonen License", - "category": "Permissive", - "owner": "Secure Shell", - "homepage_url": "", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:tatu-ylonen", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 42, - "end_line": 46, - "matched_rule": { - "identifier": "tatu-ylonen.RULE", - "license_choice": false, - "licenses": [ - "tatu-ylonen" - ] - } - }, - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", - "spdx_license_key": "MIT", - "spdx_url": "https://spdx.org/licenses/MIT", - "start_line": 72, - "end_line": 89, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - }, - { - "key": "bsd-new", - "score": 100.0, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", - "spdx_license_key": "BSD-3-Clause", - "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", - "start_line": 98, - "end_line": 122, - "matched_rule": { - "identifier": "bsd-new_150.RULE", - "license_choice": false, - "licenses": [ - "bsd-new" - ] - } - }, - { - "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": 130, - "end_line": 130, - "matched_rule": { - "identifier": "public-domain.LICENSE", - "license_choice": false, - "licenses": [ - "public-domain" - ] - } - } - ], - "copyrights": [ - { - "statements": [], - "holders": [], - "authors": [ - "Matt Johnston" - ], - "start_line": 6, - "end_line": 6 - }, - { - "statements": [ - "(c) 2004 Mihnea Stoenescu" - ], - "holders": [ - "Mihnea Stoenescu" - ], - "authors": [], - "start_line": 8, - "end_line": 9 - }, - { - "statements": [ - "Copyright (c) 2002-2015 Matt Johnston", - "Portions copyright (c) 2004 Mihnea Stoenescu" - ], - "holders": [ - "Matt Johnston", - "Mihnea Stoenescu" - ], - "authors": [], - "start_line": 11, - "end_line": 13 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Tom St Denis, and are Public Domain." - ], - "start_line": 35, - "end_line": 35 - }, - { - "statements": [ - "Copyright (c) 1995 Tatu Ylonen , Espoo, Finland" - ], - "holders": [ - "Tatu Ylonen , Espoo, Finland" - ], - "authors": [], - "start_line": 39, - "end_line": 41 - }, - { - "statements": [ - "(c) Todd C. Miller" - ], - "holders": [ - "Todd C. Miller" - ], - "authors": [], - "start_line": 59, - "end_line": 59 - }, - { - "statements": [ - "copyright 1997-2003 Simon Tatham." - ], - "holders": [ - "Simon Tatham." - ], - "authors": [], - "start_line": 66, - "end_line": 66 - }, - { - "statements": [ - "Portions copyright Robert de Bath, Joris van Rantwijk, Delian Delchev, Andreas Schultz, Jeroen Massar, Wez Furlong, Nicolas Barry, Justin Bradford, and CORE SDI S.A." - ], - "holders": [ - "Robert de Bath, Joris", - "van Rantwijk, Delian Delchev, Andreas Schultz, Jeroen Massar, Wez Furlong, Nicolas Barry, Justin Bradford, and CORE SDI S.A." - ], - "authors": [], - "start_line": 68, - "end_line": 70 - }, - { - "statements": [ - "Copyright 2008, Google Inc." - ], - "holders": [ - "Google Inc." - ], - "authors": [], - "start_line": 95, - "end_line": 96 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Daniel J. Bernstein " - ], - "start_line": 130, - "end_line": 130 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/list.c", - "type": "file", - "name": "list.c", - "base_name": "list", - "extension": ".c", - "date": "2017-05-18", - "size": 840, - "sha1": "25b53ae2988e4804f7b75fd4b74a9ac0670dc557", - "md5": "4164fa7e469fe5be5eb861f2500b418a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/list.h", - "type": "file", - "name": "list.h", - "base_name": "list", - "extension": ".h", - "date": "2017-05-18", - "size": 534, - "sha1": "cf4873b6afd40fe737c217e628bb63def3872076", - "md5": "e362041ff5b9d0b6e659c1d96fc560c4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/listener.c", - "type": "file", - "name": "listener.c", - "base_name": "listener", - "extension": ".c", - "date": "2017-05-18", - "size": 4560, - "sha1": "1318f3fb18feed46edb609dd695744ff60501fae", - "md5": "9eff15c0e7f1e0716ec6390683a75a26", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/listener.h", - "type": "file", - "name": "listener.h", - "base_name": "listener", - "extension": ".h", - "date": "2017-05-18", - "size": 2165, - "sha1": "28f2655f6bda7b8992c4f6464c4c9cd3678375b6", - "md5": "01e5939e05d915a67dd2d20c95b785e6", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/loginrec.c", - "type": "file", - "name": "loginrec.c", - "base_name": "loginrec", - "extension": ".c", - "date": "2017-05-18", - "size": 34188, - "sha1": "fa5d6f2e17536af26c89330848d2aba5f82b2b93", - "md5": "689b644a306ed17c270851f34ed33da1", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "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": 7, - "end_line": 25, - "matched_rule": { - "identifier": "bsd-simplified_8.RULE", - "license_choice": false, - "licenses": [ - "bsd-simplified" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2000 Andre Lucas." - ], - "holders": [ - "Andre Lucas." - ], - "authors": [], - "start_line": 2, - "end_line": 2 - }, - { - "statements": [ - "Portions copyright (c) 1998 Todd C. Miller", - "Portions copyright (c) 1996 Jason Downs", - "Portions copyright (c) 1996 Theo de Raadt" - ], - "holders": [ - "Todd C. Miller", - "Jason Downs", - "Theo de Raadt" - ], - "authors": [], - "start_line": 3, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/loginrec.h", - "type": "file", - "name": "loginrec.h", - "base_name": "loginrec", - "extension": ".h", - "date": "2017-05-18", - "size": 5808, - "sha1": "72c3f075b1a3e30510dd712fc1b25cad65644d43", - "md5": "0e68edf8ef46565a8b1593f798f87741", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "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": 7, - "end_line": 25, - "matched_rule": { - "identifier": "bsd-simplified_8.RULE", - "license_choice": false, - "licenses": [ - "bsd-simplified" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2000 Andre Lucas." - ], - "holders": [ - "Andre Lucas." - ], - "authors": [], - "start_line": 5, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/ltc_prng.c", - "type": "file", - "name": "ltc_prng.c", - "base_name": "ltc_prng", - "extension": ".c", - "date": "2017-05-18", - "size": 3181, - "sha1": "60a6be07d5cf30027dee6a1918e295b24705704f", - "md5": "a77930eee6771c5e476a31a6c1b3c6d2", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/ltc_prng.h", - "type": "file", - "name": "ltc_prng.h", - "base_name": "ltc_prng", - "extension": ".h", - "date": "2017-05-18", - "size": 280, - "sha1": "82bdddbf31327fc458fa94629bf2d3864dfc74e4", - "md5": "483ceda7c72c1f6cdcdbec4d06ea65a9", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/Makefile.in", - "type": "file", - "name": "Makefile.in", - "base_name": "Makefile", - "extension": ".in", - "date": "2017-05-18", - "size": 6532, - "sha1": "e09f274318e5424289d2b5871af75a669668cd03", - "md5": "3523f614a53c1cf7198b87464e06bca6", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/MULTI", - "type": "file", - "name": "MULTI", - "base_name": "MULTI", - "extension": "", - "date": "2017-05-18", - "size": 603, - "sha1": "f6e23ac889e3706a55bd11fc37fe6c69880933e9", - "md5": "aa2f0310328a9219da63d7767d23bc47", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/netio.c", - "type": "file", - "name": "netio.c", - "base_name": "netio", - "extension": ".c", - "date": "2017-05-18", - "size": 14574, - "sha1": "bbe7ff3db82e1ed856f48d520e7bed322e2f4ee1", - "md5": "1adc30a401b0827b6fa6df947b2d4607", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/netio.h", - "type": "file", - "name": "netio.h", - "base_name": "netio", - "extension": ".h", - "date": "2017-05-18", - "size": 2285, - "sha1": "c06b145bd5fe6782564c10be26801a0289e51c54", - "md5": "96314e3d248ae6c32ee0e49e2873fdba", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/options.h", - "type": "file", - "name": "options.h", - "base_name": "options", - "extension": ".h", - "date": "2017-05-18", - "size": 13623, - "sha1": "078dd29a3fde9ac064476047de3e58b9e19792a8", - "md5": "4627587122ee9a42c53d1c03daa6b992", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/packet.c", - "type": "file", - "name": "packet.c", - "base_name": "packet", - "extension": ".c", - "date": "2017-05-18", - "size": 19702, - "sha1": "d2d596f446c010a3e607fa9dd2ddfba0a551b2f5", - "md5": "bde3be5140011f5eb21a637b49b7af9a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/packet.h", - "type": "file", - "name": "packet.h", - "base_name": "packet", - "extension": ".h", - "date": "2017-05-18", - "size": 1761, - "sha1": "016695b50ee635007b1df83e22d4a220aa6be1c9", - "md5": "f64da6db9bc37122721e5c6ccb5b3b2f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/process-packet.c", - "type": "file", - "name": "process-packet.c", - "base_name": "process-packet", - "extension": ".c", - "date": "2017-05-18", - "size": 5069, - "sha1": "8d5087ba0c56aa4c1d008af897b9864310a130e5", - "md5": "ecfd49ece1ea3a2ce7d57326ebc8a91f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002-2004 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/progressmeter.c", - "type": "file", - "name": "progressmeter.c", - "base_name": "progressmeter", - "extension": ".c", - "date": "2017-05-18", - "size": 7353, - "sha1": "bea440047d0170812cf7b025dc8a3a9dcb7fb085", - "md5": "5b1e9a0f8ba2651ab362bbd45959123b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "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": 5, - "end_line": 23, - "matched_rule": { - "identifier": "bsd-simplified_8.RULE", - "license_choice": false, - "licenses": [ - "bsd-simplified" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2003 Nils Nordman." - ], - "holders": [ - "Nils Nordman." - ], - "authors": [], - "start_line": 3, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/progressmeter.h", - "type": "file", - "name": "progressmeter.h", - "base_name": "progressmeter", - "extension": ".h", - "date": "2017-05-18", - "size": 1469, - "sha1": "4a919ac23c8899c27e233ebeccfd367e99f5d50d", - "md5": "6a665414b69d01e360d034a210fe6326", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "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": 5, - "end_line": 23, - "matched_rule": { - "identifier": "bsd-simplified_8.RULE", - "license_choice": false, - "licenses": [ - "bsd-simplified" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002 Nils Nordman." - ], - "holders": [ - "Nils Nordman." - ], - "authors": [], - "start_line": 3, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/queue.c", - "type": "file", - "name": "queue.c", - "base_name": "queue", - "extension": ".c", - "date": "2017-05-18", - "size": 2226, - "sha1": "34080c080433894c44a350338e2a52bb6a8a1cec", - "md5": "ab15610c816da8129e1f5e5415448df1", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/queue.h", - "type": "file", - "name": "queue.h", - "base_name": "queue", - "extension": ".h", - "date": "2017-05-18", - "size": 1568, - "sha1": "384c0c664ba49188cbb764a4da17ff00b492df7e", - "md5": "b826fe603158724cf9a81d69cf5a653b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/README", - "type": "file", - "name": "README", - "base_name": "README", - "extension": "", - "date": "2017-05-18", - "size": 3287, - "sha1": "33af5e0cc75c58971f46900e544fbb853cf56a39", - "md5": "f3bacb2b59494cc1956dd97ad1b4d2c4", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/release.sh", - "type": "file", - "name": "release.sh", - "base_name": "release", - "extension": ".sh", - "date": "2017-05-18", - "size": 895, - "sha1": "b9b54d92052f0ee616acd6242772fd6c5b82735e", - "md5": "1c5548547674e2191f4d64d30390e0f0", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/rsa.c", - "type": "file", - "name": "rsa.c", - "base_name": "rsa", - "extension": ".c", - "date": "2017-05-18", - "size": 10728, - "sha1": "02517682748c136863ed35b4b7dc77c00a82a022", - "md5": "f422a18c440c9519004a74bd9c6d035c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/rsa.h", - "type": "file", - "name": "rsa.h", - "base_name": "rsa", - "extension": ".h", - "date": "2017-05-18", - "size": 2009, - "sha1": "f8a8bd7a51340eff36a73319ad8a6ee75434c0c1", - "md5": "bc24797d9ade14113da7a5b84145ad18", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/runopts.h", - "type": "file", - "name": "runopts.h", - "base_name": "runopts", - "extension": ".h", - "date": "2017-05-18", - "size": 4374, - "sha1": "81a8a56dbf698f32c019d761e4e43d698e8dd2f6", - "md5": "743a97c816881c12804764a97d07c3e4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/scp.c", - "type": "file", - "name": "scp.c", - "base_name": "scp", - "extension": ".c", - "date": "2017-05-18", - "size": 28712, - "sha1": "2b0d1a609f7862c106781b3c6daf3efa314466ff", - "md5": "62736d864cd76af6061862fe992f4c7d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "tatu-ylonen", - "score": 100.0, - "short_name": "Tatu Ylonen License", - "category": "Permissive", - "owner": "Secure Shell", - "homepage_url": "", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:tatu-ylonen", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 13, - "end_line": 17, - "matched_rule": { - "identifier": "tatu-ylonen.RULE", - "license_choice": false, - "licenses": [ - "tatu-ylonen" - ] - } - }, - { - "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": 23, - "end_line": 41, - "matched_rule": { - "identifier": "bsd-simplified_8.RULE", - "license_choice": false, - "licenses": [ - "bsd-simplified" - ] - } - }, - { - "key": "bsd-new", - "score": 100.0, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", - "spdx_license_key": "BSD-3-Clause", - "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", - "start_line": 50, - "end_line": 72, - "matched_rule": { - "identifier": "bsd-new_19.RULE", - "license_choice": false, - "licenses": [ - "bsd-new" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1999 Theo de Raadt." - ], - "holders": [ - "Theo de Raadt." - ], - "authors": [], - "start_line": 20, - "end_line": 20 - }, - { - "statements": [ - "Copyright (c) 1999 Aaron Campbell." - ], - "holders": [ - "Aaron Campbell." - ], - "authors": [], - "start_line": 21, - "end_line": 21 - }, - { - "statements": [ - "Copyright (c) 1983, 1990, 1992, 1993, 1995 The Regents of the University of California." - ], - "holders": [ - "The Regents of the University of California." - ], - "authors": [], - "start_line": 47, - "end_line": 48 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/scpmisc.c", - "type": "file", - "name": "scpmisc.c", - "base_name": "scpmisc", - "extension": ".c", - "date": "2017-05-18", - "size": 5860, - "sha1": "7b71002ccc95beb45aefeb403eaf44f412c77b20", - "md5": "d133e76aeab79d3c09b3161401d8af50", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "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": 7, - "end_line": 25, - "matched_rule": { - "identifier": "bsd-simplified_8.RULE", - "license_choice": false, - "licenses": [ - "bsd-simplified" - ] - } - }, - { - "key": "tatu-ylonen", - "score": 100.0, - "short_name": "Tatu Ylonen License", - "category": "Permissive", - "owner": "Secure Shell", - "homepage_url": "", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:tatu-ylonen", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 37, - "end_line": 41, - "matched_rule": { - "identifier": "tatu-ylonen.RULE", - "license_choice": false, - "licenses": [ - "tatu-ylonen" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2000 Markus Friedl." - ], - "holders": [ - "Markus Friedl." - ], - "authors": [], - "start_line": 5, - "end_line": 5 - }, - { - "statements": [ - "Copyright (c) 1995 Tatu Ylonen , Espoo, Finland" - ], - "holders": [ - "Tatu Ylonen , Espoo, Finland" - ], - "authors": [ - "Tatu Ylonen " - ], - "start_line": 30, - "end_line": 33 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/scpmisc.h", - "type": "file", - "name": "scpmisc.h", - "base_name": "scpmisc", - "extension": ".h", - "date": "2017-05-18", - "size": 2084, - "sha1": "162472df78978824d5fc0838470aa9bc16f2b7d9", - "md5": "4a1b3ff98bbab573abdf3fdae8b78fb3", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "tatu-ylonen", - "score": 100.0, - "short_name": "Tatu Ylonen License", - "category": "Permissive", - "owner": "Secure Shell", - "homepage_url": "", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:tatu-ylonen", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 8, - "end_line": 12, - "matched_rule": { - "identifier": "tatu-ylonen.RULE", - "license_choice": false, - "licenses": [ - "tatu-ylonen" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995 Tatu Ylonen , Espoo, Finland" - ], - "holders": [ - "Tatu Ylonen , Espoo, Finland" - ], - "authors": [ - "Tatu Ylonen " - ], - "start_line": 4, - "end_line": 6 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/service.h", - "type": "file", - "name": "service.h", - "base_name": "service", - "extension": ".h", - "date": "2017-05-18", - "size": 1323, - "sha1": "a3c1861b27380a474dee469d83b7d0b7a5123824", - "md5": "1fdd67a08e2d3f058042c5728acdf311", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/session.h", - "type": "file", - "name": "session.h", - "base_name": "session", - "extension": ".h", - "date": "2017-05-18", - "size": 10196, - "sha1": "b5a5cf8ebffbdc95c1a12a26b0dc8c00e88003d5", - "md5": "404496896a0bf628b600cbea1698b43f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/signkey.c", - "type": "file", - "name": "signkey.c", - "base_name": "signkey", - "extension": ".c", - "date": "2017-05-18", - "size": 15530, - "sha1": "21145c09ad0e0f7b68f1dcab72e35a7227ab8e5a", - "md5": "d9484692792f82323e57ff779c44425c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/signkey.h", - "type": "file", - "name": "signkey.h", - "base_name": "signkey", - "extension": ".h", - "date": "2017-05-18", - "size": 3358, - "sha1": "870c7387120750345257d0d0242bebefea80be5e", - "md5": "bf657e51e6cb3db848c27fcd1a46c7db", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/SMALL", - "type": "file", - "name": "SMALL", - "base_name": "SMALL", - "extension": "", - "date": "2017-05-18", - "size": 2036, - "sha1": "854fbd27798b6776b0c76a4459595fca85e7c7e3", - "md5": "7fb73ea886783cca691d85cea9d42471", - "files_count": null, - "mime_type": "text/x-makefile", - "file_type": "makefile script, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/ssh.h", - "type": "file", - "name": "ssh.h", - "base_name": "ssh", - "extension": ".h", - "date": "2017-05-18", - "size": 4730, - "sha1": "fd440d4984a4d8471195ca110f454808591a8c85", - "md5": "1764b053ac63c968d3607876d82d5da8", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/sshpty.c", - "type": "file", - "name": "sshpty.c", - "base_name": "sshpty", - "extension": ".c", - "date": "2017-05-18", - "size": 10657, - "sha1": "9167f218a93af6a3f08933d6800c986d2e734c86", - "md5": "f4bb673679fa9ae5d73a073f06f84bb0", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "tatu-ylonen", - "score": 100.0, - "short_name": "Tatu Ylonen License", - "category": "Permissive", - "owner": "Secure Shell", - "homepage_url": "", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:tatu-ylonen", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 11, - "end_line": 15, - "matched_rule": { - "identifier": "tatu-ylonen.RULE", - "license_choice": false, - "licenses": [ - "tatu-ylonen" - ] - } - } - ], - "copyrights": [ - { - "statements": [], - "holders": [], - "authors": [ - "modified by Matt Johnston" - ], - "start_line": 4, - "end_line": 4 - }, - { - "statements": [ - "Copyright (c) 1995 Tatu Ylonen , Espoo, Finland" - ], - "holders": [ - "Tatu Ylonen , Espoo, Finland" - ], - "authors": [ - "Tatu Ylonen " - ], - "start_line": 6, - "end_line": 8 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/sshpty.h", - "type": "file", - "name": "sshpty.h", - "base_name": "sshpty", - "extension": ".h", - "date": "2017-05-18", - "size": 1006, - "sha1": "7328d89be2950652d97c77d45882fb55ad32c39b", - "md5": "d3ff636cb2d5502948f83fb97420a895", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "tatu-ylonen", - "score": 100.0, - "short_name": "Tatu Ylonen License", - "category": "Permissive", - "owner": "Secure Shell", - "homepage_url": "", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:tatu-ylonen", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 12, - "end_line": 16, - "matched_rule": { - "identifier": "tatu-ylonen.RULE", - "license_choice": false, - "licenses": [ - "tatu-ylonen" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995 Tatu Ylonen , Espoo, Finland" - ], - "holders": [ - "Tatu Ylonen , Espoo, Finland" - ], - "authors": [ - "Tatu Ylonen " - ], - "start_line": 6, - "end_line": 8 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/svr-agentfwd.c", - "type": "file", - "name": "svr-agentfwd.c", - "base_name": "svr-agentfwd", - "extension": ".c", - "date": "2017-05-18", - "size": 6791, - "sha1": "02bb4dc87d10a370e7a823f61e85e8c038c2bb21", - "md5": "53f2c2b22292c1461a2980ae908a3de9", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/svr-auth.c", - "type": "file", - "name": "svr-auth.c", - "base_name": "svr-auth", - "extension": ".c", - "date": "2017-05-18", - "size": 11753, - "sha1": "0cbd3053be82184eec70537a591860a8f84aaff3", - "md5": "8ebb119c81b0a4d09d5f3500f95b663f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/svr-authpam.c", - "type": "file", - "name": "svr-authpam.c", - "base_name": "svr-authpam", - "extension": ".c", - "date": "2017-05-18", - "size": 8449, - "sha1": "7f4ea701d03bc5c97919675b2059c2167d806193", - "md5": "bd9c3c2d481ba923b6dbf9c8348bc672", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 24, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2004 Martin Carlsson", - "Portions (c) 2004 Matt Johnston" - ], - "holders": [ - "Martin Carlsson", - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 6 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/svr-authpasswd.c", - "type": "file", - "name": "svr-authpasswd.c", - "base_name": "svr-authpasswd", - "extension": ".c", - "date": "2017-05-18", - "size": 3445, - "sha1": "26b9546e04620a887e7640017178655faca052da", - "md5": "e47362d077cde38853ffea09abe604a4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/svr-authpubkey.c", - "type": "file", - "name": "svr-authpubkey.c", - "base_name": "svr-authpubkey", - "extension": ".c", - "date": "2017-05-18", - "size": 13850, - "sha1": "4e306b5aa22f1044a303a4f3066f0974b08f80ff", - "md5": "3342f5f8262e9e775c800239ca0efdc5", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - }, - { - "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": 30, - "end_line": 48, - "matched_rule": { - "identifier": "bsd-simplified_8.RULE", - "license_choice": false, - "licenses": [ - "bsd-simplified" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - }, - { - "statements": [ - "Copyright (c) 2000 Markus Friedl." - ], - "holders": [ - "Markus Friedl." - ], - "authors": [], - "start_line": 28, - "end_line": 28 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/svr-authpubkeyoptions.c", - "type": "file", - "name": "svr-authpubkeyoptions.c", - "base_name": "svr-authpubkeyoptions", - "extension": ".c", - "date": "2017-05-18", - "size": 7302, - "sha1": "76f2b216416791efa515997919c7a69b2cebe656", - "md5": "43c71610fdabf0c811462715bb8c5198", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - }, - { - "key": "tatu-ylonen", - "score": 100.0, - "short_name": "Tatu Ylonen License", - "category": "Permissive", - "owner": "Secure Shell", - "homepage_url": "", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:tatu-ylonen", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 31, - "end_line": 35, - "matched_rule": { - "identifier": "tatu-ylonen.RULE", - "license_choice": false, - "licenses": [ - "tatu-ylonen" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2008 Frederic Moulins" - ], - "holders": [ - "Frederic Moulins" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - }, - { - "statements": [ - "Copyright (c) 1995 Tatu Ylonen , Espoo, Finland" - ], - "holders": [ - "Tatu Ylonen , Espoo, Finland" - ], - "authors": [ - "Tatu Ylonen " - ], - "start_line": 28, - "end_line": 30 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/svr-chansession.c", - "type": "file", - "name": "svr-chansession.c", - "base_name": "svr-chansession", - "extension": ".c", - "date": "2017-05-18", - "size": 27611, - "sha1": "98ecb2716692a7eec7ee7372d4416823e4112bd6", - "md5": "e6a5235a858dd2e8e233b9765d156012", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/svr-kex.c", - "type": "file", - "name": "svr-kex.c", - "base_name": "svr-kex", - "extension": ".c", - "date": "2017-05-18", - "size": 6085, - "sha1": "47c97ccbfaff42ba44a242e80514a1844027dd35", - "md5": "84bd1e041dbea172141e04847596bca0", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 24, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston", - "Copyright (c) 2004 by Mihnea Stoenescu" - ], - "holders": [ - "Matt Johnston", - "Mihnea Stoenescu" - ], - "authors": [], - "start_line": 4, - "end_line": 6 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/svr-main.c", - "type": "file", - "name": "svr-main.c", - "base_name": "svr-main", - "extension": ".c", - "date": "2017-05-18", - "size": 10799, - "sha1": "242c78c18cf3821b534862e20542d86443c7b2f9", - "md5": "94c505c93b2cfa7e2e91409b2c827903", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002-2006 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/svr-runopts.c", - "type": "file", - "name": "svr-runopts.c", - "base_name": "svr-runopts", - "extension": ".c", - "date": "2017-05-18", - "size": 13837, - "sha1": "b4b0b36e107e4379dbdecc09d895d4779c43e028", - "md5": "8283324c05e95a10e7e834afaa3ac285", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/svr-service.c", - "type": "file", - "name": "svr-service.c", - "base_name": "svr-service", - "extension": ".c", - "date": "2017-05-18", - "size": 2580, - "sha1": "356208257cb3490421fc44a193361e042ce912de", - "md5": "a3b4a89c159a68946adb5eb62351827b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/svr-session.c", - "type": "file", - "name": "svr-session.c", - "base_name": "svr-session", - "extension": ".c", - "date": "2017-05-18", - "size": 7022, - "sha1": "9ebe93cbb7450bb65b0787fb679e1ec464e3feab", - "md5": "c521b98e94960b28caa1b3b7b2de5dc0", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/svr-tcpfwd.c", - "type": "file", - "name": "svr-tcpfwd.c", - "base_name": "svr-tcpfwd", - "extension": ".c", - "date": "2017-05-18", - "size": 7376, - "sha1": "ab1f32d26d9ac68fdac4a2b5c0c8ff06637a4cb9", - "md5": "1a0c11b786496be7bf8c568e0fa8da26", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 24, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston", - "Copyright (c) 2004 by Mihnea Stoenescu" - ], - "holders": [ - "Matt Johnston", - "Mihnea Stoenescu" - ], - "authors": [], - "start_line": 4, - "end_line": 6 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/svr-x11fwd.c", - "type": "file", - "name": "svr-x11fwd.c", - "base_name": "svr-x11fwd", - "extension": ".c", - "date": "2017-05-18", - "size": 7031, - "sha1": "85b7d1cdb0658895eb4201c34ed0d399eb0017fa", - "md5": "aab88a75abb06584830a2014e83a12a3", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/sysoptions.h", - "type": "file", - "name": "sysoptions.h", - "base_name": "sysoptions", - "extension": ".h", - "date": "2017-05-18", - "size": 8505, - "sha1": "623e07ad7c26d342e5bae0c0f1d81564a1b4dbb9", - "md5": "115a21db5b0596d44560323c4bff40d0", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/tcp-accept.c", - "type": "file", - "name": "tcp-accept.c", - "base_name": "tcp-accept", - "extension": ".c", - "date": "2017-05-18", - "size": 4309, - "sha1": "aa70cd18aedba81460e702a7e2e5fe074ad845e0", - "md5": "abbeff6960c5329ab89b1b9ea5d791d4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/tcpfwd.h", - "type": "file", - "name": "tcpfwd.h", - "base_name": "tcpfwd", - "extension": ".h", - "date": "2017-05-18", - "size": 2591, - "sha1": "8febd4a7d48688f3d8779d365229a4a4f1777016", - "md5": "83a24060ffe6464e1ca67bc90dce4c60", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/termcodes.c", - "type": "file", - "name": "termcodes.c", - "base_name": "termcodes", - "extension": ".c", - "date": "2017-05-18", - "size": 4240, - "sha1": "e4ee8b2c3b5e8cd8a1ee4843f78523eff6bf277e", - "md5": "1f23ffda7c60e54d735830ff2cc9cad1", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/termcodes.h", - "type": "file", - "name": "termcodes.h", - "base_name": "termcodes", - "extension": ".h", - "date": "2017-05-18", - "size": 1573, - "sha1": "708fbb1ce7cf426496f3125bf8f2b765a28f11e7", - "md5": "c137f407671a35193ff78dc65602ded4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/TODO", - "type": "file", - "name": "TODO", - "base_name": "TODO", - "extension": "", - "date": "2017-05-18", - "size": 623, - "sha1": "bb00a9e2dec6e42677c790124d7232f8e8fcb18a", - "md5": "eff20a03ec2d76651dfb804ceebaa913", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/x11fwd.h", - "type": "file", - "name": "x11fwd.h", - "base_name": "x11fwd", - "extension": ".h", - "date": "2017-05-18", - "size": 1521, - "sha1": "f3172acec6f70707842930a182a5b567c031b958", - "md5": "c53b11d76d5d82c25c871a0ba8316821", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 23, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002,2003 Matt Johnston" - ], - "holders": [ - "Matt Johnston" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/debian", - "type": "directory", - "name": "debian", - "base_name": "debian", - "extension": "", - "date": null, - "size": 31545, - "sha1": null, - "md5": null, - "files_count": 18, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt", - "type": "directory", - "name": "libtomcrypt", - "base_name": "libtomcrypt", - "extension": "", - "date": null, - "size": 3398924, - "sha1": null, - "md5": null, - "files_count": 384, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath", - "type": "directory", - "name": "libtommath", - "base_name": "libtommath", - "extension": "", - "date": null, - "size": 1207828, - "sha1": null, - "md5": null, - "files_count": 191, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/debian/changelog", - "type": "file", - "name": "changelog", - "base_name": "changelog", - "extension": "", - "date": "2017-05-18", - "size": 13697, - "sha1": "1dea1b5e70691f5f71d26c3de7f7d785f4fd11c1", - "md5": "8704e7b0cbfece5c95f4777feb9ae2a6", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/debian/control", - "type": "file", - "name": "control", - "base_name": "control", - "extension": "", - "date": "2017-05-18", - "size": 648, - "sha1": "3ed2e096b863c10fab48c81dba5f0f8f902169db", - "md5": "33c7ea2cb71f31f1e2bd71feb61c67f8", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": "Debian Control file", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/debian/copyright.in", - "type": "file", - "name": "copyright.in", - "base_name": "copyright", - "extension": ".in", - "date": "2017-05-18", - "size": 374, - "sha1": "9354a1568613585008f88f8c589ec1123cc086f1", - "md5": "ccd97ae8f30a4a79d6538bc6cc43030d", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [], - "holders": [], - "authors": [ - "Matt Johnston ", - "Gerrit Pape " - ], - "start_line": 1, - "end_line": 4 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Matt Johnston " - ], - "start_line": 8, - "end_line": 8 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/debian/dropbear.conffiles", - "type": "file", - "name": "dropbear.conffiles", - "base_name": "dropbear", - "extension": ".conffiles", - "date": "2017-05-18", - "size": 61, - "sha1": "113171be673739ad226f8eb9445540221090069a", - "md5": "778279f510df5c9ad2e57b64754dff1a", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/debian/dropbear.default", - "type": "file", - "name": "dropbear.default", - "base_name": "dropbear", - "extension": ".default", - "date": "2017-05-18", - "size": 0, - "sha1": null, - "md5": null, - "files_count": 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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/debian/dropbear.docs", - "type": "file", - "name": "dropbear.docs", - "base_name": "dropbear", - "extension": ".docs", - "date": "2017-05-18", - "size": 58, - "sha1": "fbbfa1eaee3fb9ad2e9f86ed6f12f4ee3724f912", - "md5": "81eff8690973161b74ac750f9d35aadd", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/debian/dropbear.init", - "type": "file", - "name": "dropbear.init", - "base_name": "dropbear", - "extension": ".init", - "date": "2017-05-18", - "size": 2213, - "sha1": "aa2a156b056144dd648756460b4e87d0c68bda80", - "md5": "aee347f1c5a66f11520fec188246fd5c", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/debian/dropbear.postinst", - "type": "file", - "name": "dropbear.postinst", - "base_name": "dropbear", - "extension": ".postinst", - "date": "2017-05-18", - "size": 2487, - "sha1": "3d4736a059071660232732ddec3991ad3fa9f722", - "md5": "8e4c8a24c496ffb4389d1c2984fd5055", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/debian/dropbear.postrm", - "type": "file", - "name": "dropbear.postrm", - "base_name": "dropbear", - "extension": ".postrm", - "date": "2017-05-18", - "size": 346, - "sha1": "3068545aa53768bd2a64353635d535609123ea6a", - "md5": "0d57427580ee5d4199a49f220dac1611", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/debian/dropbear.prerm", - "type": "file", - "name": "dropbear.prerm", - "base_name": "dropbear", - "extension": ".prerm", - "date": "2017-05-18", - "size": 232, - "sha1": "9ddba283f9d790a33074a0b5e6d51e3c7e098741", - "md5": "914efd7ce8d2435ff233c4070feaea0d", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/debian/dropbear.README.Debian", - "type": "file", - "name": "dropbear.README.Debian", - "base_name": "dropbear.README", - "extension": ".Debian", - "date": "2017-05-18", - "size": 815, - "sha1": "17d13ce05a8fb5092891ced2866bc0d3557cff3d", - "md5": "d4ac66113f46b3adea85e4a7e43ccfbf", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/debian/implicit", - "type": "file", - "name": "implicit", - "base_name": "implicit", - "extension": "", - "date": "2017-05-18", - "size": 3444, - "sha1": "8077c2efc16b922ebf90f58a261e79fc5ca767da", - "md5": "4a4abf020131cce17bd24670ea21a00e", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/debian/README.Debian", - "type": "file", - "name": "README.Debian", - "base_name": "README", - "extension": ".Debian", - "date": "2017-05-18", - "size": 1519, - "sha1": "4837372aa9257e0f2b111507c45ee9b415f91bb6", - "md5": "9e11f27173bb9f732bb81f692751f8e9", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/debian/README.Debian.diet", - "type": "file", - "name": "README.Debian.diet", - "base_name": "README.Debian", - "extension": ".diet", - "date": "2017-05-18", - "size": 584, - "sha1": "a290618657ca2dd7298bb02980db4d191b2e2af0", - "md5": "c4a304c10862f62b6b8a107b4e1bccc3", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/debian/README.runit", - "type": "file", - "name": "README.runit", - "base_name": "README", - "extension": ".runit", - "date": "2017-05-18", - "size": 1632, - "sha1": "8a6be1d836ac5e0997b662368e010939575b7acc", - "md5": "289f5598119ae94c2cc78ddbd7de71de", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/debian/rules", - "type": "file", - "name": "rules", - "base_name": "rules", - "extension": "", - "date": "2017-05-18", - "size": 3282, - "sha1": "e3cbb3b30ed5c550e3580d776fef77735bfe47a5", - "md5": "db3797df9dd7924a9983ca9c52bdf305", - "files_count": null, - "mime_type": "text/plain", - "file_type": "a /usr/bin/make -f 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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/debian/service", - "type": "directory", - "name": "service", - "base_name": "service", - "extension": "", - "date": null, - "size": 153, - "sha1": null, - "md5": null, - "files_count": 2, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/debian/service/log", - "type": "file", - "name": "log", - "base_name": "log", - "extension": "", - "date": "2017-05-18", - "size": 53, - "sha1": "a4e863f1a4ed931c891f7c2f626f6ffef3a910b1", - "md5": "1cfe24efd15e41994615e0244e386e55", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/debian/service/run", - "type": "file", - "name": "run", - "base_name": "run", - "extension": "", - "date": "2017-05-18", - "size": 100, - "sha1": "cc5f5a650be8ae9b68f40a3aa862a8f05d08875f", - "md5": "e1844aaafec37a1fb283b794ee2fa0c8", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/build.sh", - "type": "file", - "name": "build.sh", - "base_name": "build", - "extension": ".sh", - "date": "2017-05-18", - "size": 902, - "sha1": "fb9a8f5748bec65a8c1c6361a694c340eb7ddb5c", - "md5": "e49f7024d07d3650a6c43d15a4557571", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/changes", - "type": "file", - "name": "changes", - "base_name": "changes", - "extension": "", - "date": "2017-05-18", - "size": 110156, - "sha1": "e57e1bddf47842e220489a283d4a36362a177c6d", - "md5": "4fbfd28aaf31d7155428f2a9d34f4af3", - "files_count": null, - "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, - "scan_errors": [], - "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": 747, - "end_line": 747, - "matched_rule": { - "identifier": "public-domain.LICENSE", - "license_choice": false, - "licenses": [ - "public-domain" - ] - } - }, - { - "key": "zlib", - "score": 10.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 1293, - "end_line": 1293, - "matched_rule": { - "identifier": "zlib_7.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [], - "holders": [], - "authors": [ - "Dobes Vandermeer (dobes@smartt.com)" - ], - "start_line": 1189, - "end_line": 1192 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Daniel Richards (kyhwana@world-net.co.nz)" - ], - "start_line": 1193, - "end_line": 1196 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Svante Seleborg" - ], - "start_line": 1331, - "end_line": 1334 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/crypt.lof", - "type": "file", - "name": "crypt.lof", - "base_name": "crypt", - "extension": ".lof", - "date": "2017-05-18", - "size": 1233, - "sha1": "979797d4e2073421243fa9460b0fbf5b40d87875", - "md5": "55d181379039f02d5037f63146f2b856", - "files_count": null, - "mime_type": "text/x-tex", - "file_type": "LaTeX table of contents, ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/crypt.tex", - "type": "file", - "name": "crypt.tex", - "base_name": "crypt", - "extension": ".tex", - "date": "2017-05-18", - "size": 293850, - "sha1": "1575661dccacc92118d1ecbd62e55613a399e71b", - "md5": "6609a15a8088730b907b5c32df2cdc17", - "files_count": null, - "mime_type": "text/x-tex", - "file_type": "LaTeX 2e document, ASCII text", - "programming_language": "TeX", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "public-domain", - "score": 25.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": 92, - "end_line": 92, - "matched_rule": { - "identifier": "public-domain_15.RULE", - "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": 188, - "end_line": 188, - "matched_rule": { - "identifier": "public-domain.LICENSE", - "license_choice": false, - "licenses": [ - "public-domain" - ] - } - } - ], - "copyrights": [ - { - "statements": [], - "holders": [], - "authors": [ - "(Tom St Denis)" - ], - "start_line": 192, - "end_line": 195 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/Doxyfile", - "type": "file", - "name": "Doxyfile", - "base_name": "Doxyfile", - "extension": "", - "date": "2017-05-18", - "size": 47498, - "sha1": "bece9f4b0a43cd67b288f88962d6684b832099ea", - "md5": "2fb44a8e3abdf9cc6bfbe89614e85e2f", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/filter.pl", - "type": "file", - "name": "filter.pl", - "base_name": "filter", - "extension": ".pl", - "date": "2017-05-18", - "size": 517, - "sha1": "400705f2de5cb11a08e83ac3643f960e013ffddb", - "md5": "05bf091624188be35274ce9b763c5a6d", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/fixupind.pl", - "type": "file", - "name": "fixupind.pl", - "base_name": "fixupind", - "extension": ".pl", - "date": "2017-05-18", - "size": 218, - "sha1": "486a7ff76020591aa22ee432d5585b71e9d31860", - "md5": "ef3b93c9f34863b3ad61a3272c69eb1f", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/genlist.sh", - "type": "file", - "name": "genlist.sh", - "base_name": "genlist", - "extension": ".sh", - "date": "2017-05-18", - "size": 681, - "sha1": "7484c6562fdfffc4d55795c19814722c55c3d40b", - "md5": "9b7b06a0305e46be24376da1f316f7e8", - "files_count": null, - "mime_type": "text/x-shellscript", - "file_type": "Bourne-Again shell script, ASCII text executable, with very long lines", - "programming_language": "Bash", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/LICENSE", - "type": "file", - "name": "LICENSE", - "base_name": "LICENSE", - "extension": "", - "date": "2017-05-18", - "size": 82, - "sha1": "508b945e292ebcd6336b50138bfaeac376a24db2", - "md5": "6c4fa89d7c9f2c00b6507ef96934ed6a", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/makefile.icc", - "type": "file", - "name": "makefile.icc", - "base_name": "makefile", - "extension": ".icc", - "date": "2017-05-18", - "size": 14569, - "sha1": "ca92ab0fa3e2b7a6c6da5b915aff1020bae908e5", - "md5": "4f1045d413f23addad91a09e713c4614", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/Makefile.in", - "type": "file", - "name": "Makefile.in", - "base_name": "Makefile", - "extension": ".in", - "date": "2017-05-18", - "size": 16645, - "sha1": "03eadbf95c537c04ae8663f9655230756f56bccc", - "md5": "8ac92b184e7a6a96b941aa779ccb8a58", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [], - "holders": [], - "authors": [ - "modified by Clay Culver" - ], - "start_line": 3, - "end_line": 4 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/makefile.msvc", - "type": "file", - "name": "makefile.msvc", - "base_name": "makefile", - "extension": ".msvc", - "date": "2017-05-18", - "size": 11246, - "sha1": "e93b968188f315494793f35f63b1a1db61f834a0", - "md5": "78792883eb89a3933d866c415203006c", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/makefile.shared", - "type": "file", - "name": "makefile.shared", - "base_name": "makefile", - "extension": ".shared", - "date": "2017-05-18", - "size": 14229, - "sha1": "d4e3387a5b7270a71fd4dea0457d46df9d8df0cf", - "md5": "fefd3a4b5bfe4786641b525ce4c6eacf", - "files_count": null, - "mime_type": "text/x-makefile", - "file_type": "makefile script, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/makefile.unix", - "type": "file", - "name": "makefile.unix", - "base_name": "makefile", - "extension": ".unix", - "date": "2017-05-18", - "size": 13426, - "sha1": "16860df9e00471701a0aa4c6682a380b26c3dbb9", - "md5": "183d5b2bc07b1edf4383047831e1e424", - "files_count": null, - "mime_type": "text/x-makefile", - "file_type": "makefile script, ASCII text", - "programming_language": "Genshi", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/mess.sh", - "type": "file", - "name": "mess.sh", - "base_name": "mess", - "extension": ".sh", - "date": "2017-05-18", - "size": 122, - "sha1": "7e53e2e0d083eb125ac99171bd6ef495449c22e6", - "md5": "84fb301934382002906f4904d9bc457f", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/parsenames.pl", - "type": "file", - "name": "parsenames.pl", - "base_name": "parsenames", - "extension": ".pl", - "date": "2017-05-18", - "size": 557, - "sha1": "648a2b24ff66ef63c8665f79d7c0b697796d4df8", - "md5": "4a5dc6a91d14e5d0040cb3c7726c9c6c", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/README", - "type": "file", - "name": "README", - "base_name": "README", - "extension": "", - "date": "2017-05-18", - "size": 20, - "sha1": "ce60762bca68d7af5102738925e3d4478ecaddd3", - "md5": "34b9ba8f47af431fdc862da9eb8713dd", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/run.sh", - "type": "file", - "name": "run.sh", - "base_name": "run", - "extension": ".sh", - "date": "2017-05-18", - "size": 629, - "sha1": "fe266db7452d1eeed010e9db89ab75801142f9d4", - "md5": "4cd3be15ba616eebd3a4322fffdae6ab", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/testbuild.sh", - "type": "file", - "name": "testbuild.sh", - "base_name": "testbuild", - "extension": ".sh", - "date": "2017-05-18", - "size": 414, - "sha1": "48ad7f39eae4e5ae5e61b236f73ed14a6fee537a", - "md5": "f5cf4a431d3b86f37491b885da59bec0", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/testme.sh", - "type": "file", - "name": "testme.sh", - "base_name": "testme", - "extension": ".sh", - "date": "2017-05-18", - "size": 1647, - "sha1": "ffb814bc4b7980a9cdcb371988cf34112d9c42aa", - "md5": "8d59ab6838c53cffe0e055f8c8600807", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/TODO", - "type": "file", - "name": "TODO", - "base_name": "TODO", - "extension": "", - "date": "2017-05-18", - "size": 375, - "sha1": "c4fc19b67598f44c4a09513850b109ff29addecc", - "md5": "257a24f3e507b0969f29537314b198a7", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/updatemakes.sh", - "type": "file", - "name": "updatemakes.sh", - "base_name": "updatemakes", - "extension": ".sh", - "date": "2017-05-18", - "size": 424, - "sha1": "49b4ed44eef53b01806767c1eb787ed45e26abc2", - "md5": "ba1f9976e6bd3e03b5cdc1827f5d4591", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/demos", - "type": "directory", - "name": "demos", - "base_name": "demos", - "extension": "", - "date": null, - "size": 40368, - "sha1": null, - "md5": null, - "files_count": 7, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/doc", - "type": "directory", - "name": "doc", - "base_name": "doc", - "extension": "", - "date": null, - "size": 747, - "sha1": null, - "md5": null, - "files_count": 2, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/notes", - "type": "directory", - "name": "notes", - "base_name": "notes", - "extension": "", - "date": null, - "size": 832368, - "sha1": null, - "md5": null, - "files_count": 22, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src", - "type": "directory", - "name": "src", - "base_name": "src", - "extension": "", - "date": null, - "size": 1876799, - "sha1": null, - "md5": null, - "files_count": 311, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/testprof", - "type": "directory", - "name": "testprof", - "base_name": "testprof", - "extension": "", - "date": null, - "size": 119202, - "sha1": null, - "md5": null, - "files_count": 20, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/demos/encrypt.c", - "type": "file", - "name": "encrypt.c", - "base_name": "encrypt", - "extension": ".c", - "date": "2017-05-18", - "size": 6092, - "sha1": "5016d87b3fde597fe9d843d8b2a76e8617ac3230", - "md5": "62d0896413ae05e67b53add3aafada5e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "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": 5, - "end_line": 5, - "matched_rule": { - "identifier": "public-domain.LICENSE", - "license_choice": false, - "licenses": [ - "public-domain" - ] - } - } - ], - "copyrights": [ - { - "statements": [], - "holders": [], - "authors": [ - "Daniel Richards " - ], - "start_line": 2, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/demos/hashsum.c", - "type": "file", - "name": "hashsum.c", - "base_name": "hashsum", - "extension": ".c", - "date": "2017-05-18", - "size": 2936, - "sha1": "34d53d4e033abb3b56d3ca91ff329d3d050cb441", - "md5": "9268264cbcf0e626f180e99baf2f6085", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "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": 4, - "end_line": 4, - "matched_rule": { - "identifier": "public-domain.LICENSE", - "license_choice": false, - "licenses": [ - "public-domain" - ] - } - } - ], - "copyrights": [ - { - "statements": [], - "holders": [], - "authors": [ - "Daniel Richards " - ], - "start_line": 2, - "end_line": 6 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/demos/multi.c", - "type": "file", - "name": "multi.c", - "base_name": "multi", - "extension": ".c", - "date": "2017-05-18", - "size": 4325, - "sha1": "70b0e0bee95cca9db24d63f1719f6508173c3a63", - "md5": "1fe5b350fd1234507bda5cd21a355779", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/demos/small.c", - "type": "file", - "name": "small.c", - "base_name": "small", - "extension": ".c", - "date": "2017-05-18", - "size": 334, - "sha1": "d02e643aba2c26065e715cffa9e4604b7e5c7447", - "md5": "cd23dfeebbc9b530631aff150ce81a3d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/demos/test.c", - "type": "file", - "name": "test.c", - "base_name": "test", - "extension": ".c", - "date": "2017-05-18", - "size": 1794, - "sha1": "4903fdcb39ad2fbb499aeb09db30142c1806025b", - "md5": "0f03e9e5f9247aaf00ab4eaa47529049", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/demos/timing.c", - "type": "file", - "name": "timing.c", - "base_name": "timing", - "extension": ".c", - "date": "2017-05-18", - "size": 646, - "sha1": "b4a87ed35f736cf803fd963b331cdcedbac544bc", - "md5": "9e5e9b564216c41e1dfe1b16a26ce54b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/demos/tv_gen.c", - "type": "file", - "name": "tv_gen.c", - "base_name": "tv_gen", - "extension": ".c", - "date": "2017-05-18", - "size": 24241, - "sha1": "b302cead7d943cd1d0b375abdc778b18e57b7f43", - "md5": "cdc025b43c3536244b1ec4ebcec9c661", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/doc/footer.html", - "type": "file", - "name": "footer.html", - "base_name": "footer", - "extension": ".html", - "date": "2017-05-18", - "size": 325, - "sha1": "256a52081fd85391cefdaaa4d5602489e1e50be4", - "md5": "3827948406bfb7ca75419220c8147cd1", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/doc/header.html", - "type": "file", - "name": "header.html", - "base_name": "header", - "extension": ".html", - "date": "2017-05-18", - "size": 422, - "sha1": "5f20c36d444f35084d054ddee5d6e6b56f98aeb0", - "md5": "b8d22853b07570bd229669aa2d594360", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/notes/base64_tv.txt", - "type": "file", - "name": "base64_tv.txt", - "base_name": "base64_tv", - "extension": ".txt", - "date": "2017-05-18", - "size": 993, - "sha1": "ca1c1ab3ff045a9a61f2f3e6373c120f423fcb36", - "md5": "cb4bc9ef13038221ce12dbd313ad3f95", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/notes/ccm_tv.txt", - "type": "file", - "name": "ccm_tv.txt", - "base_name": "ccm_tv", - "extension": ".txt", - "date": "2017-05-18", - "size": 14683, - "sha1": "02f0ca69d572ed7be51eba2e1d925aaff7e92e83", - "md5": "844f315558bcdab7571754ca4a1f2751", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/notes/cipher_tv.txt", - "type": "file", - "name": "cipher_tv.txt", - "base_name": "cipher_tv", - "extension": ".txt", - "date": "2017-05-18", - "size": 52936, - "sha1": "e9125a62dd9309cb1ea31dd82f20e5f06651c3ee", - "md5": "3745b47411a6b86758dccd06bb06c4ac", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/notes/eax_tv.txt", - "type": "file", - "name": "eax_tv.txt", - "base_name": "eax_tv", - "extension": ".txt", - "date": "2017-05-18", - "size": 23807, - "sha1": "631a9fa96aea11c1cd4c3b60e5ba925d3ed9a630", - "md5": "5be0c2f759ecd8bf26a4912ccbb708aa", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/notes/ecc_tv.txt", - "type": "file", - "name": "ecc_tv.txt", - "base_name": "ecc_tv", - "extension": ".txt", - "date": "2017-05-18", - "size": 254394, - "sha1": "074028f0e45b7cd1765f52fa03e312fbee5a7e36", - "md5": "99921d9d89144960848fbee007263013", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/notes/gcm_tv.txt", - "type": "file", - "name": "gcm_tv.txt", - "base_name": "gcm_tv", - "extension": ".txt", - "date": "2017-05-18", - "size": 14683, - "sha1": "bebe29d01aef67ad00f6659c21454901b3c45542", - "md5": "0b7035f579de77957ae061e0d5aba204", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/notes/hash_tv.txt", - "type": "file", - "name": "hash_tv.txt", - "base_name": "hash_tv", - "extension": ".txt", - "date": "2017-05-18", - "size": 131267, - "sha1": "024f24ce33c20d6a7fb9d9be70659d99d4394a95", - "md5": "9b6f3b9ad9fb571ad97c22410f8eade6", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/notes/hmac_tv.txt", - "type": "file", - "name": "hmac_tv.txt", - "base_name": "hmac_tv", - "extension": ".txt", - "date": "2017-05-18", - "size": 131400, - "sha1": "192ee2c1e7468a407e4aebbd0eb6377a424b0af5", - "md5": "b007e5b23ff3b8bb4e037ef3044c8f6b", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/notes/lrw_tv.txt", - "type": "file", - "name": "lrw_tv.txt", - "base_name": "lrw_tv", - "extension": ".txt", - "date": "2017-05-18", - "size": 129644, - "sha1": "4c79617c991c5a3985171697e89a487f26f12375", - "md5": "0dba4c125e2029375249b2658fde241c", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/notes/ocb_tv.txt", - "type": "file", - "name": "ocb_tv.txt", - "base_name": "ocb_tv", - "extension": ".txt", - "date": "2017-05-18", - "size": 23832, - "sha1": "f56bd00eafc2ebe3ff38d10f097763027a5e59f4", - "md5": "8aa6f712ae6364c3f36bc31b1b2d4554", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/notes/omac_tv.txt", - "type": "file", - "name": "omac_tv.txt", - "base_name": "omac_tv", - "extension": ".txt", - "date": "2017-05-18", - "size": 13148, - "sha1": "c9b59640d6f464770f304ad7c5ad5a79b875a6a6", - "md5": "bd73d616ff5e8378c2c328a7b734326b", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/notes/pmac_tv.txt", - "type": "file", - "name": "pmac_tv.txt", - "base_name": "pmac_tv", - "extension": ".txt", - "date": "2017-05-18", - "size": 13148, - "sha1": "a055d18af7f95091c0a6c9e567ec04282210c862", - "md5": "ed861b68ad2524e12ed46e87501a4ebf", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/notes/tech0001.txt", - "type": "file", - "name": "tech0001.txt", - "base_name": "tech0001", - "extension": ".txt", - "date": "2017-05-18", - "size": 3581, - "sha1": "0f0157496fbbc557e0b85fbb55627bc536fe8492", - "md5": "7c56ddca8f1790feeb20b364c779a6f0", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/notes/tech0002.txt", - "type": "file", - "name": "tech0002.txt", - "base_name": "tech0002", - "extension": ".txt", - "date": "2017-05-18", - "size": 2690, - "sha1": "e857aa43c7407ebafd943d5bdb794e7188b72b81", - "md5": "fff852c4b4d3e4e4eb64ee003a3c92c4", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/notes/tech0003.txt", - "type": "file", - "name": "tech0003.txt", - "base_name": "tech0003", - "extension": ".txt", - "date": "2017-05-18", - "size": 2515, - "sha1": "4613c20dcf08d90e546c4ee7ba1f894bc124d4dd", - "md5": "8a693f30465b1fc206fa299d2d3d9ab7", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/notes/tech0004.txt", - "type": "file", - "name": "tech0004.txt", - "base_name": "tech0004", - "extension": ".txt", - "date": "2017-05-18", - "size": 4631, - "sha1": "6c0ab00a05d530e1c2fac27465885ae6e1d7bab7", - "md5": "1ddd45035e544453984615860f4ac7cb", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/notes/tech0005.txt", - "type": "file", - "name": "tech0005.txt", - "base_name": "tech0005", - "extension": ".txt", - "date": "2017-05-18", - "size": 865, - "sha1": "08fa685205e5a96a5ecb96c025df6ec31b8b93de", - "md5": "a90b8f45166655c8b01a407d263c5878", - "files_count": null, - "mime_type": "text/x-makefile", - "file_type": "makefile script, ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": true, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/notes/tech0006.txt", - "type": "file", - "name": "tech0006.txt", - "base_name": "tech0006", - "extension": ".txt", - "date": "2017-05-18", - "size": 3378, - "sha1": "808b72012bf29653039b60246d3a93e1ef04ff56", - "md5": "8b284c56733b78d9b860aeadb6ca270e", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/notes/tech0007.txt", - "type": "file", - "name": "tech0007.txt", - "base_name": "tech0007", - "extension": ".txt", - "date": "2017-05-18", - "size": 147, - "sha1": "271abd1b7ca7e03f8cf1a649d20f652869a3c96f", - "md5": "0efe6458cdb2499f8808f9bbcf5db7ec", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/notes/etc", - "type": "directory", - "name": "etc", - "base_name": "etc", - "extension": "", - "date": null, - "size": 10626, - "sha1": null, - "md5": null, - "files_count": 3, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/notes/etc/saferp_optimizer.c", - "type": "file", - "name": "saferp_optimizer.c", - "base_name": "saferp_optimizer", - "extension": ".c", - "date": "2017-05-18", - "size": 8157, - "sha1": "5b6ec6012f78c872b12eb0180ccf712b031689c5", - "md5": "4c3c939992986ee59eed997c97d8b37b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/notes/etc/whirlgen.c", - "type": "file", - "name": "whirlgen.c", - "base_name": "whirlgen", - "extension": ".c", - "date": "2017-05-18", - "size": 2072, - "sha1": "39afe9cdced89ceb25048818d116d50e2d0be43c", - "md5": "1e9dfceb3cfffef184ffb8614f791062", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/notes/etc/whirltest.c", - "type": "file", - "name": "whirltest.c", - "base_name": "whirltest", - "extension": ".c", - "date": "2017-05-18", - "size": 397, - "sha1": "54db1492094068526c4227fa0001a73bdec87eec", - "md5": "a911b382f090ae5692b7a0bd498a46a7", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/ciphers", - "type": "directory", - "name": "ciphers", - "base_name": "ciphers", - "extension": "", - "date": null, - "size": 642290, - "sha1": null, - "md5": null, - "files_count": 20, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/encauth", - "type": "directory", - "name": "encauth", - "base_name": "encauth", - "extension": "", - "date": null, - "size": 108045, - "sha1": null, - "md5": null, - "files_count": 31, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/hashes", - "type": "directory", - "name": "hashes", - "base_name": "hashes", - "extension": "", - "date": null, - "size": 254435, - "sha1": null, - "md5": null, - "files_count": 20, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/headers", - "type": "directory", - "name": "headers", - "base_name": "headers", - "extension": "", - "date": null, - "size": 131219, - "sha1": null, - "md5": null, - "files_count": 13, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/mac", - "type": "directory", - "name": "mac", - "base_name": "mac", - "extension": "", - "date": null, - "size": 105436, - "sha1": null, - "md5": null, - "files_count": 40, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/math", - "type": "directory", - "name": "math", - "base_name": "math", - "extension": "", - "date": null, - "size": 135442, - "sha1": null, - "md5": null, - "files_count": 6, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/misc", - "type": "directory", - "name": "misc", - "base_name": "misc", - "extension": "", - "date": null, - "size": 47382, - "sha1": null, - "md5": null, - "files_count": 31, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes", - "type": "directory", - "name": "modes", - "base_name": "modes", - "extension": "", - "date": null, - "size": 75945, - "sha1": null, - "md5": null, - "files_count": 44, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk", - "type": "directory", - "name": "pk", - "base_name": "pk", - "extension": "", - "date": null, - "size": 322780, - "sha1": null, - "md5": null, - "files_count": 98, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/prngs", - "type": "directory", - "name": "prngs", - "base_name": "prngs", - "extension": "", - "date": null, - "size": 53825, - "sha1": null, - "md5": null, - "files_count": 8, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/ciphers/anubis.c", - "type": "file", - "name": "anubis.c", - "base_name": "anubis", - "extension": ".c", - "date": "2017-05-18", - "size": 68226, - "sha1": "ec82679ed2000879d6b0cd3f4093e7f1feeb4b6b", - "md5": "bb9f02b509d4663a763db4e3224885ea", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "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": 14, - "end_line": 14, - "matched_rule": { - "identifier": "public-domain.LICENSE", - "license_choice": false, - "licenses": [ - "public-domain" - ] - } - } - ], - "copyrights": [ - { - "statements": [], - "holders": [], - "authors": [ - "Paulo S.L.M. Barreto and Vincent Rijmen." - ], - "start_line": 14, - "end_line": 15 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/ciphers/blowfish.c", - "type": "file", - "name": "blowfish.c", - "base_name": "blowfish", - "extension": ".c", - "date": "2017-05-18", - "size": 25215, - "sha1": "aafdfe439d5c904c4664d2a64723c927b51e11cb", - "md5": "406a4858a544b36e46320869df2d4051", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/ciphers/cast5.c", - "type": "file", - "name": "cast5.c", - "base_name": "cast5", - "extension": ".c", - "date": "2017-05-18", - "size": 42167, - "sha1": "a16bc0d453b345a59e1045b3d4b4bfb39ff95a50", - "md5": "748f2c0a10e5078f9812cd109b27406e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/ciphers/des.c", - "type": "file", - "name": "des.c", - "base_name": "des", - "extension": ".c", - "date": "2017-05-18", - "size": 152165, - "sha1": "651636c0f9126efcc9f78d2d76ecfc836a3b687d", - "md5": "c42fd6045f99ebcffd2d8ea3d0b5cd0f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/ciphers/kasumi.c", - "type": "file", - "name": "kasumi.c", - "base_name": "kasumi", - "extension": ".c", - "date": "2017-05-18", - "size": 9982, - "sha1": "f0eb57b2a8e6f920d7e0e38fb8f68bc66d7ca14e", - "md5": "7e08953b47e7301336dfa4a706c68d6b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/ciphers/khazad.c", - "type": "file", - "name": "khazad.c", - "base_name": "khazad", - "extension": ".c", - "date": "2017-05-18", - "size": 71261, - "sha1": "dc5f4b563655c1b4ab00f38e75338327d51f344f", - "md5": "1286d03bcc744585a7922271980ecbdf", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "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": 15, - "end_line": 15, - "matched_rule": { - "identifier": "public-domain.LICENSE", - "license_choice": false, - "licenses": [ - "public-domain" - ] - } - } - ], - "copyrights": [ - { - "statements": [], - "holders": [], - "authors": [ - "Paulo S.L.M. Barreto and Vincent Rijmen." - ], - "start_line": 15, - "end_line": 16 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/ciphers/kseed.c", - "type": "file", - "name": "kseed.c", - "base_name": "kseed", - "extension": ".c", - "date": "2017-05-18", - "size": 19764, - "sha1": "bcda5484cbbd47d34b12e7ef9988865ffbcfae30", - "md5": "149532fefae60637711882c4e0a7633f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/ciphers/noekeon.c", - "type": "file", - "name": "noekeon.c", - "base_name": "noekeon", - "extension": ".c", - "date": "2017-05-18", - "size": 8196, - "sha1": "608c38f0b84a23a33af9429e26254537c6dcf0fa", - "md5": "8f31100f14d1eb9647d7a9a29fffd95e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/ciphers/rc2.c", - "type": "file", - "name": "rc2.c", - "base_name": "rc2", - "extension": ".c", - "date": "2017-05-18", - "size": 11685, - "sha1": "7d81a587f66bf4ea5ae1d2294fd4656a1078b725", - "md5": "0937365c278ba30ad813c4936830719c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "public-domain", - "score": 25.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": 13, - "end_line": 13, - "matched_rule": { - "identifier": "public-domain_15.RULE", - "license_choice": false, - "licenses": [ - "public-domain" - ] - } - } - ], - "copyrights": [ - { - "statements": [], - "holders": [], - "authors": [ - "RSA Data Security Conference" - ], - "start_line": 12, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/ciphers/rc5.c", - "type": "file", - "name": "rc5.c", - "base_name": "rc5", - "extension": ".c", - "date": "2017-05-18", - "size": 8897, - "sha1": "61dbf0db16567802e475e0627729f2b2a4bcff94", - "md5": "b6668f39c51b8bf12e8fe653513ae0c5", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/ciphers/rc6.c", - "type": "file", - "name": "rc6.c", - "base_name": "rc6", - "extension": ".c", - "date": "2017-05-18", - "size": 10116, - "sha1": "2f333332309e7f0e0042f6a135a1326ca11796f3", - "md5": "28235f400f244083abbac4d49204b41c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/ciphers/skipjack.c", - "type": "file", - "name": "skipjack.c", - "base_name": "skipjack", - "extension": ".c", - "date": "2017-05-18", - "size": 9853, - "sha1": "5633088854b73aae1321af14c1775544900063fa", - "md5": "88159f967110c87bb494c310af6c62e7", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/ciphers/xtea.c", - "type": "file", - "name": "xtea.c", - "base_name": "xtea", - "extension": ".c", - "date": "2017-05-18", - "size": 5812, - "sha1": "7fcdf7b6ca928139837e10beb7714fc97db1bcae", - "md5": "bb0a0c8e3eab2482a88aecebe507f7e0", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/ciphers/aes", - "type": "directory", - "name": "aes", - "base_name": "aes", - "extension": "", - "date": null, - "size": 89456, - "sha1": null, - "md5": null, - "files_count": 2, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/ciphers/safer", - "type": "directory", - "name": "safer", - "base_name": "safer", - "extension": "", - "date": null, - "size": 40831, - "sha1": null, - "md5": null, - "files_count": 3, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/ciphers/twofish", - "type": "directory", - "name": "twofish", - "base_name": "twofish", - "extension": "", - "date": null, - "size": 68664, - "sha1": null, - "md5": null, - "files_count": 2, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/ciphers/aes/aes.c", - "type": "file", - "name": "aes.c", - "base_name": "aes", - "extension": ".c", - "date": "2017-05-18", - "size": 19581, - "sha1": "2e8a409dcdddb1861d0f65dcd3b96e04968a95a2", - "md5": "70a5299abd17849925c0195e502aed17", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "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": 14, - "end_line": 14, - "matched_rule": { - "identifier": "public-domain.LICENSE", - "license_choice": false, - "licenses": [ - "public-domain" - ] - } - } - ], - "copyrights": [ - { - "statements": [], - "holders": [], - "authors": [ - "Vincent Rijmen ", - "Antoon Bosselaers ", - "Paulo Barreto " - ], - "start_line": 23, - "end_line": 25 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/ciphers/aes/aes_tab.c", - "type": "file", - "name": "aes_tab.c", - "base_name": "aes_tab", - "extension": ".c", - "date": "2017-05-18", - "size": 69875, - "sha1": "b45734c8e0e6d7b70bd757eb93f5764139f9e42b", - "md5": "858a048ec939bef6594864c1a5f62b34", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/ciphers/safer/safer.c", - "type": "file", - "name": "safer.c", - "base_name": "safer", - "extension": ".c", - "date": "2017-05-18", - "size": 15914, - "sha1": "6d5a619b98006efd2860f0d8582c96e4dd6a1af4", - "md5": "be6533fc80070c7ab4c8f109555fc865", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/ciphers/safer/saferp.c", - "type": "file", - "name": "saferp.c", - "base_name": "saferp", - "extension": ".c", - "date": "2017-05-18", - "size": 21464, - "sha1": "73651257885b225a7cc44d39ada517910a6e574e", - "md5": "ede0c00037e859cc381b11e970256874", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/ciphers/safer/safer_tab.c", - "type": "file", - "name": "safer_tab.c", - "base_name": "safer_tab", - "extension": ".c", - "date": "2017-05-18", - "size": 3453, - "sha1": "5f75ae75019f7568417a82fc2a8b9a6d3f02334c", - "md5": "ddacee9ec4bc4ec92c4305f3fadafe28", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/ciphers/twofish/twofish.c", - "type": "file", - "name": "twofish.c", - "base_name": "twofish", - "extension": ".c", - "date": "2017-05-18", - "size": 20947, - "sha1": "ac05244fa207ef9f1705245c2949ccc13b859c2c", - "md5": "714983f3db54772b9d4690309512233a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/ciphers/twofish/twofish_tab.c", - "type": "file", - "name": "twofish_tab.c", - "base_name": "twofish_tab", - "extension": ".c", - "date": "2017-05-18", - "size": 47717, - "sha1": "47fd87878ddac8ef50b8867619910249614282db", - "md5": "d6096298141634897b237e61de528729", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/encauth/ccm", - "type": "directory", - "name": "ccm", - "base_name": "ccm", - "extension": "", - "date": null, - "size": 14981, - "sha1": null, - "md5": null, - "files_count": 2, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/encauth/eax", - "type": "directory", - "name": "eax", - "base_name": "eax", - "extension": "", - "date": null, - "size": 23524, - "sha1": null, - "md5": null, - "files_count": 8, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/encauth/gcm", - "type": "directory", - "name": "gcm", - "base_name": "gcm", - "extension": "", - "date": null, - "size": 40652, - "sha1": null, - "md5": null, - "files_count": 10, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/encauth/ocb", - "type": "directory", - "name": "ocb", - "base_name": "ocb", - "extension": "", - "date": null, - "size": 28888, - "sha1": null, - "md5": null, - "files_count": 11, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/encauth/ccm/ccm_memory.c", - "type": "file", - "name": "ccm_memory.c", - "base_name": "ccm_memory", - "extension": ".c", - "date": "2017-05-18", - "size": 9667, - "sha1": "c1053bb1309ea303717efa19b4cc07b847e5af5a", - "md5": "0b7625f621ebc0230085c908847ebcd3", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/encauth/ccm/ccm_test.c", - "type": "file", - "name": "ccm_test.c", - "base_name": "ccm_test", - "extension": ".c", - "date": "2017-05-18", - "size": 5314, - "sha1": "c6478d01412509e60fb8dd3540abaf4c1a6fe16e", - "md5": "58c9f94adf534c97ae3fa97a13e2111e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/encauth/eax/eax_addheader.c", - "type": "file", - "name": "eax_addheader.c", - "base_name": "eax_addheader", - "extension": ".c", - "date": "2017-05-18", - "size": 1086, - "sha1": "c169052379075558cdae06ec1180a7eeb4bd70d6", - "md5": "ce893b344b2bebad0073f9a54826c7e1", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/encauth/eax/eax_decrypt.c", - "type": "file", - "name": "eax_decrypt.c", - "base_name": "eax_decrypt", - "extension": ".c", - "date": "2017-05-18", - "size": 1253, - "sha1": "b29b70760e396042858fa51523ff22682254ecc3", - "md5": "dfc00a27d37523a5c91d5a7ae093916c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/encauth/eax/eax_decrypt_verify_memory.c", - "type": "file", - "name": "eax_decrypt_verify_memory.c", - "base_name": "eax_decrypt_verify_memory", - "extension": ".c", - "date": "2017-05-18", - "size": 3013, - "sha1": "2adc05282deea820105c597c9fc1ba4809de51ee", - "md5": "7b520966c4814bee3a9bbb2b30044a1a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/encauth/eax/eax_done.c", - "type": "file", - "name": "eax_done.c", - "base_name": "eax_done", - "extension": ".c", - "date": "2017-05-18", - "size": 2264, - "sha1": "333e4851e06035da7c1e9735f29ab0bac887abd2", - "md5": "9e5ca4ebcd8c30e834d5e9ea6efaa43a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/encauth/eax/eax_encrypt.c", - "type": "file", - "name": "eax_encrypt.c", - "base_name": "eax_encrypt", - "extension": ".c", - "date": "2017-05-18", - "size": 1282, - "sha1": "e5f98c9ee57dea946ceebf6f5a1466c837cd32b8", - "md5": "8e75d77c1170ff0fba638d4f00c1f3df", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/encauth/eax/eax_encrypt_authenticate_memory.c", - "type": "file", - "name": "eax_encrypt_authenticate_memory.c", - "base_name": "eax_encrypt_authenticate_memory", - "extension": ".c", - "date": "2017-05-18", - "size": 2375, - "sha1": "3a99b4d9726d5d9b53582440ffe1ef9f05041fdb", - "md5": "22b04cd54332dabeb5ce9a787daa209c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/encauth/eax/eax_init.c", - "type": "file", - "name": "eax_init.c", - "base_name": "eax_init", - "extension": ".c", - "date": "2017-05-18", - "size": 3716, - "sha1": "7331dc1a6a7492ad1155c0330b8c3da9450578cb", - "md5": "c52da3b819e6bf2d259ae9f230cb9933", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/encauth/eax/eax_test.c", - "type": "file", - "name": "eax_test.c", - "base_name": "eax_test", - "extension": ".c", - "date": "2017-05-18", - "size": 8535, - "sha1": "114a7ab1e7286bfa2ac484c456ab3e40951eeabf", - "md5": "7348b538bb3f23885e4cb9e000dfb567", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/encauth/gcm/gcm_add_aad.c", - "type": "file", - "name": "gcm_add_aad.c", - "base_name": "gcm_add_aad", - "extension": ".c", - "date": "2017-05-18", - "size": 3075, - "sha1": "2dccd27f4c2b37cf6594c61f05737ee204c960ec", - "md5": "b01eb853c8e6d93a4578ab852a576f39", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/encauth/gcm/gcm_add_iv.c", - "type": "file", - "name": "gcm_add_iv.c", - "base_name": "gcm_add_iv", - "extension": ".c", - "date": "2017-05-18", - "size": 2132, - "sha1": "71cb8d2a576df3157730d5353eb81f6d6feb328c", - "md5": "7084a272be2b19b312a8855263828136", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/encauth/gcm/gcm_done.c", - "type": "file", - "name": "gcm_done.c", - "base_name": "gcm_done", - "extension": ".c", - "date": "2017-05-18", - "size": 1953, - "sha1": "82c6a442e3a874a7a964ac62a0d20ba408e3d64b", - "md5": "5858177e1dedf9bd6ead1dfbf929ea3b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/encauth/gcm/gcm_gf_mult.c", - "type": "file", - "name": "gcm_gf_mult.c", - "base_name": "gcm_gf_mult", - "extension": ".c", - "date": "2017-05-18", - "size": 8382, - "sha1": "e202ae28b47da14f79c16b7b62def65558ae4ab9", - "md5": "58dbe07cb48fa83d74cf540f0ae9e5c8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/encauth/gcm/gcm_init.c", - "type": "file", - "name": "gcm_init.c", - "base_name": "gcm_init", - "extension": ".c", - "date": "2017-05-18", - "size": 2638, - "sha1": "56f3940c50a82e3f310164f69bc68ab996738b47", - "md5": "e47c19ed745c4d0000a31887201a2fe8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/encauth/gcm/gcm_memory.c", - "type": "file", - "name": "gcm_memory.c", - "base_name": "gcm_memory", - "extension": ".c", - "date": "2017-05-18", - "size": 3567, - "sha1": "c1855a2cba1eab5e7f13d019dfbd722a7058523c", - "md5": "cbe696a25f8abef5af6919580eae97de", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/encauth/gcm/gcm_mult_h.c", - "type": "file", - "name": "gcm_mult_h.c", - "base_name": "gcm_mult_h", - "extension": ".c", - "date": "2017-05-18", - "size": 1512, - "sha1": "758a95e4600858482d911fb4c60cde43e0bf8e40", - "md5": "c8ef7c19689784c8e271292b2ca00288", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/encauth/gcm/gcm_process.c", - "type": "file", - "name": "gcm_process.c", - "base_name": "gcm_process", - "extension": ".c", - "date": "2017-05-18", - "size": 4505, - "sha1": "d4f315feed1771446159fb82e356e5f8b1c0fc73", - "md5": "b7243b27e4f0083a44d5a10b9c9348fa", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/encauth/gcm/gcm_reset.c", - "type": "file", - "name": "gcm_reset.c", - "base_name": "gcm_reset", - "extension": ".c", - "date": "2017-05-18", - "size": 1083, - "sha1": "a0f6409302236741a47fcc36b2fb60c0b25f09c8", - "md5": "a6619ca33e6ac1ec4d1e0fd6f6cdbb4b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/encauth/gcm/gcm_test.c", - "type": "file", - "name": "gcm_test.c", - "base_name": "gcm_test", - "extension": ".c", - "date": "2017-05-18", - "size": 11805, - "sha1": "93cc22cc760317794a696529495f01c33788fc03", - "md5": "3b2e73725eeb5bdd81ad6cdafa0a9216", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/encauth/ocb/ocb_decrypt.c", - "type": "file", - "name": "ocb_decrypt.c", - "base_name": "ocb_decrypt", - "extension": ".c", - "date": "2017-05-18", - "size": 1950, - "sha1": "4bec1fe436c6203c666374ff56e1070937e55668", - "md5": "1386cd3892084e4c303c5048b1dcbc0c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/encauth/ocb/ocb_decrypt_verify_memory.c", - "type": "file", - "name": "ocb_decrypt_verify_memory.c", - "base_name": "ocb_decrypt_verify_memory", - "extension": ".c", - "date": "2017-05-18", - "size": 2490, - "sha1": "f87dab013cca50c5e6f564f5299a7230700d435b", - "md5": "945b1df53e1cba238ef945c982d36df4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/encauth/ocb/ocb_done_decrypt.c", - "type": "file", - "name": "ocb_done_decrypt.c", - "base_name": "ocb_done_decrypt", - "extension": ".c", - "date": "2017-05-18", - "size": 2055, - "sha1": "11018cb1aa53dd8f791442371188a3ae3c3c3982", - "md5": "139f412b827afbe77c64bf0919caf74e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/encauth/ocb/ocb_done_encrypt.c", - "type": "file", - "name": "ocb_done_encrypt.c", - "base_name": "ocb_done_encrypt", - "extension": ".c", - "date": "2017-05-18", - "size": 1400, - "sha1": "442211c9a136feea3e009ac0dd06973992b109d9", - "md5": "2a2e588350e9a3600a4dbfce31ec1071", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/encauth/ocb/ocb_encrypt.c", - "type": "file", - "name": "ocb_encrypt.c", - "base_name": "ocb_encrypt", - "extension": ".c", - "date": "2017-05-18", - "size": 1846, - "sha1": "3c3c96b3682f7c36bbcea40ff17c67bd21d4e482", - "md5": "4810ffd5fbf370a9fa6ac0ae33ac0ba9", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/encauth/ocb/ocb_encrypt_authenticate_memory.c", - "type": "file", - "name": "ocb_encrypt_authenticate_memory.c", - "base_name": "ocb_encrypt_authenticate_memory", - "extension": ".c", - "date": "2017-05-18", - "size": 2397, - "sha1": "3c2766026b3358f2a65d236c287987d842078b03", - "md5": "a37c93a82785b31f7631d07ee4e2454b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/encauth/ocb/ocb_init.c", - "type": "file", - "name": "ocb_init.c", - "base_name": "ocb_init", - "extension": ".c", - "date": "2017-05-18", - "size": 3817, - "sha1": "5c5f34ab3101faa000d7705745755d16a1cd342d", - "md5": "f5e9ebf8b8d1a0daf14119b1537afd53", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/encauth/ocb/ocb_ntz.c", - "type": "file", - "name": "ocb_ntz.c", - "base_name": "ocb_ntz", - "extension": ".c", - "date": "2017-05-18", - "size": 915, - "sha1": "1869d9a01bccf5340cf75465f06e5f6399953d77", - "md5": "ad61b3e7b735c3c680509df8227a41e7", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/encauth/ocb/ocb_shift_xor.c", - "type": "file", - "name": "ocb_shift_xor.c", - "base_name": "ocb_shift_xor", - "extension": ".c", - "date": "2017-05-18", - "size": 981, - "sha1": "05f488c59f4e5e7580b0294271be9d625f4babd7", - "md5": "5659616d90a03f1e26bfa8f32e8b18b2", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/encauth/ocb/ocb_test.c", - "type": "file", - "name": "ocb_test.c", - "base_name": "ocb_test", - "extension": ".c", - "date": "2017-05-18", - "size": 7063, - "sha1": "7109b63d044aa7bf02858f752cab6be5505d6166", - "md5": "cf74078c22771a12d71ece7b87214871", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/encauth/ocb/s_ocb_done.c", - "type": "file", - "name": "s_ocb_done.c", - "base_name": "s_ocb_done", - "extension": ".c", - "date": "2017-05-18", - "size": 3974, - "sha1": "7141685ed64e5737be0322bc11edd899660dc844", - "md5": "280005cdb64c7574834b11c56341b646", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/hashes/md2.c", - "type": "file", - "name": "md2.c", - "base_name": "md2", - "extension": ".c", - "date": "2017-05-18", - "size": 6879, - "sha1": "53b6cc2eff923e9af0caa81bbcbbe482664b8dd4", - "md5": "b9b5e92bbd957dfc77382f621d4d9ae4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/hashes/md4.c", - "type": "file", - "name": "md4.c", - "base_name": "md4", - "extension": ".c", - "date": "2017-05-18", - "size": 8625, - "sha1": "6890f9843a9159a0392229c9de2b9be67d49875d", - "md5": "59590c9c837dbb129273eeedabc80b85", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [], - "holders": [], - "authors": [ - "Dobes Vandermeer (dobes@smartt.com)" - ], - "start_line": 14, - "end_line": 15 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/hashes/md5.c", - "type": "file", - "name": "md5.c", - "base_name": "md5", - "extension": ".c", - "date": "2017-05-18", - "size": 10563, - "sha1": "9877f9e60f1b3723d946caf1a813d67c0d5c81c1", - "md5": "dd17502b360358498ec94b904906e9dd", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/hashes/rmd128.c", - "type": "file", - "name": "rmd128.c", - "base_name": "rmd128", - "extension": ".c", - "date": "2017-05-18", - "size": 11870, - "sha1": "73476b523281aea15950176ec41538efba85c15b", - "md5": "57b4e6e3c95877a543b949ccd4d36524", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/hashes/rmd160.c", - "type": "file", - "name": "rmd160.c", - "base_name": "rmd160", - "extension": ".c", - "date": "2017-05-18", - "size": 14742, - "sha1": "20094a6609ba2f0d0e8582e24cbc4f86fa585100", - "md5": "8232ce21064f17178e188a6022a1762a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/hashes/rmd256.c", - "type": "file", - "name": "rmd256.c", - "base_name": "rmd256", - "extension": ".c", - "date": "2017-05-18", - "size": 12505, - "sha1": "75108c85ca74352bf4be82f2879aed3baea19d85", - "md5": "4701b3f09f1332e9718ecf6127ab292f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/hashes/rmd320.c", - "type": "file", - "name": "rmd320.c", - "base_name": "rmd320", - "extension": ".c", - "date": "2017-05-18", - "size": 15604, - "sha1": "d0db9912f3d5b2648c46b971638f95a4da82c79a", - "md5": "08ff1aa91c11e92f9de46060f5851752", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/hashes/sha1.c", - "type": "file", - "name": "sha1.c", - "base_name": "sha1", - "extension": ".c", - "date": "2017-05-18", - "size": 6859, - "sha1": "4a37f38f807f128d95122591d300176af7b3ac27", - "md5": "095d35f0936c8055aa465d17be1267a0", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/hashes/tiger.c", - "type": "file", - "name": "tiger.c", - "base_name": "tiger", - "extension": ".c", - "date": "2017-05-18", - "size": 51842, - "sha1": "6c6e746b52ff458602f08dbfb569ab5dca97f576", - "md5": "329b57911142e31128fba841f69f2091", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/hashes/chc", - "type": "directory", - "name": "chc", - "base_name": "chc", - "extension": "", - "date": null, - "size": 7640, - "sha1": null, - "md5": null, - "files_count": 1, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/hashes/helper", - "type": "directory", - "name": "helper", - "base_name": "helper", - "extension": "", - "date": null, - "size": 7760, - "sha1": null, - "md5": null, - "files_count": 4, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/hashes/sha2", - "type": "directory", - "name": "sha2", - "base_name": "sha2", - "extension": "", - "date": null, - "size": 28435, - "sha1": null, - "md5": null, - "files_count": 4, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/hashes/whirl", - "type": "directory", - "name": "whirl", - "base_name": "whirl", - "extension": "", - "date": null, - "size": 71111, - "sha1": null, - "md5": null, - "files_count": 2, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/hashes/chc/chc.c", - "type": "file", - "name": "chc.c", - "base_name": "chc", - "extension": ".c", - "date": "2017-05-18", - "size": 7640, - "sha1": "0080cc6e6f32d2cc925e2a65a41a03900017c135", - "md5": "09bb8caf2a8571868a1229e2a61613ed", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/hashes/helper/hash_file.c", - "type": "file", - "name": "hash_file.c", - "base_name": "hash_file", - "extension": ".c", - "date": "2017-05-18", - "size": 1444, - "sha1": "feb37e72ff3c8c131da8d3026cce20289de1b7cb", - "md5": "a35ac1305737a00031acc833beddc127", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/hashes/helper/hash_filehandle.c", - "type": "file", - "name": "hash_filehandle.c", - "base_name": "hash_filehandle", - "extension": ".c", - "date": "2017-05-18", - "size": 1935, - "sha1": "b1748d137b2fa7dce9415e7364fef3737bd493e6", - "md5": "dba92cf1f6efc5b2da0d35486e85fc52", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/hashes/helper/hash_memory.c", - "type": "file", - "name": "hash_memory.c", - "base_name": "hash_memory", - "extension": ".c", - "date": "2017-05-18", - "size": 1873, - "sha1": "57574a0136dad5dbb97a69c35bbe9ba486d50b63", - "md5": "30e14ded7902bf6d5887a2bd8e7df983", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/hashes/helper/hash_memory_multi.c", - "type": "file", - "name": "hash_memory_multi.c", - "base_name": "hash_memory_multi", - "extension": ".c", - "date": "2017-05-18", - "size": 2508, - "sha1": "dd096503675ec86ed67df903dbd3fd63f0e1e072", - "md5": "1597b6716ac2a8d0521f04d857240c00", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/hashes/sha2/sha224.c", - "type": "file", - "name": "sha224.c", - "base_name": "sha224", - "extension": ".c", - "date": "2017-05-18", - "size": 3079, - "sha1": "f2eadcea259104f78fbcd86c1410fe3de8a3826d", - "md5": "ab69747990f72d0400d21154b930a65c", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/hashes/sha2/sha256.c", - "type": "file", - "name": "sha256.c", - "base_name": "sha256", - "extension": ".c", - "date": "2017-05-18", - "size": 11715, - "sha1": "742b6ec0f56978e0f9d1228e82eb6a2c581bce87", - "md5": "990fbf9cb28fa469406641379457f797", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/hashes/sha2/sha384.c", - "type": "file", - "name": "sha384.c", - "base_name": "sha384", - "extension": ".c", - "date": "2017-05-18", - "size": 3523, - "sha1": "3e1167f721cd5dc1d595c20141ae9201eea547e5", - "md5": "690d587987d57eeeae8c68861307d260", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/hashes/sha2/sha512.c", - "type": "file", - "name": "sha512.c", - "base_name": "sha512", - "extension": ".c", - "date": "2017-05-18", - "size": 10118, - "sha1": "a99659827a06b9ac4611f160c2a208a2b068f3ab", - "md5": "0daba84bc6915f54cea792ab065c5dd2", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/hashes/whirl/whirl.c", - "type": "file", - "name": "whirl.c", - "base_name": "whirl", - "extension": ".c", - "date": "2017-05-18", - "size": 9870, - "sha1": "3c9057355ebf6e28152ac46f540255ee37ee49e7", - "md5": "aaa6937a2f799bbeddf778964676d8b5", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/hashes/whirl/whirltab.c", - "type": "file", - "name": "whirltab.c", - "base_name": "whirltab", - "extension": ".c", - "date": "2017-05-18", - "size": 61241, - "sha1": "b46a2443ddb64fe1c0ed34b92d3ffbaeed61d95b", - "md5": "b1c18807392aaa8c29dc15e5b942b78b", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/headers/tomcrypt.h", - "type": "file", - "name": "tomcrypt.h", - "base_name": "tomcrypt", - "extension": ".h", - "date": "2017-05-18", - "size": 2604, - "sha1": "83b7d187ab4adbdc6f120343d493bf066de3d220", - "md5": "48a5c906c1d3b459cde1d52f0d9aa622", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/headers/tomcrypt_argchk.h", - "type": "file", - "name": "tomcrypt_argchk.h", - "base_name": "tomcrypt_argchk", - "extension": ".h", - "date": "2017-05-18", - "size": 1161, - "sha1": "9f708cb3c247f176b08fe270ca80cd0ecb8b01f3", - "md5": "b5b0af43de62e27126fd2817e222b0e8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/headers/tomcrypt_cfg.h", - "type": "file", - "name": "tomcrypt_cfg.h", - "base_name": "tomcrypt_cfg", - "extension": ".h", - "date": "2017-05-18", - "size": 3869, - "sha1": "58d3164f418bb256def2857366a5385a261536ed", - "md5": "c512dfb6cf9136f85099fe12141ff631", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/headers/tomcrypt_cipher.h", - "type": "file", - "name": "tomcrypt_cipher.h", - "base_name": "tomcrypt_cipher", - "extension": ".h", - "date": "2017-05-18", - "size": 30046, - "sha1": "e3b1180fed2245e71e498fa01752462f385bf581", - "md5": "aa5b1015e478d61ddfc1e5d47a9c2703", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/headers/tomcrypt_custom.h", - "type": "file", - "name": "tomcrypt_custom.h", - "base_name": "tomcrypt_custom", - "extension": ".h", - "date": "2017-05-18", - "size": 3253, - "sha1": "2b8c3db0f7c6e8edb0e2636fd0a08c8f1431028a", - "md5": "fa5dff0487a3f7bb326b9c2646e7a7c1", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/headers/tomcrypt_hash.h", - "type": "file", - "name": "tomcrypt_hash.h", - "base_name": "tomcrypt_hash", - "extension": ".h", - "date": "2017-05-18", - "size": 12269, - "sha1": "95bc9a5a059be5466a29dfd0c772c7c39d3b5106", - "md5": "6878f7c88c26a9e5796e910eee14eb5e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/headers/tomcrypt_mac.h", - "type": "file", - "name": "tomcrypt_mac.h", - "base_name": "tomcrypt_mac", - "extension": ".h", - "date": "2017-05-18", - "size": 14296, - "sha1": "95d651ceee9bfd210bf7a60828976a2303444b25", - "md5": "d18e0c16e1b14883602fe3ec446249af", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/headers/tomcrypt_macros.h", - "type": "file", - "name": "tomcrypt_macros.h", - "base_name": "tomcrypt_macros", - "extension": ".h", - "date": "2017-05-18", - "size": 14365, - "sha1": "e91d8adfe014f401eade548dc32cdf05249c24cb", - "md5": "44a2dfaedad92a5048cdac87a551eead", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/headers/tomcrypt_math.h", - "type": "file", - "name": "tomcrypt_math.h", - "base_name": "tomcrypt_math", - "extension": ".h", - "date": "2017-05-18", - "size": 17085, - "sha1": "8e8544725452d7c0a4f36c571df13750d4c6fa9d", - "md5": "b563d49843546ff71bc4bb32bd22004e", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/headers/tomcrypt_misc.h", - "type": "file", - "name": "tomcrypt_misc.h", - "base_name": "tomcrypt_misc", - "extension": ".h", - "date": "2017-05-18", - "size": 683, - "sha1": "2eaface2ea546bff80522a12d03643bf3a79671a", - "md5": "eed8e57449e2b51897823392a0ef6709", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/headers/tomcrypt_pk.h", - "type": "file", - "name": "tomcrypt_pk.h", - "base_name": "tomcrypt_pk", - "extension": ".h", - "date": "2017-05-18", - "size": 20499, - "sha1": "c31f2bc7e33b2a7312af5464a6b812981bf651fd", - "md5": "ab85dcffd41fcd13b2565514d6d78b93", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/headers/tomcrypt_pkcs.h", - "type": "file", - "name": "tomcrypt_pkcs.h", - "base_name": "tomcrypt_pkcs", - "extension": ".h", - "date": "2017-05-18", - "size": 3921, - "sha1": "a651eaf7a972ab39b29d878ba8bb2688921da9cf", - "md5": "88ed0977fcb1a3f9eecd29de07f0f9b2", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/headers/tomcrypt_prng.h", - "type": "file", - "name": "tomcrypt_prng.h", - "base_name": "tomcrypt_prng", - "extension": ".h", - "date": "2017-05-18", - "size": 7168, - "sha1": "0bf74b746ed7d5d75c34b66e8e5c904de4b79015", - "md5": "43f58b21918799cf905837dfe592e0c6", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/mac/f9", - "type": "directory", - "name": "f9", - "base_name": "f9", - "extension": "", - "date": null, - "size": 14724, - "sha1": null, - "md5": null, - "files_count": 7, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/mac/hmac", - "type": "directory", - "name": "hmac", - "base_name": "hmac", - "extension": "", - "date": null, - "size": 26040, - "sha1": null, - "md5": null, - "files_count": 7, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/mac/omac", - "type": "directory", - "name": "omac", - "base_name": "omac", - "extension": "", - "date": null, - "size": 18058, - "sha1": null, - "md5": null, - "files_count": 7, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/mac/pelican", - "type": "directory", - "name": "pelican", - "base_name": "pelican", - "extension": "", - "date": null, - "size": 8988, - "sha1": null, - "md5": null, - "files_count": 3, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/mac/pmac", - "type": "directory", - "name": "pmac", - "base_name": "pmac", - "extension": "", - "date": null, - "size": 21717, - "sha1": null, - "md5": null, - "files_count": 9, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/mac/xcbc", - "type": "directory", - "name": "xcbc", - "base_name": "xcbc", - "extension": "", - "date": null, - "size": 15909, - "sha1": null, - "md5": null, - "files_count": 7, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/mac/f9/f9_done.c", - "type": "file", - "name": "f9_done.c", - "base_name": "f9_done", - "extension": ".c", - "date": "2017-05-18", - "size": 1995, - "sha1": "6260a226765dfc2c7ab78d7c28a7bbdc9994379c", - "md5": "4f72f0311078934dbd105a1eb8282a34", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/mac/f9/f9_file.c", - "type": "file", - "name": "f9_file.c", - "base_name": "f9_file", - "extension": ".c", - "date": "2017-05-18", - "size": 2049, - "sha1": "7963655f03d0a0408d49ea23c5aa41af27674ab6", - "md5": "007d7c0431562b1fc4adfedb34047297", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/mac/f9/f9_init.c", - "type": "file", - "name": "f9_init.c", - "base_name": "f9_init", - "extension": ".c", - "date": "2017-05-18", - "size": 1742, - "sha1": "b0c0b307145b82b324df8f097aca5481b1eafc23", - "md5": "e57997c68e21f2590afccd29d7726958", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/mac/f9/f9_memory.c", - "type": "file", - "name": "f9_memory.c", - "base_name": "f9_memory", - "extension": ".c", - "date": "2017-05-18", - "size": 1841, - "sha1": "d0dbddcc2b3020ac3cffb0a1e26ac78186a86c83", - "md5": "051b77a4f83b868da21e9d445883a452", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/mac/f9/f9_memory_multi.c", - "type": "file", - "name": "f9_memory_multi.c", - "base_name": "f9_memory_multi", - "extension": ".c", - "date": "2017-05-18", - "size": 2561, - "sha1": "144d37e359064a8f585113e0e7a7f77955cf3c07", - "md5": "88263940a6926946143ee17ce0a09650", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/mac/f9/f9_process.c", - "type": "file", - "name": "f9_process.c", - "base_name": "f9_process", - "extension": ".c", - "date": "2017-05-18", - "size": 2159, - "sha1": "b4cf829befb5d0f43ff456184985605bfdc8b88c", - "md5": "553edcced9b2de29f29b04fa6d055db5", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/mac/f9/f9_test.c", - "type": "file", - "name": "f9_test.c", - "base_name": "f9_test", - "extension": ".c", - "date": "2017-05-18", - "size": 2377, - "sha1": "f201a79784d60bb26efcc2ea79d912e33cfc5e50", - "md5": "c204674d59e772dc4d51cbf9c580dbf8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/mac/hmac/hmac_done.c", - "type": "file", - "name": "hmac_done.c", - "base_name": "hmac_done", - "extension": ".c", - "date": "2017-05-18", - "size": 2516, - "sha1": "b56785404dbabf0325798e12aef8f73e64cca59e", - "md5": "a67238c25341aa170a710727d2e8b076", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/mac/hmac/hmac_file.c", - "type": "file", - "name": "hmac_file.c", - "base_name": "hmac_file", - "extension": ".c", - "date": "2017-05-18", - "size": 2403, - "sha1": "28b58fa91ddb827ff60fd8a8e5145c3ad2de2ad9", - "md5": "ed3f1314e42919a3bd9a8a956b9e2a8c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/mac/hmac/hmac_init.c", - "type": "file", - "name": "hmac_init.c", - "base_name": "hmac_init", - "extension": ".c", - "date": "2017-05-18", - "size": 2732, - "sha1": "d4767df97cfe56716ee5945cdd8ede582e520c2b", - "md5": "d7ca4ff722d6cd6b7ab66bdd6c16f033", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/mac/hmac/hmac_memory.c", - "type": "file", - "name": "hmac_memory.c", - "base_name": "hmac_memory", - "extension": ".c", - "date": "2017-05-18", - "size": 2385, - "sha1": "49c34b262a9c38cabd61beded65e8d5537de52d9", - "md5": "5ea4a20da03c2827827b568c24d546e1", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/mac/hmac/hmac_memory_multi.c", - "type": "file", - "name": "hmac_memory_multi.c", - "base_name": "hmac_memory_multi", - "extension": ".c", - "date": "2017-05-18", - "size": 2612, - "sha1": "ec07340fdae808dac12410ae49eec654f3fb44d1", - "md5": "798008965f5449046367ae4fefa351b8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/mac/hmac/hmac_process.c", - "type": "file", - "name": "hmac_process.c", - "base_name": "hmac_process", - "extension": ".c", - "date": "2017-05-18", - "size": 1123, - "sha1": "17eda48592764dd1e4cca994c1f12498f53048ff", - "md5": "b72f1545d54166366aa18613c305b96a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/mac/hmac/hmac_test.c", - "type": "file", - "name": "hmac_test.c", - "base_name": "hmac_test", - "extension": ".c", - "date": "2017-05-18", - "size": 12269, - "sha1": "a99b84a8ebb9544f7bce3110793a9f71169c5144", - "md5": "643452675015bf83c76a176b76d0af89", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/mac/omac/omac_done.c", - "type": "file", - "name": "omac_done.c", - "base_name": "omac_done", - "extension": ".c", - "date": "2017-05-18", - "size": 2233, - "sha1": "9119ecd43cadac562dd14bb39fac3b2e1d419b69", - "md5": "c05ccf357784404057d622965e5a2bc0", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/mac/omac/omac_file.c", - "type": "file", - "name": "omac_file.c", - "base_name": "omac_file", - "extension": ".c", - "date": "2017-05-18", - "size": 2075, - "sha1": "b5a8853f98fa72dbb29f0a4d475c419d638bec55", - "md5": "03743129c78cd4eea3452a6f3e938997", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/mac/omac/omac_init.c", - "type": "file", - "name": "omac_init.c", - "base_name": "omac_init", - "extension": ".c", - "date": "2017-05-18", - "size": 2764, - "sha1": "13052cf876c8ba0b56a3044233129add0e2fd5da", - "md5": "e5e3560f022daafb20ad692ac46d59c1", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/mac/omac/omac_memory.c", - "type": "file", - "name": "omac_memory.c", - "base_name": "omac_memory", - "extension": ".c", - "date": "2017-05-18", - "size": 2338, - "sha1": "f68f48a4ceed7d697c9199036dfdcf664a5e8187", - "md5": "1507167b052faf3342e7f1ca58d4b4e9", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/mac/omac/omac_memory_multi.c", - "type": "file", - "name": "omac_memory_multi.c", - "base_name": "omac_memory_multi", - "extension": ".c", - "date": "2017-05-18", - "size": 2609, - "sha1": "1b4268ed5664628c27b39796264512d1dcfa6c67", - "md5": "1567a0aa60ca6c176c4586db6efd238a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/mac/omac/omac_process.c", - "type": "file", - "name": "omac_process.c", - "base_name": "omac_process", - "extension": ".c", - "date": "2017-05-18", - "size": 2487, - "sha1": "febd3ca78a8abdec291580ec2c501dbd188caf23", - "md5": "61e6df7213a64aa29751ad0e4a4f83f4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/mac/omac/omac_test.c", - "type": "file", - "name": "omac_test.c", - "base_name": "omac_test", - "extension": ".c", - "date": "2017-05-18", - "size": 3552, - "sha1": "ffea660bee39632e32d7fca74a6ba2efd7809047", - "md5": "4071545805946ca1fadf447a9e52a941", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/mac/pelican/pelican.c", - "type": "file", - "name": "pelican.c", - "base_name": "pelican", - "extension": ".c", - "date": "2017-05-18", - "size": 4129, - "sha1": "fd6b5671f53dd98dc38906333c04fda9aa244b33", - "md5": "a2981bbadde4aea399f4a4653a6f620d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/mac/pelican/pelican_memory.c", - "type": "file", - "name": "pelican_memory.c", - "base_name": "pelican_memory", - "extension": ".c", - "date": "2017-05-18", - "size": 1461, - "sha1": "2d1f155f651e52ecbdf0b6ff82947d77d02057f1", - "md5": "c20c0391ede3b8f8078fd5d77e927d3e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/mac/pelican/pelican_test.c", - "type": "file", - "name": "pelican_test.c", - "base_name": "pelican_test", - "extension": ".c", - "date": "2017-05-18", - "size": 3398, - "sha1": "f69d2046b305c4d657a715e9074433b992f28d38", - "md5": "c5fe34c562f7965664b22ed09170f8bd", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/mac/pmac/pmac_done.c", - "type": "file", - "name": "pmac_done.c", - "base_name": "pmac_done", - "extension": ".c", - "date": "2017-05-18", - "size": 1980, - "sha1": "9b836f52eb3050b01b0f9e47753fbbce3696e96f", - "md5": "b744a3bdb4f9f87339f0a8e30e06ec8f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/mac/pmac/pmac_file.c", - "type": "file", - "name": "pmac_file.c", - "base_name": "pmac_file", - "extension": ".c", - "date": "2017-05-18", - "size": 2107, - "sha1": "d3e324515e0f812340fa1bdd5eba295fe5e2224a", - "md5": "028476f1135825f3354a2c14bb9dcccb", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/mac/pmac/pmac_init.c", - "type": "file", - "name": "pmac_init.c", - "base_name": "pmac_init", - "extension": ".c", - "date": "2017-05-18", - "size": 3834, - "sha1": "44a43614d10590f97b57491e620d285803be0902", - "md5": "76e5f7da92c89bf9a1c11ba1f6f30f7f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/mac/pmac/pmac_memory.c", - "type": "file", - "name": "pmac_memory.c", - "base_name": "pmac_memory", - "extension": ".c", - "date": "2017-05-18", - "size": 2017, - "sha1": "0032d09b7b61367cbd6df483d86be3f0fafd3efd", - "md5": "e71adb14692f18f6b4b39d689597936a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/mac/pmac/pmac_memory_multi.c", - "type": "file", - "name": "pmac_memory_multi.c", - "base_name": "pmac_memory_multi", - "extension": ".c", - "date": "2017-05-18", - "size": 2584, - "sha1": "12812478980e3b4f4650f6ead14180cc1bafce05", - "md5": "2f4765ce26a3b5b41968290163d7e048", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/mac/pmac/pmac_ntz.c", - "type": "file", - "name": "pmac_ntz.c", - "base_name": "pmac_ntz", - "extension": ".c", - "date": "2017-05-18", - "size": 780, - "sha1": "5a0b2d5b9ace0a0e01248a0561e715db2e2d703b", - "md5": "757ee19fab004e3a8c31831af325d120", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/mac/pmac/pmac_process.c", - "type": "file", - "name": "pmac_process.c", - "base_name": "pmac_process", - "extension": ".c", - "date": "2017-05-18", - "size": 2938, - "sha1": "f593478adc1d72beb8722baea189d2eae065e9e2", - "md5": "2e77ca75523374044a16b97d40ebdeed", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/mac/pmac/pmac_shift_xor.c", - "type": "file", - "name": "pmac_shift_xor.c", - "base_name": "pmac_shift_xor", - "extension": ".c", - "date": "2017-05-18", - "size": 1129, - "sha1": "381adff891ce89c56f87960dac74a56d1a9dcd77", - "md5": "d7655c6a4cdfb71507c6c7497935f910", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/mac/pmac/pmac_test.c", - "type": "file", - "name": "pmac_test.c", - "base_name": "pmac_test", - "extension": ".c", - "date": "2017-05-18", - "size": 4348, - "sha1": "53a43eda9a8663726222e4a91aca61c816599c53", - "md5": "76f1dbb0bef50a32641d64eba46e936a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/mac/xcbc/xcbc_done.c", - "type": "file", - "name": "xcbc_done.c", - "base_name": "xcbc_done", - "extension": ".c", - "date": "2017-05-18", - "size": 1990, - "sha1": "455bc562d935af842d373485c5c22fe4248b9db1", - "md5": "4ee2bce0c69e9d3e762e707e030c2449", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/mac/xcbc/xcbc_file.c", - "type": "file", - "name": "xcbc_file.c", - "base_name": "xcbc_file", - "extension": ".c", - "date": "2017-05-18", - "size": 2074, - "sha1": "1a198bac9138b1437c20396e7f009ba52f976770", - "md5": "aca4360a4f7abc9f34f8900ae0b01349", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/mac/xcbc/xcbc_init.c", - "type": "file", - "name": "xcbc_init.c", - "base_name": "xcbc_init", - "extension": ".c", - "date": "2017-05-18", - "size": 2202, - "sha1": "f524f8c6cc5ad1abc92073735226afb9bebbdedc", - "md5": "878a4c879debe6bcb33a27e49b290cc9", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/mac/xcbc/xcbc_memory.c", - "type": "file", - "name": "xcbc_memory.c", - "base_name": "xcbc_memory", - "extension": ".c", - "date": "2017-05-18", - "size": 1874, - "sha1": "5fb61ee2108a154f46baff547bfd9454721e3aae", - "md5": "3aa2dc5de5b7ac0eba26b9526641c61f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/mac/xcbc/xcbc_memory_multi.c", - "type": "file", - "name": "xcbc_memory_multi.c", - "base_name": "xcbc_memory_multi", - "extension": ".c", - "date": "2017-05-18", - "size": 2608, - "sha1": "98258295c011a24f3e1c92f4245ee7b4a3f1b26a", - "md5": "e9f6a747e420d21c04cc1b70e2dc3090", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/mac/xcbc/xcbc_process.c", - "type": "file", - "name": "xcbc_process.c", - "base_name": "xcbc_process", - "extension": ".c", - "date": "2017-05-18", - "size": 1996, - "sha1": "e040e0d542fdbf1bc9f752a3b4d183ee571d749e", - "md5": "ced2b353e2d6d09e8af18ff8883c6c1f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/mac/xcbc/xcbc_test.c", - "type": "file", - "name": "xcbc_test.c", - "base_name": "xcbc_test", - "extension": ".c", - "date": "2017-05-18", - "size": 3165, - "sha1": "8d57e0d21f99b4c141211a895f26bcc374752f38", - "md5": "b1934e599468b5d5765a050542ada719", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/math/gmp_desc.c", - "type": "file", - "name": "gmp_desc.c", - "base_name": "gmp_desc", - "extension": ".c", - "date": "2017-05-18", - "size": 8463, - "sha1": "02e8125e4bda575ab9246889a76ca24ac5aadb06", - "md5": "3ddb3f7b7a242a1428c56861361082c3", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/math/ltm_desc.c", - "type": "file", - "name": "ltm_desc.c", - "base_name": "ltm_desc", - "extension": ".c", - "date": "2017-05-18", - "size": 9288, - "sha1": "eed90b310e930f0e4621456151e264c82a94cf48", - "md5": "c29b105d7c9cc59a32f5a7e95d03ffb1", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/math/multi.c", - "type": "file", - "name": "multi.c", - "base_name": "multi", - "extension": ".c", - "date": "2017-05-18", - "size": 1301, - "sha1": "87a54063934ac017536b964cb410c4443cf0be66", - "md5": "dd0ac285bb42095f0645953097d4318d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/math/rand_prime.c", - "type": "file", - "name": "rand_prime.c", - "base_name": "rand_prime", - "extension": ".c", - "date": "2017-05-18", - "size": 1905, - "sha1": "a091c7429d0954e03aea933cf97d02ca626fd58e", - "md5": "c8e8f2d63ea520b59b2dc2e2df44ab09", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/math/tfm_desc.c", - "type": "file", - "name": "tfm_desc.c", - "base_name": "tfm_desc", - "extension": ".c", - "date": "2017-05-18", - "size": 15881, - "sha1": "6b3333e049ed4911be329d2a126b992ce7aba4e7", - "md5": "765cf59ed15a5054c6a78723045368f0", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/math/fp", - "type": "directory", - "name": "fp", - "base_name": "fp", - "extension": "", - "date": null, - "size": 98604, - "sha1": null, - "md5": null, - "files_count": 1, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/math/fp/ltc_ecc_fp_mulmod.c", - "type": "file", - "name": "ltc_ecc_fp_mulmod.c", - "base_name": "ltc_ecc_fp_mulmod", - "extension": ".c", - "date": "2017-05-18", - "size": 98604, - "sha1": "ed04fb3d19e590523d3b2cd91b7e95bd384cf6d3", - "md5": "6d6319b524b09d6dc87896c54453f9da", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/misc/burn_stack.c", - "type": "file", - "name": "burn_stack.c", - "base_name": "burn_stack", - "extension": ".c", - "date": "2017-05-18", - "size": 799, - "sha1": "dea9c1132b6526cc74a435cb4d164cca7aaecd78", - "md5": "c34002a381af6ebeebc795fed3b7324c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/misc/error_to_string.c", - "type": "file", - "name": "error_to_string.c", - "base_name": "error_to_string", - "extension": ".c", - "date": "2017-05-18", - "size": 1797, - "sha1": "1e768bfb4cc4b8551bcd05153c3287940f17e5e2", - "md5": "bacf5b9c0f5a32d6d465bdf0edd29644", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/misc/zeromem.c", - "type": "file", - "name": "zeromem.c", - "base_name": "zeromem", - "extension": ".c", - "date": "2017-05-18", - "size": 783, - "sha1": "8beb73f613a10da214d014dbed73432f3455fa7f", - "md5": "23b193339dee8f64197157d88453777b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/misc/base64", - "type": "directory", - "name": "base64", - "base_name": "base64", - "extension": "", - "date": null, - "size": 5710, - "sha1": null, - "md5": null, - "files_count": 2, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/misc/crypt", - "type": "directory", - "name": "crypt", - "base_name": "crypt", - "extension": "", - "date": null, - "size": 31657, - "sha1": null, - "md5": null, - "files_count": 24, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/misc/pkcs5", - "type": "directory", - "name": "pkcs5", - "base_name": "pkcs5", - "extension": "", - "date": null, - "size": 6636, - "sha1": null, - "md5": null, - "files_count": 2, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/misc/base64/base64_decode.c", - "type": "file", - "name": "base64_decode.c", - "base_name": "base64_decode", - "extension": ".c", - "date": "2017-05-18", - "size": 3514, - "sha1": "9893068520eaf4c48c1b79aea67aa07386fb737d", - "md5": "97c5cfd49be27cc5c31e2ad6d2de372e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [], - "holders": [], - "authors": [ - "Wayne Scott (wscott@bitmover.com)" - ], - "start_line": 14, - "end_line": 15 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/misc/base64/base64_encode.c", - "type": "file", - "name": "base64_encode.c", - "base_name": "base64_encode", - "extension": ".c", - "date": "2017-05-18", - "size": 2196, - "sha1": "ec366845b24338e7ce813bd4c406a1c25ce8e6e5", - "md5": "91fc845bbe9e703e64a2cecc916938fd", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [], - "holders": [], - "authors": [ - "Wayne Scott (wscott@bitmover.com)" - ], - "start_line": 14, - "end_line": 15 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/misc/crypt/crypt.c", - "type": "file", - "name": "crypt.c", - "base_name": "crypt", - "extension": ".c", - "date": "2017-05-18", - "size": 6395, - "sha1": "c859ef1a68270b5eac42aa2d858dd9171977e2b8", - "md5": "c4c956e1b93f264e40a88eaf11d3bbe8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "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": 21, - "end_line": 21, - "matched_rule": { - "identifier": "public-domain.LICENSE", - "license_choice": false, - "licenses": [ - "public-domain" - ] - } - } - ], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/misc/crypt/crypt_argchk.c", - "type": "file", - "name": "crypt_argchk.c", - "base_name": "crypt_argchk", - "extension": ".c", - "date": "2017-05-18", - "size": 759, - "sha1": "a9569cd9dfdf7f0b33e6b9018e66fac3a0fba285", - "md5": "eee0ee946670549abfa762259368d88b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/misc/crypt/crypt_cipher_descriptor.c", - "type": "file", - "name": "crypt_cipher_descriptor.c", - "base_name": "crypt_cipher_descriptor", - "extension": ".c", - "date": "2017-05-18", - "size": 833, - "sha1": "376e09516276b21b1b53dd877cfcf82fb137083e", - "md5": "983fa34cdb69bb68ad08c130134d1fa9", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/misc/crypt/crypt_cipher_is_valid.c", - "type": "file", - "name": "crypt_cipher_is_valid.c", - "base_name": "crypt_cipher_is_valid", - "extension": ".c", - "date": "2017-05-18", - "size": 1002, - "sha1": "1c88ef2080e56b3390830cc68098ecd7954eee7b", - "md5": "49a58177496ae068cb860527605053de", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/misc/crypt/crypt_find_cipher.c", - "type": "file", - "name": "crypt_find_cipher.c", - "base_name": "crypt_find_cipher", - "extension": ".c", - "date": "2017-05-18", - "size": 1109, - "sha1": "53b6fb785cf851168c65f203e292c9752c8d75cb", - "md5": "086290ec3a8cec88de6fd9e570f3ba18", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/misc/crypt/crypt_find_cipher_any.c", - "type": "file", - "name": "crypt_find_cipher_any.c", - "base_name": "crypt_find_cipher_any", - "extension": ".c", - "date": "2017-05-18", - "size": 1506, - "sha1": "7ba5fefc0bca1cd6771ecc6efdb6923096447916", - "md5": "ca0d5c435e4e63541934f0dd6932c928", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/misc/crypt/crypt_find_cipher_id.c", - "type": "file", - "name": "crypt_find_cipher_id.c", - "base_name": "crypt_find_cipher_id", - "extension": ".c", - "date": "2017-05-18", - "size": 1085, - "sha1": "c88eff93748fd16a124fe6ce75d94589895ce0ca", - "md5": "2c40244d23d1e795eee205a62618511d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/misc/crypt/crypt_find_hash.c", - "type": "file", - "name": "crypt_find_hash.c", - "base_name": "crypt_find_hash", - "extension": ".c", - "date": "2017-05-18", - "size": 1065, - "sha1": "91f15e1317abcf5e8efccda746f548677e33183e", - "md5": "be16c4a7aee3761a8bdab7c1647916ac", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/misc/crypt/crypt_find_hash_any.c", - "type": "file", - "name": "crypt_find_hash_any.c", - "base_name": "crypt_find_hash_any", - "extension": ".c", - "date": "2017-05-18", - "size": 1371, - "sha1": "ec15db1d93afb420f404ff584d7b5785e6679271", - "md5": "5f90a2826ce2600cf0576ec4e3b33c7c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/misc/crypt/crypt_find_hash_id.c", - "type": "file", - "name": "crypt_find_hash_id.c", - "base_name": "crypt_find_hash_id", - "extension": ".c", - "date": "2017-05-18", - "size": 1061, - "sha1": "8725202d6f38e0a5cfbd0d6e0abd4a0cab2a942b", - "md5": "664fa96289b93a18d7d5f049ab46e311", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/misc/crypt/crypt_find_hash_oid.c", - "type": "file", - "name": "crypt_find_hash_oid.c", - "base_name": "crypt_find_hash_oid", - "extension": ".c", - "date": "2017-05-18", - "size": 1030, - "sha1": "903d382f56e3170fa83a03eb3acc51abba56bd72", - "md5": "8a32046035cb98b75033c7456ca98d6e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/misc/crypt/crypt_find_prng.c", - "type": "file", - "name": "crypt_find_prng.c", - "base_name": "crypt_find_prng", - "extension": ".c", - "date": "2017-05-18", - "size": 1068, - "sha1": "586c9a47e69c760f2b77e5c69ca2bcc5669bd109", - "md5": "360ff2dead4668cc48ede5e2f63bcd2c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/misc/crypt/crypt_fsa.c", - "type": "file", - "name": "crypt_fsa.c", - "base_name": "crypt_fsa", - "extension": ".c", - "date": "2017-05-18", - "size": 1394, - "sha1": "5a5dfc946596c449c65747ad99e531e2b1dbbbad", - "md5": "b80df152410e889aafb766edd2d77838", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/misc/crypt/crypt_hash_descriptor.c", - "type": "file", - "name": "crypt_hash_descriptor.c", - "base_name": "crypt_hash_descriptor", - "extension": ".c", - "date": "2017-05-18", - "size": 747, - "sha1": "11ee8f7958d8fea84ae869677edd2db2c6a2da41", - "md5": "b20e9b2ec337a4a1a07198dfb66ab5c4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/misc/crypt/crypt_hash_is_valid.c", - "type": "file", - "name": "crypt_hash_is_valid.c", - "base_name": "crypt_hash_is_valid", - "extension": ".c", - "date": "2017-05-18", - "size": 982, - "sha1": "f9b275d96807060c31837acc0a3653aa45e66fd8", - "md5": "57ef834ee43fc6eac6458b5aeb7fe025", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/misc/crypt/crypt_ltc_mp_descriptor.c", - "type": "file", - "name": "crypt_ltc_mp_descriptor.c", - "base_name": "crypt_ltc_mp_descriptor", - "extension": ".c", - "date": "2017-05-18", - "size": 396, - "sha1": "ad69c0bec9b25701915ee9d13c98411527ec4fe7", - "md5": "5e1a60bd0aa1cfaa86cb0271e6226f33", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/misc/crypt/crypt_prng_descriptor.c", - "type": "file", - "name": "crypt_prng_descriptor.c", - "base_name": "crypt_prng_descriptor", - "extension": ".c", - "date": "2017-05-18", - "size": 743, - "sha1": "9f6311181a5da53af713409a123c2731efc325cd", - "md5": "2ae8942076a5168062b1f8689d2610c7", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/misc/crypt/crypt_prng_is_valid.c", - "type": "file", - "name": "crypt_prng_is_valid.c", - "base_name": "crypt_prng_is_valid", - "extension": ".c", - "date": "2017-05-18", - "size": 980, - "sha1": "ca0b2616f62bc092c8998bf09913482d3e77d3ea", - "md5": "00b1988584433d14e904e3f05d54be0a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/misc/crypt/crypt_register_cipher.c", - "type": "file", - "name": "crypt_register_cipher.c", - "base_name": "crypt_register_cipher", - "extension": ".c", - "date": "2017-05-18", - "size": 1510, - "sha1": "f02706c2aca8a2fa7ef6ba322e13cc891b0d2adc", - "md5": "a1aed79fb5bd9456728518415ba4997d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/misc/crypt/crypt_register_hash.c", - "type": "file", - "name": "crypt_register_hash.c", - "base_name": "crypt_register_hash", - "extension": ".c", - "date": "2017-05-18", - "size": 1475, - "sha1": "ece8be74c8b87c77457dc378eb6839af1bddbf9b", - "md5": "32bced3d5960a358ca46bfad01f347a5", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/misc/crypt/crypt_register_prng.c", - "type": "file", - "name": "crypt_register_prng.c", - "base_name": "crypt_register_prng", - "extension": ".c", - "date": "2017-05-18", - "size": 1477, - "sha1": "8db6a3c7597a195e0c799e53e227a04d93abfcd6", - "md5": "3375753fb42ab467a3db8b57452cf80b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/misc/crypt/crypt_unregister_cipher.c", - "type": "file", - "name": "crypt_unregister_cipher.c", - "base_name": "crypt_unregister_cipher", - "extension": ".c", - "date": "2017-05-18", - "size": 1274, - "sha1": "edfec3dfe7ca5dea27e236f8c85c748236350314", - "md5": "152453527ee324683918683b32b059d9", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/misc/crypt/crypt_unregister_hash.c", - "type": "file", - "name": "crypt_unregister_hash.c", - "base_name": "crypt_unregister_hash", - "extension": ".c", - "date": "2017-05-18", - "size": 1197, - "sha1": "05284a0a3e015a1aad69942052d9fb50522eaecd", - "md5": "1ca40b2e70972819b75d66976d12cf60", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/misc/crypt/crypt_unregister_prng.c", - "type": "file", - "name": "crypt_unregister_prng.c", - "base_name": "crypt_unregister_prng", - "extension": ".c", - "date": "2017-05-18", - "size": 1198, - "sha1": "b3ff268080ebd702a406d38192a5a531668de750", - "md5": "3e1e5822fd7eee8b9a54554bd3f31f1e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/misc/pkcs5/pkcs_5_1.c", - "type": "file", - "name": "pkcs_5_1.c", - "base_name": "pkcs_5_1", - "extension": ".c", - "date": "2017-05-18", - "size": 2921, - "sha1": "1d5a570d44b7ded090f2652ae91a88c592c64e6f", - "md5": "8c5319753840bd627c19b517b148a94c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/misc/pkcs5/pkcs_5_2.c", - "type": "file", - "name": "pkcs_5_2.c", - "base_name": "pkcs_5_2", - "extension": ".c", - "date": "2017-05-18", - "size": 3715, - "sha1": "c7ca81c52988ad0a799350d2a75e0652a86a7c91", - "md5": "b38d81a2ccc3ddf50775e63d039d0277", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes/cbc", - "type": "directory", - "name": "cbc", - "base_name": "cbc", - "extension": "", - "date": null, - "size": 10250, - "sha1": null, - "md5": null, - "files_count": 6, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes/cfb", - "type": "directory", - "name": "cfb", - "base_name": "cfb", - "extension": "", - "date": null, - "size": 8476, - "sha1": null, - "md5": null, - "files_count": 6, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes/ctr", - "type": "directory", - "name": "ctr", - "base_name": "ctr", - "extension": "", - "date": null, - "size": 13135, - "sha1": null, - "md5": null, - "files_count": 7, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes/ecb", - "type": "directory", - "name": "ecb", - "base_name": "ecb", - "extension": "", - "date": null, - "size": 5927, - "sha1": null, - "md5": null, - "files_count": 4, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes/f8", - "type": "directory", - "name": "f8", - "base_name": "f8", - "extension": "", - "date": null, - "size": 13078, - "sha1": null, - "md5": null, - "files_count": 7, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes/lrw", - "type": "directory", - "name": "lrw", - "base_name": "lrw", - "extension": "", - "date": null, - "size": 17480, - "sha1": null, - "md5": null, - "files_count": 8, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes/ofb", - "type": "directory", - "name": "ofb", - "base_name": "ofb", - "extension": "", - "date": null, - "size": 7599, - "sha1": null, - "md5": null, - "files_count": 6, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes/cbc/cbc_decrypt.c", - "type": "file", - "name": "cbc_decrypt.c", - "base_name": "cbc_decrypt", - "extension": ".c", - "date": "2017-05-18", - "size": 2687, - "sha1": "73482ab2f29c837891f25af40cb190e6ea888522", - "md5": "cfd2293bbde2eba92ba99a2862a7275b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes/cbc/cbc_done.c", - "type": "file", - "name": "cbc_done.c", - "base_name": "cbc_done", - "extension": ".c", - "date": "2017-05-18", - "size": 932, - "sha1": "8c1e6358f15c4a5a9783ed415cb2b93a290a333d", - "md5": "e94bd99073775830fa5aa50fb4e5a90a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes/cbc/cbc_encrypt.c", - "type": "file", - "name": "cbc_encrypt.c", - "base_name": "cbc_encrypt", - "extension": ".c", - "date": "2017-05-18", - "size": 2719, - "sha1": "bcafff17b74d9ba825073500ff913367e182a5dd", - "md5": "7e4379711f22616fed32e50697aa8919", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes/cbc/cbc_getiv.c", - "type": "file", - "name": "cbc_getiv.c", - "base_name": "cbc_getiv", - "extension": ".c", - "date": "2017-05-18", - "size": 1196, - "sha1": "77cf86ab104d3675c9f04fb42e765b350f56d45f", - "md5": "834db84b4daff372cfaec62e1e2511d6", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes/cbc/cbc_setiv.c", - "type": "file", - "name": "cbc_setiv.c", - "base_name": "cbc_setiv", - "extension": ".c", - "date": "2017-05-18", - "size": 1047, - "sha1": "92a9fcb685824502b80d28c15e592694347ba475", - "md5": "2314ae0d3bad29019ff3f9953a842f1b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes/cbc/cbc_start.c", - "type": "file", - "name": "cbc_start.c", - "base_name": "cbc_start", - "extension": ".c", - "date": "2017-05-18", - "size": 1669, - "sha1": "05b9c9849c104f34f4c086c99fa3104239ef4cf7", - "md5": "dc0ec0d8fb163d3fd1d0245f7000887a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes/cfb/cfb_decrypt.c", - "type": "file", - "name": "cfb_decrypt.c", - "base_name": "cfb_decrypt", - "extension": ".c", - "date": "2017-05-18", - "size": 1691, - "sha1": "4b9f4fbf7713c6f4cd52fcd6b392d455ec97c68c", - "md5": "fd7b2ded5809500aaa4cfaa3bebc8650", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes/cfb/cfb_done.c", - "type": "file", - "name": "cfb_done.c", - "base_name": "cfb_done", - "extension": ".c", - "date": "2017-05-18", - "size": 932, - "sha1": "f595aff2ca992e578b75eeed5e3304ed7c40b59b", - "md5": "b47e630d3d775a0e6a13f2df991705eb", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes/cfb/cfb_encrypt.c", - "type": "file", - "name": "cfb_encrypt.c", - "base_name": "cfb_encrypt", - "extension": ".c", - "date": "2017-05-18", - "size": 1669, - "sha1": "62874f53fd3fe84ff5062f99f83a692d23df0202", - "md5": "c0e78debaf10373d7437dfedcdb4029a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes/cfb/cfb_getiv.c", - "type": "file", - "name": "cfb_getiv.c", - "base_name": "cfb_getiv", - "extension": ".c", - "date": "2017-05-18", - "size": 1196, - "sha1": "f02f289bfeedee1bfb3c5e1e359a42c009e1f017", - "md5": "36ebcbd8b0e829fa8da776b6e9bad070", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes/cfb/cfb_setiv.c", - "type": "file", - "name": "cfb_setiv.c", - "base_name": "cfb_setiv", - "extension": ".c", - "date": "2017-05-18", - "size": 1231, - "sha1": "925b52c8cf11b272cc19a2871dc4d66af91fcdcd", - "md5": "a0bb07bb140c1dca1af499e37f489cc2", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes/cfb/cfb_start.c", - "type": "file", - "name": "cfb_start.c", - "base_name": "cfb_start", - "extension": ".c", - "date": "2017-05-18", - "size": 1757, - "sha1": "237d474bbafa0c2d5b648a4d7693e368a1e6a18d", - "md5": "ae23e0c357773ac4462e3d5070bb50ef", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes/ctr/ctr_decrypt.c", - "type": "file", - "name": "ctr_decrypt.c", - "base_name": "ctr_decrypt", - "extension": ".c", - "date": "2017-05-18", - "size": 1023, - "sha1": "4defa9664980a0e122d59e5da575396e58a78839", - "md5": "4086e96e92595733a628f88cb971167c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes/ctr/ctr_done.c", - "type": "file", - "name": "ctr_done.c", - "base_name": "ctr_done", - "extension": ".c", - "date": "2017-05-18", - "size": 932, - "sha1": "11f780e866d75a0be96db9662878aa36b9b38d9c", - "md5": "baa8aebbc1a0e0fedf5e705525cebd4f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes/ctr/ctr_encrypt.c", - "type": "file", - "name": "ctr_encrypt.c", - "base_name": "ctr_encrypt", - "extension": ".c", - "date": "2017-05-18", - "size": 3460, - "sha1": "510cea135a2cc6884eb2d056793556e55ea4f30f", - "md5": "974a577c8a97ac0a631232b28c2ad2e5", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes/ctr/ctr_getiv.c", - "type": "file", - "name": "ctr_getiv.c", - "base_name": "ctr_getiv", - "extension": ".c", - "date": "2017-05-18", - "size": 1197, - "sha1": "8d4c04c9b771ffa7a9b9dbd6411021ba4a60a9c8", - "md5": "aa93fa8d6f620ca52aa45b2bb0f4f7f6", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes/ctr/ctr_setiv.c", - "type": "file", - "name": "ctr_setiv.c", - "base_name": "ctr_setiv", - "extension": ".c", - "date": "2017-05-18", - "size": 1296, - "sha1": "8416c4c290b9b47a3ce094663d271ea6f87065ce", - "md5": "11642a3cd1ed879921536f371130aed5", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes/ctr/ctr_start.c", - "type": "file", - "name": "ctr_start.c", - "base_name": "ctr_start", - "extension": ".c", - "date": "2017-05-18", - "size": 2671, - "sha1": "7d007db886037e5d43642d11dd4bf305a49d2c80", - "md5": "240040591465dbdf4b84026d4e05bafd", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes/ctr/ctr_test.c", - "type": "file", - "name": "ctr_test.c", - "base_name": "ctr_test", - "extension": ".c", - "date": "2017-05-18", - "size": 2556, - "sha1": "80b2731254ba163cf152132cf4464fb6735a6926", - "md5": "66593a3418d7554df73b481efe6dc04c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes/ecb/ecb_decrypt.c", - "type": "file", - "name": "ecb_decrypt.c", - "base_name": "ecb_decrypt", - "extension": ".c", - "date": "2017-05-18", - "size": 1818, - "sha1": "a39de0a5566cafb2c28310f1f266ed201a48cbbb", - "md5": "fd9417d2843eb2cfb91b7b486c8d89f0", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes/ecb/ecb_done.c", - "type": "file", - "name": "ecb_done.c", - "base_name": "ecb_done", - "extension": ".c", - "date": "2017-05-18", - "size": 932, - "sha1": "a119fcdd6cc572a8ed96883aebaf892cda5f28be", - "md5": "b24129996e3235fc473db4c1bd75de53", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes/ecb/ecb_encrypt.c", - "type": "file", - "name": "ecb_encrypt.c", - "base_name": "ecb_encrypt", - "extension": ".c", - "date": "2017-05-18", - "size": 1818, - "sha1": "0a2eb5ef96a5941a85cc40ea836ede9b6aacb976", - "md5": "3beb0add369b4326345f45a59de4b3cb", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes/ecb/ecb_start.c", - "type": "file", - "name": "ecb_start.c", - "base_name": "ecb_start", - "extension": ".c", - "date": "2017-05-18", - "size": 1359, - "sha1": "a39370959ef8f92204c71fa0a6aa9a372395f25f", - "md5": "ff024ea3b583c6f6ca53b374a3db1e00", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes/f8/f8_decrypt.c", - "type": "file", - "name": "f8_decrypt.c", - "base_name": "f8_decrypt", - "extension": ".c", - "date": "2017-05-18", - "size": 1012, - "sha1": "5b3d8f8224d991d434f777de9291db5a5fb37657", - "md5": "01d141c78cc8ff4513ec6e0f58032f06", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes/f8/f8_done.c", - "type": "file", - "name": "f8_done.c", - "base_name": "f8_done", - "extension": ".c", - "date": "2017-05-18", - "size": 918, - "sha1": "e23da4797f5d079db18c8426363d69d4dab66417", - "md5": "c49a5f94cc4700e332e164832f155b81", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes/f8/f8_encrypt.c", - "type": "file", - "name": "f8_encrypt.c", - "base_name": "f8_encrypt", - "extension": ".c", - "date": "2017-05-18", - "size": 3102, - "sha1": "6a355139c6c4f879ff96c3ea514320aa02c71b55", - "md5": "84db75811bf94447376ee455451023c8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes/f8/f8_getiv.c", - "type": "file", - "name": "f8_getiv.c", - "base_name": "f8_getiv", - "extension": ".c", - "date": "2017-05-18", - "size": 1183, - "sha1": "72bb1598a9e4e7d412a81ad5cb989d7e8cff7c04", - "md5": "cb4c8a9d31304800fee6f2b535389ac8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes/f8/f8_setiv.c", - "type": "file", - "name": "f8_setiv.c", - "base_name": "f8_setiv", - "extension": ".c", - "date": "2017-05-18", - "size": 1202, - "sha1": "6a57a8289bbe366a53e0817538bbb48a01ae0ed1", - "md5": "2a83d1869c257f84d5c8e3a784b56f0b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes/f8/f8_start.c", - "type": "file", - "name": "f8_start.c", - "base_name": "f8_start", - "extension": ".c", - "date": "2017-05-18", - "size": 2992, - "sha1": "da5abf6b82bd8af5e33dfaecd7e4a8c8c87c5edc", - "md5": "1a07898896730332e0b855b5df8a5145", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes/f8/f8_test_mode.c", - "type": "file", - "name": "f8_test_mode.c", - "base_name": "f8_test_mode", - "extension": ".c", - "date": "2017-05-18", - "size": 2669, - "sha1": "ca62e98408da29a1f66ef8c09972a375ed8a4b73", - "md5": "72edacc81231019015112947e4500106", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes/lrw/lrw_decrypt.c", - "type": "file", - "name": "lrw_decrypt.c", - "base_name": "lrw_decrypt", - "extension": ".c", - "date": "2017-05-18", - "size": 1317, - "sha1": "ee281c6f095a1c26e0f01fe711c26b873203d374", - "md5": "c0c4dcc85718da9802fb6c05c1ade5ad", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes/lrw/lrw_done.c", - "type": "file", - "name": "lrw_done.c", - "base_name": "lrw_done", - "extension": ".c", - "date": "2017-05-18", - "size": 939, - "sha1": "0dec0f0f47a7a4406dee9b8a229fe28a216e551b", - "md5": "439f6302359d2e71077e7c741f572ebe", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes/lrw/lrw_encrypt.c", - "type": "file", - "name": "lrw_encrypt.c", - "base_name": "lrw_encrypt", - "extension": ".c", - "date": "2017-05-18", - "size": 1317, - "sha1": "a87ce4cff93dad05a0dfe7ebb058c54b080fe56d", - "md5": "4935f213e2bf8e16c4dffd687daef4a9", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes/lrw/lrw_getiv.c", - "type": "file", - "name": "lrw_getiv.c", - "base_name": "lrw_getiv", - "extension": ".c", - "date": "2017-05-18", - "size": 1118, - "sha1": "de5f61dbae781250e4d939ba9436fd35c38a60ce", - "md5": "aa6df7280af70aa43db038ad2913e096", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes/lrw/lrw_process.c", - "type": "file", - "name": "lrw_process.c", - "base_name": "lrw_process", - "extension": ".c", - "date": "2017-05-18", - "size": 3304, - "sha1": "415dc7f4c5040b9925d6b09fa88d534123f4232e", - "md5": "63e99f0cd8c48a3972694f608e711769", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes/lrw/lrw_setiv.c", - "type": "file", - "name": "lrw_setiv.c", - "base_name": "lrw_setiv", - "extension": ".c", - "date": "2017-05-18", - "size": 1981, - "sha1": "477b68dd0d08a379ad2f8e2380753385d0728c53", - "md5": "0218ade881bf0ceba3c74129e522833b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes/lrw/lrw_start.c", - "type": "file", - "name": "lrw_start.c", - "base_name": "lrw_start", - "extension": ".c", - "date": "2017-05-18", - "size": 2872, - "sha1": "d32c1bec19697fe597e714af4104c0a034a85f69", - "md5": "678fad594363cc93d8bda1a25b93a5d5", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes/lrw/lrw_test.c", - "type": "file", - "name": "lrw_test.c", - "base_name": "lrw_test", - "extension": ".c", - "date": "2017-05-18", - "size": 4632, - "sha1": "2e77cea1fd004fd9b3751cc5bc294a79eef01169", - "md5": "0efae049728e757c6e06798cfb4ceb17", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes/ofb/ofb_decrypt.c", - "type": "file", - "name": "ofb_decrypt.c", - "base_name": "ofb_decrypt", - "extension": ".c", - "date": "2017-05-18", - "size": 1025, - "sha1": "d1741663e5c03a1be9c42dfe01dc8d76884816da", - "md5": "790e94b87a224e838c94ac90219582b5", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes/ofb/ofb_done.c", - "type": "file", - "name": "ofb_done.c", - "base_name": "ofb_done", - "extension": ".c", - "date": "2017-05-18", - "size": 932, - "sha1": "bf25aad3eda8cd02db249f69e7b39671e4735d73", - "md5": "98fd00d0a8cff493476db523d5907568", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes/ofb/ofb_encrypt.c", - "type": "file", - "name": "ofb_encrypt.c", - "base_name": "ofb_encrypt", - "extension": ".c", - "date": "2017-05-18", - "size": 1602, - "sha1": "a02bbad65db4137f93f7a65ce40b8931f98f8208", - "md5": "c30adf81e0c9e71f870737ce451e16e3", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes/ofb/ofb_getiv.c", - "type": "file", - "name": "ofb_getiv.c", - "base_name": "ofb_getiv", - "extension": ".c", - "date": "2017-05-18", - "size": 1196, - "sha1": "f025935e1336f76565126bf7d505ed44100ea921", - "md5": "616eea4c9775124720607d92210c4155", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes/ofb/ofb_setiv.c", - "type": "file", - "name": "ofb_setiv.c", - "base_name": "ofb_setiv", - "extension": ".c", - "date": "2017-05-18", - "size": 1219, - "sha1": "ac6eaf6f26f4b2ae5e9a9d27293977a7f958e3c7", - "md5": "60b192fe8ccee29d430eb86962ef4a40", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/modes/ofb/ofb_start.c", - "type": "file", - "name": "ofb_start.c", - "base_name": "ofb_start", - "extension": ".c", - "date": "2017-05-18", - "size": 1625, - "sha1": "895e9ac0c7f81a9b51b8dc9c16cef2c0a4c7a206", - "md5": "a1b6c5b60c1d81719900c7c9a9480a88", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1", - "type": "directory", - "name": "asn1", - "base_name": "asn1", - "extension": "", - "date": null, - "size": 120616, - "sha1": null, - "md5": null, - "files_count": 40, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/dsa", - "type": "directory", - "name": "dsa", - "base_name": "dsa", - "extension": "", - "date": null, - "size": 32138, - "sha1": null, - "md5": null, - "files_count": 10, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/ecc", - "type": "directory", - "name": "ecc", - "base_name": "ecc", - "extension": "", - "date": null, - "size": 87051, - "sha1": null, - "md5": null, - "files_count": 23, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/katja", - "type": "directory", - "name": "katja", - "base_name": "katja", - "extension": "", - "date": null, - "size": 19359, - "sha1": null, - "md5": null, - "files_count": 7, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/pkcs1", - "type": "directory", - "name": "pkcs1", - "base_name": "pkcs1", - "extension": "", - "date": null, - "size": 31089, - "sha1": null, - "md5": null, - "files_count": 9, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/rsa", - "type": "directory", - "name": "rsa", - "base_name": "rsa", - "extension": "", - "date": null, - "size": 32527, - "sha1": null, - "md5": null, - "files_count": 9, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der", - "type": "directory", - "name": "der", - "base_name": "der", - "extension": "", - "date": null, - "size": 120616, - "sha1": null, - "md5": null, - "files_count": 40, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/bit", - "type": "directory", - "name": "bit", - "base_name": "bit", - "extension": "", - "date": null, - "size": 6119, - "sha1": null, - "md5": null, - "files_count": 3, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/boolean", - "type": "directory", - "name": "boolean", - "base_name": "boolean", - "extension": "", - "date": null, - "size": 3290, - "sha1": null, - "md5": null, - "files_count": 3, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/choice", - "type": "directory", - "name": "choice", - "base_name": "choice", - "extension": "", - "date": null, - "size": 5827, - "sha1": null, - "md5": null, - "files_count": 1, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/ia5", - "type": "directory", - "name": "ia5", - "base_name": "ia5", - "extension": "", - "date": null, - "size": 8108, - "sha1": null, - "md5": null, - "files_count": 3, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/integer", - "type": "directory", - "name": "integer", - "base_name": "integer", - "extension": "", - "date": null, - "size": 8265, - "sha1": null, - "md5": null, - "files_count": 3, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/object_identifier", - "type": "directory", - "name": "object_identifier", - "base_name": "object_identifier", - "extension": "", - "date": null, - "size": 7578, - "sha1": null, - "md5": null, - "files_count": 3, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/octet", - "type": "directory", - "name": "octet", - "base_name": "octet", - "extension": "", - "date": null, - "size": 5747, - "sha1": null, - "md5": null, - "files_count": 3, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/printable_string", - "type": "directory", - "name": "printable_string", - "base_name": "printable_string", - "extension": "", - "date": null, - "size": 7966, - "sha1": null, - "md5": null, - "files_count": 3, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/sequence", - "type": "directory", - "name": "sequence", - "base_name": "sequence", - "extension": "", - "date": null, - "size": 41839, - "sha1": null, - "md5": null, - "files_count": 7, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/set", - "type": "directory", - "name": "set", - "base_name": "set", - "extension": "", - "date": null, - "size": 6842, - "sha1": null, - "md5": null, - "files_count": 2, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/short_integer", - "type": "directory", - "name": "short_integer", - "base_name": "short_integer", - "extension": "", - "date": null, - "size": 5041, - "sha1": null, - "md5": null, - "files_count": 3, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/utctime", - "type": "directory", - "name": "utctime", - "base_name": "utctime", - "extension": "", - "date": null, - "size": 6453, - "sha1": null, - "md5": null, - "files_count": 3, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/utf8", - "type": "directory", - "name": "utf8", - "base_name": "utf8", - "extension": "", - "date": null, - "size": 7541, - "sha1": null, - "md5": null, - "files_count": 3, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/bit/der_decode_bit_string.c", - "type": "file", - "name": "der_decode_bit_string.c", - "base_name": "der_decode_bit_string", - "extension": ".c", - "date": "2017-05-18", - "size": 2406, - "sha1": "1ff578ba1ccab2c4f4b9abe19e9a063a6e20d75a", - "md5": "b7f1f4fbc2f8e6aa0fbf3b70548f3f0d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/bit/der_encode_bit_string.c", - "type": "file", - "name": "der_encode_bit_string.c", - "base_name": "der_encode_bit_string", - "extension": ".c", - "date": "2017-05-18", - "size": 2297, - "sha1": "59e94bfbd2c631f08ed2484fb152318cc51cc39e", - "md5": "e8345572caa21f2a98af71df718be14a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/bit/der_length_bit_string.c", - "type": "file", - "name": "der_length_bit_string.c", - "base_name": "der_length_bit_string", - "extension": ".c", - "date": "2017-05-18", - "size": 1416, - "sha1": "2cb3162776adb845f6e4cc06c3e7b4700c5b5bb7", - "md5": "42a0903455b9530112ae594d698b4726", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/boolean/der_decode_boolean.c", - "type": "file", - "name": "der_decode_boolean.c", - "base_name": "der_decode_boolean", - "extension": ".c", - "date": "2017-05-18", - "size": 1195, - "sha1": "2eea358b94cf415c41d059a579f8d6f8851aa4c7", - "md5": "98d3702d43ba8ed02d3c44c0fcbdf7ff", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/boolean/der_encode_boolean.c", - "type": "file", - "name": "der_encode_boolean.c", - "base_name": "der_encode_boolean", - "extension": ".c", - "date": "2017-05-18", - "size": 1221, - "sha1": "6000c9c74d282a78b3edd9385749decbbd40f42c", - "md5": "0b7092dbabe5bc877d7a36dc4bd46da2", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/boolean/der_length_boolean.c", - "type": "file", - "name": "der_length_boolean.c", - "base_name": "der_length_boolean", - "extension": ".c", - "date": "2017-05-18", - "size": 874, - "sha1": "4a3e80a26a1bcb7e7f921a78ad812b1a70b098ee", - "md5": "98f0245bbdf0f16ecdd2ece083dd05e5", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/choice/der_decode_choice.c", - "type": "file", - "name": "der_decode_choice.c", - "base_name": "der_decode_choice", - "extension": ".c", - "date": "2017-05-18", - "size": 5827, - "sha1": "378b899e68804deed2c59fe6c8523cabf242ef95", - "md5": "3a3ba59d8d92d99f12fa84d278d9f7f3", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/ia5/der_decode_ia5_string.c", - "type": "file", - "name": "der_decode_ia5_string.c", - "base_name": "der_decode_ia5_string", - "extension": ".c", - "date": "2017-05-18", - "size": 2188, - "sha1": "fbdade5380d585149ecad3b42f669315d6048eaf", - "md5": "da706957fbb3cc02524f267159137eb7", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/ia5/der_encode_ia5_string.c", - "type": "file", - "name": "der_encode_ia5_string.c", - "base_name": "der_encode_ia5_string", - "extension": ".c", - "date": "2017-05-18", - "size": 2239, - "sha1": "e47032a00459ea8e23b74799c480e732f4fd2602", - "md5": "3099d5a7a3df34723c1f7699220bf061", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/ia5/der_length_ia5_string.c", - "type": "file", - "name": "der_length_ia5_string.c", - "base_name": "der_length_ia5_string", - "extension": ".c", - "date": "2017-05-18", - "size": 3681, - "sha1": "d9ac25a892929334a24e0a254a7d1aa4a71af8eb", - "md5": "67b3b3b1ef27a729563468d0f32fa655", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/integer/der_decode_integer.c", - "type": "file", - "name": "der_decode_integer.c", - "base_name": "der_decode_integer", - "extension": ".c", - "date": "2017-05-18", - "size": 2573, - "sha1": "bd0603d3e2309f2f9509232a400d4a9e68b831fa", - "md5": "e2d1521ce143365c9f759bcb436139d8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/integer/der_encode_integer.c", - "type": "file", - "name": "der_encode_integer.c", - "base_name": "der_encode_integer", - "extension": ".c", - "date": "2017-05-18", - "size": 3624, - "sha1": "496a700c80fba5ea89110aea5652115ebfaa5539", - "md5": "b1622a0e1aefd842b0a002375eaec56a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/integer/der_length_integer.c", - "type": "file", - "name": "der_length_integer.c", - "base_name": "der_length_integer", - "extension": ".c", - "date": "2017-05-18", - "size": 2068, - "sha1": "cb949a8c842170479cacdf590312ecf884f7d5cd", - "md5": "196ce2969a7db513774c243dad4a0e07", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/object_identifier/der_decode_object_identifier.c", - "type": "file", - "name": "der_decode_object_identifier.c", - "base_name": "der_decode_object_identifier", - "extension": ".c", - "date": "2017-05-18", - "size": 2427, - "sha1": "528f069de545459d617e4269f556d426f9e4d3c8", - "md5": "e72864718904035d48f926b253f53e47", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/object_identifier/der_encode_object_identifier.c", - "type": "file", - "name": "der_encode_object_identifier.c", - "base_name": "der_encode_object_identifier", - "extension": ".c", - "date": "2017-05-18", - "size": 3019, - "sha1": "4479c9cfa5d0aefaa1be113db4d47a73e9b74b22", - "md5": "c8dda3bb44bdfe15d5de083be5933673", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/object_identifier/der_length_object_identifier.c", - "type": "file", - "name": "der_length_object_identifier.c", - "base_name": "der_length_object_identifier", - "extension": ".c", - "date": "2017-05-18", - "size": 2132, - "sha1": "208591efd68a16ff2268ad9b3b1fe77b64176878", - "md5": "b1fe14358709eb14da3f728980abd7c2", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/octet/der_decode_octet_string.c", - "type": "file", - "name": "der_decode_octet_string.c", - "base_name": "der_decode_octet_string", - "extension": ".c", - "date": "2017-05-18", - "size": 2082, - "sha1": "699074bcb82b20e2141f1e25b1e12bac9dfa7e86", - "md5": "157fb107c7230fa215ea7098e6e90917", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/octet/der_encode_octet_string.c", - "type": "file", - "name": "der_encode_octet_string.c", - "base_name": "der_encode_octet_string", - "extension": ".c", - "date": "2017-05-18", - "size": 2241, - "sha1": "6592dbb32aa23b9ee5a9a015075490d2a4dc4e31", - "md5": "daef79e6713b0589ff80887033c61588", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/octet/der_length_octet_string.c", - "type": "file", - "name": "der_length_octet_string.c", - "base_name": "der_length_octet_string", - "extension": ".c", - "date": "2017-05-18", - "size": 1424, - "sha1": "dbc2921fce4ca84abf92537163b998a496ca770f", - "md5": "168ebe833c73667b8726954f7e433c84", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/printable_string/der_decode_printable_string.c", - "type": "file", - "name": "der_decode_printable_string.c", - "base_name": "der_decode_printable_string", - "extension": ".c", - "date": "2017-05-18", - "size": 2249, - "sha1": "eb0292990a579a9448d9db5692b3b6ee2f3f47d3", - "md5": "03e7ca803515e4d2fa10d0626083af18", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/printable_string/der_encode_printable_string.c", - "type": "file", - "name": "der_encode_printable_string.c", - "base_name": "der_encode_printable_string", - "extension": ".c", - "date": "2017-05-18", - "size": 2318, - "sha1": "702be1d50fcd5a49b393afa8e67d28a81dad48ce", - "md5": "325e974b4a854cdc5acf3dd1fab40700", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/printable_string/der_length_printable_string.c", - "type": "file", - "name": "der_length_printable_string.c", - "base_name": "der_length_printable_string", - "extension": ".c", - "date": "2017-05-18", - "size": 3399, - "sha1": "3eb77b133997c98c275e0e8cc2326a693ce14615", - "md5": "474caa026252dd979af6f98053f13fc8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/sequence/der_decode_sequence_ex.c", - "type": "file", - "name": "der_decode_sequence_ex.c", - "base_name": "der_decode_sequence_ex", - "extension": ".c", - "date": "2017-05-18", - "size": 8726, - "sha1": "e57db4e01479d4648d1ae7fdee77985a858aea0e", - "md5": "7fd6c8b03ed828486b1206907831e2ca", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/sequence/der_decode_sequence_flexi.c", - "type": "file", - "name": "der_decode_sequence_flexi.c", - "base_name": "der_decode_sequence_flexi", - "extension": ".c", - "date": "2017-05-18", - "size": 10618, - "sha1": "b29c271df5acb01c3caebd030ddf06d43b23e1ff", - "md5": "926305fcd0bc952c8bb291f492336690", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/sequence/der_decode_sequence_multi.c", - "type": "file", - "name": "der_decode_sequence_multi.c", - "base_name": "der_decode_sequence_multi", - "extension": ".c", - "date": "2017-05-18", - "size": 3539, - "sha1": "2e0d9569aaad6e40d0d139838377056eab4001f0", - "md5": "97125616d07c71ac3cc3cf0999e4b583", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/sequence/der_encode_sequence_ex.c", - "type": "file", - "name": "der_encode_sequence_ex.c", - "base_name": "der_encode_sequence_ex", - "extension": ".c", - "date": "2017-05-18", - "size": 9331, - "sha1": "e2b1d723d8efe6a475c8fd3eb1da6c9face4fb5a", - "md5": "c0e69a1d69a8ad769991b2665e0f6645", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/sequence/der_encode_sequence_multi.c", - "type": "file", - "name": "der_encode_sequence_multi.c", - "base_name": "der_encode_sequence_multi", - "extension": ".c", - "date": "2017-05-18", - "size": 3546, - "sha1": "229a4650ba2c1704cfbf53dc03aac66293137b9b", - "md5": "886e80ac2e00a68cf433c2307cce6589", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/sequence/der_length_sequence.c", - "type": "file", - "name": "der_length_sequence.c", - "base_name": "der_length_sequence", - "extension": ".c", - "date": "2017-05-18", - "size": 4406, - "sha1": "0986fc04e07d283d3873f176a9da24a7e24a8ebb", - "md5": "9baacbee036bc4fcc9d6c7fd6a79a705", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/sequence/der_sequence_free.c", - "type": "file", - "name": "der_sequence_free.c", - "base_name": "der_sequence_free", - "extension": ".c", - "date": "2017-05-18", - "size": 1673, - "sha1": "d56dc1bd46e97a9e5f16750ecac83600d6f190fe", - "md5": "99faa2613e719bab5220be7bd421ef99", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/set/der_encode_set.c", - "type": "file", - "name": "der_encode_set.c", - "base_name": "der_encode_set", - "extension": ".c", - "date": "2017-05-18", - "size": 3014, - "sha1": "5c4307fa95cb050e98aeb9c26884fc5b48cddfba", - "md5": "466e937cdb95c5a132f2a07eed8a44c1", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/set/der_encode_setof.c", - "type": "file", - "name": "der_encode_setof.c", - "base_name": "der_encode_setof", - "extension": ".c", - "date": "2017-05-18", - "size": 3828, - "sha1": "d45c3b2bbdacb339113099bc02ba9d38a81a99c6", - "md5": "1e7e13c21f8c989f91fb7bac4e5ebace", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/short_integer/der_decode_short_integer.c", - "type": "file", - "name": "der_decode_short_integer.c", - "base_name": "der_decode_short_integer", - "extension": ".c", - "date": "2017-05-18", - "size": 1442, - "sha1": "a17848c66fd3fe0579ff78e685a81e98db06989f", - "md5": "b194bc0661a49adb5c5f9099d137b28c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/short_integer/der_encode_short_integer.c", - "type": "file", - "name": "der_encode_short_integer.c", - "base_name": "der_encode_short_integer", - "extension": ".c", - "date": "2017-05-18", - "size": 2141, - "sha1": "a06f52e1d57c327119c32f382004cd9de4614297", - "md5": "66d2abd488ad44e898b56709182e09fa", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/short_integer/der_length_short_integer.c", - "type": "file", - "name": "der_length_short_integer.c", - "base_name": "der_length_short_integer", - "extension": ".c", - "date": "2017-05-18", - "size": 1458, - "sha1": "a33ab095ae53aa266e4bea436546eb86fde38cc4", - "md5": "dfc9d279d7407d2a0886ad289988196e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/utctime/der_decode_utctime.c", - "type": "file", - "name": "der_decode_utctime.c", - "base_name": "der_decode_utctime", - "extension": ".c", - "date": "2017-05-18", - "size": 3109, - "sha1": "87393e9ccb05f14bc604524b90bc6831f622b60e", - "md5": "09660ab7f4a3319d256247e43ac558dc", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/utctime/der_encode_utctime.c", - "type": "file", - "name": "der_encode_utctime.c", - "base_name": "der_encode_utctime", - "extension": ".c", - "date": "2017-05-18", - "size": 2161, - "sha1": "8a7d03bc5ab17beb9cca6dd38b1409149b8f6345", - "md5": "1335dc9d5bffba500a0d8785189b5d11", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/utctime/der_length_utctime.c", - "type": "file", - "name": "der_length_utctime.c", - "base_name": "der_length_utctime", - "extension": ".c", - "date": "2017-05-18", - "size": 1183, - "sha1": "35bee07689b85a440369b6f08a207e7a5ad735a0", - "md5": "845ed2d534cceac2e277a6db4e72e8fa", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/utf8/der_decode_utf8_string.c", - "type": "file", - "name": "der_decode_utf8_string.c", - "base_name": "der_decode_utf8_string", - "extension": ".c", - "date": "2017-05-18", - "size": 2628, - "sha1": "7c057bb8c3b96c1f9217aa88420f7e21d5272398", - "md5": "68298f911267f59241ae5e79f8893a52", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/utf8/der_encode_utf8_string.c", - "type": "file", - "name": "der_encode_utf8_string.c", - "base_name": "der_encode_utf8_string", - "extension": ".c", - "date": "2017-05-18", - "size": 2874, - "sha1": "fcc60b310879bf890e8e1846e163e4088b40b5a1", - "md5": "a9dd7f71c3bc8bb110b25f2369c89061", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/asn1/der/utf8/der_length_utf8_string.c", - "type": "file", - "name": "der_length_utf8_string.c", - "base_name": "der_length_utf8_string", - "extension": ".c", - "date": "2017-05-18", - "size": 2039, - "sha1": "c01a1fa93fab44eba76b53f1a65329c8794fe0c3", - "md5": "66948b9603c6d72791a1537555a31d37", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/dsa/dsa_decrypt_key.c", - "type": "file", - "name": "dsa_decrypt_key.c", - "base_name": "dsa_decrypt_key", - "extension": ".c", - "date": "2017-05-18", - "size": 3564, - "sha1": "96e0ded66cb7b6c6a426d4695b9287489937111e", - "md5": "7addd0722b6ff76d7e2fcaaa39b64873", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/dsa/dsa_encrypt_key.c", - "type": "file", - "name": "dsa_encrypt_key.c", - "base_name": "dsa_encrypt_key", - "extension": ".c", - "date": "2017-05-18", - "size": 3982, - "sha1": "8fd95a371128dfe916e1634b1a068d98122a8bb2", - "md5": "9ee2fc520b7d2358a4362305c2921459", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/dsa/dsa_export.c", - "type": "file", - "name": "dsa_export.c", - "base_name": "dsa_export", - "extension": ".c", - "date": "2017-05-18", - "size": 2411, - "sha1": "b1f0a6281b5bfdeb6e1eedd647d3ea78ee089386", - "md5": "2ba5bfee96736e350a08f215852bce30", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/dsa/dsa_free.c", - "type": "file", - "name": "dsa_free.c", - "base_name": "dsa_free", - "extension": ".c", - "date": "2017-05-18", - "size": 783, - "sha1": "4fce462f2d33d26c9433ba6c1c33490ede88f7a9", - "md5": "fcc45b41d99f1038d50ce983b974a355", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/dsa/dsa_import.c", - "type": "file", - "name": "dsa_import.c", - "base_name": "dsa_import", - "extension": ".c", - "date": "2017-05-18", - "size": 3049, - "sha1": "5073c7e94242600163cee2b74ca97f608e1b97c5", - "md5": "765a9992dd9b66b676f3939760219a5b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/dsa/dsa_make_key.c", - "type": "file", - "name": "dsa_make_key.c", - "base_name": "dsa_make_key", - "extension": ".c", - "date": "2017-05-18", - "size": 4484, - "sha1": "802b715e6762b4cbea9e1ea92d7e32c436604652", - "md5": "982555ecab89c4b45340396243059712", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/dsa/dsa_shared_secret.c", - "type": "file", - "name": "dsa_shared_secret.c", - "base_name": "dsa_shared_secret", - "extension": ".c", - "date": "2017-05-18", - "size": 2018, - "sha1": "523c287d7b5f58b395aa73a2c280ae7e52339f66", - "md5": "4aac23f506f9eea7768cf6db19729647", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/dsa/dsa_sign_hash.c", - "type": "file", - "name": "dsa_sign_hash.c", - "base_name": "dsa_sign_hash", - "extension": ".c", - "date": "2017-05-18", - "size": 4989, - "sha1": "a96995cd3868b8e7a3119f0eaa766db5a371bdba", - "md5": "b6f40273b21e60309f1bf22788625e99", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/dsa/dsa_verify_hash.c", - "type": "file", - "name": "dsa_verify_hash.c", - "base_name": "dsa_verify_hash", - "extension": ".c", - "date": "2017-05-18", - "size": 4123, - "sha1": "abc2b286e0c38d0477e66e9eff654c429b75b32f", - "md5": "a56aff1f23bd270daec5654291fb0a93", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/dsa/dsa_verify_key.c", - "type": "file", - "name": "dsa_verify_key.c", - "base_name": "dsa_verify_key", - "extension": ".c", - "date": "2017-05-18", - "size": 2735, - "sha1": "12fa1a63a16579aa4ae6a3e7f0706857686b0f88", - "md5": "c79171df95c3d37c302f24d64216ab89", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/ecc/ecc.c", - "type": "file", - "name": "ecc.c", - "base_name": "ecc", - "extension": ".c", - "date": "2017-05-18", - "size": 4340, - "sha1": "3d8dca5b8b51156a3e07123e4124c4530ba0421e", - "md5": "f13a46c33eeacd8001503b86808bb893", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/ecc/ecc_ansi_x963_export.c", - "type": "file", - "name": "ecc_ansi_x963_export.c", - "base_name": "ecc_ansi_x963_export", - "extension": ".c", - "date": "2017-05-18", - "size": 1914, - "sha1": "c5c7de83f3d24e89a6792e940688ef7187a111a5", - "md5": "6ebc26168ce0d16f33bdb955de6f32a6", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/ecc/ecc_ansi_x963_import.c", - "type": "file", - "name": "ecc_ansi_x963_import.c", - "base_name": "ecc_ansi_x963_import", - "extension": ".c", - "date": "2017-05-18", - "size": 2763, - "sha1": "7bd313d38983a0ca05945397fc85a1469f26d6a3", - "md5": "d3ef6cbe18879f85946bf723fe095905", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/ecc/ecc_decrypt_key.c", - "type": "file", - "name": "ecc_decrypt_key.c", - "base_name": "ecc_decrypt_key", - "extension": ".c", - "date": "2017-05-18", - "size": 4025, - "sha1": "d5bacb38ffda6e6406eae0091fab43086c02c514", - "md5": "dd7c1bcf1e81e96bdfc6022d0398b508", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/ecc/ecc_encrypt_key.c", - "type": "file", - "name": "ecc_encrypt_key.c", - "base_name": "ecc_encrypt_key", - "extension": ".c", - "date": "2017-05-18", - "size": 4098, - "sha1": "3ea7b8f961612ff157598f5aff98cf19336f78e7", - "md5": "522284bd339c8d26eaff33a250d4afe6", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/ecc/ecc_export.c", - "type": "file", - "name": "ecc_export.c", - "base_name": "ecc_export", - "extension": ".c", - "date": "2017-05-18", - "size": 2650, - "sha1": "bbf44688e0c67f6e2490d950cb5b5722e343ee3d", - "md5": "b6593063461ca6af1fb672cd16023e54", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/ecc/ecc_free.c", - "type": "file", - "name": "ecc_free.c", - "base_name": "ecc_free", - "extension": ".c", - "date": "2017-05-18", - "size": 963, - "sha1": "7d75c0549b71be77d9854b9305b03e7db4fa272d", - "md5": "76a901099cc7e0d17b2dfe048bb19365", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/ecc/ecc_get_size.c", - "type": "file", - "name": "ecc_get_size.c", - "base_name": "ecc_get_size", - "extension": ".c", - "date": "2017-05-18", - "size": 1127, - "sha1": "ebfc66db9ca43ad18aaaf056404c12dfcdcc2f8c", - "md5": "6e408e69b51b71a64c771be25a673fb6", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/ecc/ecc_import.c", - "type": "file", - "name": "ecc_import.c", - "base_name": "ecc_import", - "extension": ".c", - "date": "2017-05-18", - "size": 6255, - "sha1": "f7562841981fad8348b016aba42163f99dfe0ce0", - "md5": "8364fe75a1c9cd0dc14fd91ec7c3a1f4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/ecc/ecc_make_key.c", - "type": "file", - "name": "ecc_make_key.c", - "base_name": "ecc_make_key", - "extension": ".c", - "date": "2017-05-18", - "size": 3693, - "sha1": "8294344c61ec6002f7bf8c675bf4300904cde620", - "md5": "650d00cc6095c8c9644a2e38473c5c75", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/ecc/ecc_shared_secret.c", - "type": "file", - "name": "ecc_shared_secret.c", - "base_name": "ecc_shared_secret", - "extension": ".c", - "date": "2017-05-18", - "size": 2741, - "sha1": "c3f67166ddc84de7747a37b250a80e6c1285e0b0", - "md5": "689f8484645b3a84345d5719529e7275", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/ecc/ecc_sign_hash.c", - "type": "file", - "name": "ecc_sign_hash.c", - "base_name": "ecc_sign_hash", - "extension": ".c", - "date": "2017-05-18", - "size": 3770, - "sha1": "af7718c51d1bc8fbe445fd761cdae4b749b4c422", - "md5": "d299d29867366b12e464c725fdd91687", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/ecc/ecc_sizes.c", - "type": "file", - "name": "ecc_sizes.c", - "base_name": "ecc_sizes", - "extension": ".c", - "date": "2017-05-18", - "size": 1106, - "sha1": "31817cd6d721c9b367b70f954c347534591778f4", - "md5": "f341a7578e12c87cf15df8879e2c1615", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/ecc/ecc_test.c", - "type": "file", - "name": "ecc_test.c", - "base_name": "ecc_test", - "extension": ".c", - "date": "2017-05-18", - "size": 2851, - "sha1": "8923a50f3a558bc7a9dc41e31b2caf135510cc55", - "md5": "9bea1694bbb464458399d713eb9539ca", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/ecc/ecc_verify_hash.c", - "type": "file", - "name": "ecc_verify_hash.c", - "base_name": "ecc_verify_hash", - "extension": ".c", - "date": "2017-05-18", - "size": 5784, - "sha1": "cf11f1e3b597b451370ac264a237950cb87bb935", - "md5": "6a649bf2981a961cb41f955b22c3b783", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/ecc/ltc_ecc_is_valid_idx.c", - "type": "file", - "name": "ltc_ecc_is_valid_idx.c", - "base_name": "ltc_ecc_is_valid_idx", - "extension": ".c", - "date": "2017-05-18", - "size": 1143, - "sha1": "04b271faa124eff7524366679c97643fd83c3f4b", - "md5": "0de3f17ad036e59815e8bedfb519f1b0", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/ecc/ltc_ecc_map.c", - "type": "file", - "name": "ltc_ecc_map.c", - "base_name": "ltc_ecc_map", - "extension": ".c", - "date": "2017-05-18", - "size": 2501, - "sha1": "145f8f0098796ca36a5af6c8e166e0aa966fe5a7", - "md5": "5d0c1b5af8c0a01325ffaea7087addc8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/ecc/ltc_ecc_mul2add.c", - "type": "file", - "name": "ltc_ecc_mul2add.c", - "base_name": "ltc_ecc_mul2add", - "extension": ".c", - "date": "2017-05-18", - "size": 6461, - "sha1": "5384e9a51e85ac279f6ea0bf96415c62c8b86656", - "md5": "f277085d7047bb32f16f3aa85e0b0109", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/ecc/ltc_ecc_mulmod.c", - "type": "file", - "name": "ltc_ecc_mulmod.c", - "base_name": "ltc_ecc_mulmod", - "extension": ".c", - "date": "2017-05-18", - "size": 7005, - "sha1": "c1c880f534d513ded75cd7f3ba92495f215b0971", - "md5": "3c4063b3e08ef69750a23a261633b536", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/ecc/ltc_ecc_mulmod_timing.c", - "type": "file", - "name": "ltc_ecc_mulmod_timing.c", - "base_name": "ltc_ecc_mulmod_timing", - "extension": ".c", - "date": "2017-05-18", - "size": 5172, - "sha1": "f2685796f04e9cd17d1e1aaa3eec20d59ba5f21d", - "md5": "a1e1c0ab36c13c273546abecbb555be1", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/ecc/ltc_ecc_points.c", - "type": "file", - "name": "ltc_ecc_points.c", - "base_name": "ltc_ecc_points", - "extension": ".c", - "date": "2017-05-18", - "size": 1402, - "sha1": "01c8c4bc7ed08d4b7dd4a62c220701a11f5bbef9", - "md5": "19a3dcec230b84ea50d3e5b1ae31f0a2", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/ecc/ltc_ecc_projective_add_point.c", - "type": "file", - "name": "ltc_ecc_projective_add_point.c", - "base_name": "ltc_ecc_projective_add_point", - "extension": ".c", - "date": "2017-05-18", - "size": 8889, - "sha1": "25e150250aea1ebbfb6880e5d0a1c8243cae9c99", - "md5": "ffe1b174ff044fafb70106d3efd66b29", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/ecc/ltc_ecc_projective_dbl_point.c", - "type": "file", - "name": "ltc_ecc_projective_dbl_point.c", - "base_name": "ltc_ecc_projective_dbl_point", - "extension": ".c", - "date": "2017-05-18", - "size": 6398, - "sha1": "92d8133e26b410a413375fef2f8ae0ad7fb02042", - "md5": "6cfaa58f4c3c1f95626f23ab0ff987b0", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/katja/katja_decrypt_key.c", - "type": "file", - "name": "katja_decrypt_key.c", - "base_name": "katja_decrypt_key", - "extension": ".c", - "date": "2017-05-18", - "size": 3063, - "sha1": "afa8f36596c7e0d03c0641c90824191c57d1e45e", - "md5": "78e4554dbe85bc6cce6517c67a085d45", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/katja/katja_encrypt_key.c", - "type": "file", - "name": "katja_encrypt_key.c", - "base_name": "katja_encrypt_key", - "extension": ".c", - "date": "2017-05-18", - "size": 2818, - "sha1": "02583117ba2ad6c14f2b15311dc74b288a675742", - "md5": "84abd173587969f6c6926fdd83b2a413", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/katja/katja_export.c", - "type": "file", - "name": "katja_export.c", - "base_name": "katja_export", - "extension": ".c", - "date": "2017-05-18", - "size": 2448, - "sha1": "aa672f9c979cb8640877a97349859bd1be059f14", - "md5": "e71489e5e1c3ed6dece4d7d3b8a3875e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/katja/katja_exptmod.c", - "type": "file", - "name": "katja_exptmod.c", - "base_name": "katja_exptmod", - "extension": ".c", - "date": "2017-05-18", - "size": 3848, - "sha1": "2331a27188ef429aa9b380461896c0f722a65a81", - "md5": "d2b51c1f58e842d3aff002cd92bcf324", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/katja/katja_free.c", - "type": "file", - "name": "katja_free.c", - "base_name": "katja_free", - "extension": ".c", - "date": "2017-05-18", - "size": 832, - "sha1": "25c397e80ab09b67e3c30d2d72d5e96906504654", - "md5": "f1696a4c46d090197c09de0854dcdcd4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/katja/katja_import.c", - "type": "file", - "name": "katja_import.c", - "base_name": "katja_import", - "extension": ".c", - "date": "2017-05-18", - "size": 2631, - "sha1": "5cb72f7810fedf7c14d301f61a7bc681b6a268cb", - "md5": "018496afe7c5393a0b8d4454b401eb5f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/katja/katja_make_key.c", - "type": "file", - "name": "katja_make_key.c", - "base_name": "katja_make_key", - "extension": ".c", - "date": "2017-05-18", - "size": 3719, - "sha1": "f2e4fef57a44dd991bfb255c39d9c4b87029ff0a", - "md5": "5b36972c2f0b929220213fed110c1c56", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/pkcs1/pkcs_1_i2osp.c", - "type": "file", - "name": "pkcs_1_i2osp.c", - "base_name": "pkcs_1_i2osp", - "extension": ".c", - "date": "2017-05-18", - "size": 1232, - "sha1": "20c3544a50c7f488da8aaf3840c190410db9bb1f", - "md5": "8b2eaedd3b609b3f83211668ef62c903", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/pkcs1/pkcs_1_mgf1.c", - "type": "file", - "name": "pkcs_1_mgf1.c", - "base_name": "pkcs_1_mgf1", - "extension": ".c", - "date": "2017-05-18", - "size": 2656, - "sha1": "cfb783a2b8b36a4632f0c6fbca6f02f719cea056", - "md5": "806f6bc9b952b8ed9b389d4c96632c21", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/pkcs1/pkcs_1_oaep_decode.c", - "type": "file", - "name": "pkcs_1_oaep_decode.c", - "base_name": "pkcs_1_oaep_decode", - "extension": ".c", - "date": "2017-05-18", - "size": 5135, - "sha1": "e585e976b0ad08bdfcd95e4a778b6fe3c63afdec", - "md5": "1de4cc863986b3cb5229c1626cd07083", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/pkcs1/pkcs_1_oaep_encode.c", - "type": "file", - "name": "pkcs_1_oaep_encode.c", - "base_name": "pkcs_1_oaep_encode", - "extension": ".c", - "date": "2017-05-18", - "size": 4726, - "sha1": "141279ac84e782c3a77415318e332e54a2dd1b35", - "md5": "9c11920fcfe57730a12af78f7b19caf0", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/pkcs1/pkcs_1_os2ip.c", - "type": "file", - "name": "pkcs_1_os2ip.c", - "base_name": "pkcs_1_os2ip", - "extension": ".c", - "date": "2017-05-18", - "size": 941, - "sha1": "bae1109af1ab96782996e96983dc54cc057f69cd", - "md5": "6c02fa51707c1c6da8f7e51ff1ae05ae", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/pkcs1/pkcs_1_pss_decode.c", - "type": "file", - "name": "pkcs_1_pss_decode.c", - "base_name": "pkcs_1_pss_decode", - "extension": ".c", - "date": "2017-05-18", - "size": 4942, - "sha1": "cc1553aa4039a3697604629a877d45eabeee2d26", - "md5": "26a513453d0a097c8f625ad169a73c2d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/pkcs1/pkcs_1_pss_encode.c", - "type": "file", - "name": "pkcs_1_pss_encode.c", - "base_name": "pkcs_1_pss_encode", - "extension": ".c", - "date": "2017-05-18", - "size": 5015, - "sha1": "7807056fe5b88a0dafa0a5af56f8e889676cb7db", - "md5": "a8ed39b65747514f4cc1b4243cbc7fd7", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/pkcs1/pkcs_1_v1_5_decode.c", - "type": "file", - "name": "pkcs_1_v1_5_decode.c", - "base_name": "pkcs_1_v1_5_decode", - "extension": ".c", - "date": "2017-05-18", - "size": 3108, - "sha1": "1ce817912f485b68241063f074dbceddebb9d5ac", - "md5": "0ccf17336b00e966af5e19b20ba9408b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/pkcs1/pkcs_1_v1_5_encode.c", - "type": "file", - "name": "pkcs_1_v1_5_encode.c", - "base_name": "pkcs_1_v1_5_encode", - "extension": ".c", - "date": "2017-05-18", - "size": 3334, - "sha1": "a0eac91a1e1f12982fde246893a583f39088a758", - "md5": "79d693bd1b9e6b0c975361e28b49d14f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/rsa/rsa_decrypt_key.c", - "type": "file", - "name": "rsa_decrypt_key.c", - "base_name": "rsa_decrypt_key", - "extension": ".c", - "date": "2017-05-18", - "size": 3144, - "sha1": "368632660520a15e22d3bfdc30bc709778c7c9a5", - "md5": "7e77c31ac21f1d5d98f441a8e831cc69", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/rsa/rsa_encrypt_key.c", - "type": "file", - "name": "rsa_encrypt_key.c", - "base_name": "rsa_encrypt_key", - "extension": ".c", - "date": "2017-05-18", - "size": 3191, - "sha1": "63489ad15ecb47f48281618d2bdc49d4d1b7e90a", - "md5": "9b93c88212c296ddd90e7a8d00c88e64", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/rsa/rsa_export.c", - "type": "file", - "name": "rsa_export.c", - "base_name": "rsa_export", - "extension": ".c", - "date": "2017-05-18", - "size": 2386, - "sha1": "f1a81fbc88ecac9afedaf8c1634a2fa4f5f8b29c", - "md5": "2fb3ea948c5cfee3ca35519a56067d8f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/rsa/rsa_exptmod.c", - "type": "file", - "name": "rsa_exptmod.c", - "base_name": "rsa_exptmod", - "extension": ".c", - "date": "2017-05-18", - "size": 3808, - "sha1": "c575a4beebbde95337890ab7ecacaf0387ac82f1", - "md5": "daf5aa24801f918f653c3f9503e02412", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/rsa/rsa_free.c", - "type": "file", - "name": "rsa_free.c", - "base_name": "rsa_free", - "extension": ".c", - "date": "2017-05-18", - "size": 794, - "sha1": "f6188a80464444c620d3d9a1ecf0bab45d1df4cd", - "md5": "28c2917694f66ca4959f33b2e626ee64", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/rsa/rsa_import.c", - "type": "file", - "name": "rsa_import.c", - "base_name": "rsa_import", - "extension": ".c", - "date": "2017-05-18", - "size": 5186, - "sha1": "8b23eb3a5e8b4ced4ba9251c8f2105bfd6805970", - "md5": "ea0655f2dad85dc467be9ee5e4b1efad", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/rsa/rsa_make_key.c", - "type": "file", - "name": "rsa_make_key.c", - "base_name": "rsa_make_key", - "extension": ".c", - "date": "2017-05-18", - "size": 4616, - "sha1": "24db17978d000be3d6079e9cb77abc86ba1ac0e8", - "md5": "83d1b208db0a5f0c303e1a0c63718c94", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/rsa/rsa_sign_hash.c", - "type": "file", - "name": "rsa_sign_hash.c", - "base_name": "rsa_sign_hash", - "extension": ".c", - "date": "2017-05-18", - "size": 4221, - "sha1": "4238c879b2eb84e8dc45840164971895ece2c884", - "md5": "1e4420976afa62d166a661a677f65f66", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/pk/rsa/rsa_verify_hash.c", - "type": "file", - "name": "rsa_verify_hash.c", - "base_name": "rsa_verify_hash", - "extension": ".c", - "date": "2017-05-18", - "size": 5181, - "sha1": "be044c3e62fd0741a8328d5844bfae4caa248a09", - "md5": "1dbb8aa4649ee94705a03d2cab571fa5", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/prngs/fortuna.c", - "type": "file", - "name": "fortuna.c", - "base_name": "fortuna", - "extension": ".c", - "date": "2017-05-18", - "size": 10856, - "sha1": "6d8071959ebb4304ecc27fbcd062f9609e49f8d8", - "md5": "979a6c610dffa76de2231a06a27d385c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/prngs/rc4.c", - "type": "file", - "name": "rc4.c", - "base_name": "rc4", - "extension": ".c", - "date": "2017-05-18", - "size": 5829, - "sha1": "5ddb48acb1df3d799c25c8f1e5710e98175e0b17", - "md5": "f3622f4551b8e4fd392b731d91e767fa", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/prngs/rng_get_bytes.c", - "type": "file", - "name": "rng_get_bytes.c", - "base_name": "rng_get_bytes", - "extension": ".c", - "date": "2017-05-18", - "size": 3695, - "sha1": "76b050366ba98d1fed84ef3ec4e77fc3b9cf815a", - "md5": "0ca06f81fdc1174d80a477a1cbfa3a29", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/prngs/rng_make_prng.c", - "type": "file", - "name": "rng_make_prng.c", - "base_name": "rng_make_prng", - "extension": ".c", - "date": "2017-05-18", - "size": 1828, - "sha1": "e6635383f1df3ccb1cb151a1e72847819b4bc09c", - "md5": "d46bf590e9c7cfb3225aca6ebbab1ca7", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/prngs/sober128.c", - "type": "file", - "name": "sober128.c", - "base_name": "sober128", - "extension": ".c", - "date": "2017-05-18", - "size": 11063, - "sha1": "00dd10aca89b137c331d4e6f8679a1ffd8f2b414", - "md5": "14c10cf20dd1c7b6a64b50b57536386b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/prngs/sober128tab.c", - "type": "file", - "name": "sober128tab.c", - "base_name": "sober128tab", - "extension": ".c", - "date": "2017-05-18", - "size": 7924, - "sha1": "f29b14ed0c4b70fead2b8a633925772bb5e1e700", - "md5": "ac20117f0e2efc70493ee8af296ae9d2", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/prngs/sprng.c", - "type": "file", - "name": "sprng.c", - "base_name": "sprng", - "extension": ".c", - "date": "2017-05-18", - "size": 2874, - "sha1": "2109fc9a5d49db719dcb01ab3f7d8e1511c6c4cd", - "md5": "043497172951c2c00fa011273047fb88", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/src/prngs/yarrow.c", - "type": "file", - "name": "yarrow.c", - "base_name": "yarrow", - "extension": ".c", - "date": "2017-05-18", - "size": 9756, - "sha1": "6ca6fa307cf2591ed877287a3bc66fc5ff559c39", - "md5": "c0d65a60d1bd2ed4d6e28dd50dea1cb2", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/testprof/base64_test.c", - "type": "file", - "name": "base64_test.c", - "base_name": "base64_test", - "extension": ".c", - "date": "2017-05-18", - "size": 627, - "sha1": "a21ba8b7210d2417651f3f3564a3a996a4adb2c3", - "md5": "3ab677ed8b6c5b5e4d3dc2335cf0b8d8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/testprof/cipher_hash_test.c", - "type": "file", - "name": "cipher_hash_test.c", - "base_name": "cipher_hash_test", - "extension": ".c", - "date": "2017-05-18", - "size": 1347, - "sha1": "15a9af5dc06b90801964cf5cfe0f455ac1ecd03b", - "md5": "99f7d351ce0dfb44c9d9f737ddf74c59", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/testprof/der_tests.c", - "type": "file", - "name": "der_tests.c", - "base_name": "der_tests", - "extension": ".c", - "date": "2017-05-18", - "size": 32779, - "sha1": "29c352fca14102a7fc189a3c243ccc165d2733b6", - "md5": "b0f9969f65281f1afb84315f474c5742", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/testprof/dsa_test.c", - "type": "file", - "name": "dsa_test.c", - "base_name": "dsa_test", - "extension": ".c", - "date": "2017-05-18", - "size": 2199, - "sha1": "27388049ac7a129d558ac99bfdc50f08e3248ed6", - "md5": "92664d87f70be1aefed68cb99f78aca5", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/testprof/ecc_test.c", - "type": "file", - "name": "ecc_test.c", - "base_name": "ecc_test", - "extension": ".c", - "date": "2017-05-18", - "size": 6910, - "sha1": "658153d8d04178fbb19dca7848bf1575a44010e4", - "md5": "3d1f48e0379b7b9686f88f7acae2c99a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/testprof/katja_test.c", - "type": "file", - "name": "katja_test.c", - "base_name": "katja_test", - "extension": ".c", - "date": "2017-05-18", - "size": 7022, - "sha1": "4bedb54afe51d6727a6addf092446b0b5de1d3d0", - "md5": "17d98d763d325ca40887cd116cfadb8f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/testprof/mac_test.c", - "type": "file", - "name": "mac_test.c", - "base_name": "mac_test", - "extension": ".c", - "date": "2017-05-18", - "size": 648, - "sha1": "60402cf2bc2998c7d621f381e4b270257c791d0e", - "md5": "7846ab04d3b0d917103408991f0381df", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/testprof/makefile", - "type": "file", - "name": "makefile", - "base_name": "makefile", - "extension": "", - "date": "2017-05-18", - "size": 503, - "sha1": "752b73b2cd624f87a379ee3583bf8f1e0bebce42", - "md5": "fce1a03cc41b34a43bff077a3a859e73", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/testprof/makefile.icc", - "type": "file", - "name": "makefile.icc", - "base_name": "makefile", - "extension": ".icc", - "date": "2017-05-18", - "size": 448, - "sha1": "1cabf879aa23df3041e7e00d9dabc6fabca20be3", - "md5": "4c22c9384e428152b1792a5a37f4a86d", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/testprof/makefile.msvc", - "type": "file", - "name": "makefile.msvc", - "base_name": "makefile", - "extension": ".msvc", - "date": "2017-05-18", - "size": 356, - "sha1": "6a987b747b2e53e41a34d2dfdca0f4e290f558f9", - "md5": "31cfbfd2d089b53b45bdb286dbc7d048", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/testprof/makefile.shared", - "type": "file", - "name": "makefile.shared", - "base_name": "makefile", - "extension": ".shared", - "date": "2017-05-18", - "size": 699, - "sha1": "e9d2019e5e9229188d6c3722bc4f59721bb8597f", - "md5": "2a31e6f7b56de145e190a332033e2766", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/testprof/modes_test.c", - "type": "file", - "name": "modes_test.c", - "base_name": "modes_test", - "extension": ".c", - "date": "2017-05-18", - "size": 2677, - "sha1": "7b996101c4c938f33c84002f816278da1d3a0807", - "md5": "e012364473071bc2e717da5e8f5cee91", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/testprof/pkcs_1_test.c", - "type": "file", - "name": "pkcs_1_test.c", - "base_name": "pkcs_1_test", - "extension": ".c", - "date": "2017-05-18", - "size": 2838, - "sha1": "fdd8758aa0340beec9cffa852cdb023dbcb58add", - "md5": "7df4deaa6a584bbe891f6a30092b3273", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/testprof/rsa_test.c", - "type": "file", - "name": "rsa_test.c", - "base_name": "rsa_test", - "extension": ".c", - "date": "2017-05-18", - "size": 16197, - "sha1": "72e94aae4badb72d7836a698daa7293f5607fa67", - "md5": "5f8dd04816a4f04a922078b134613a79", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/testprof/store_test.c", - "type": "file", - "name": "store_test.c", - "base_name": "store_test", - "extension": ".c", - "date": "2017-05-18", - "size": 1841, - "sha1": "293da8118a56bc08a77813dd8c0302767b636dfc", - "md5": "83d110ed67a82862fde86bc103b5d902", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/testprof/test.der", - "type": "file", - "name": "test.der", - "base_name": "test", - "extension": ".der", - "date": "2017-05-18", - "size": 162, - "sha1": "50a36e7e605bc5e6af4bf2b0e1e96be5275fdf48", - "md5": "20f2596621b99aa92fcf1f95afb3ca1f", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/testprof/test.key", - "type": "file", - "name": "test.key", - "base_name": "test", - "extension": ".key", - "date": "2017-05-18", - "size": 891, - "sha1": "c17a11eef02d7a2ad7250bc2ee22bdf37ed21f0f", - "md5": "48fd9ed11c633069c3cf721611696a73", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/testprof/test_driver.c", - "type": "file", - "name": "test_driver.c", - "base_name": "test_driver", - "extension": ".c", - "date": "2017-05-18", - "size": 400, - "sha1": "967c0bef6c61fd49125c351207905ec7cb7323bf", - "md5": "60af5ea71afe63ac270d31fead8de46e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/testprof/tomcrypt_test.h", - "type": "file", - "name": "tomcrypt_test.h", - "base_name": "tomcrypt_test", - "extension": ".h", - "date": "2017-05-18", - "size": 1684, - "sha1": "5a4873daa10ff78feec096c62293a27e01c55248", - "md5": "856e26b9ebfdc8d5e79695633aa19fc2", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtomcrypt/testprof/x86_prof.c", - "type": "file", - "name": "x86_prof.c", - "base_name": "x86_prof", - "extension": ".c", - "date": "2017-05-18", - "size": 38974, - "sha1": "8c6e3ae451c484aa99ca641e7e3652486b301bbe", - "md5": "6f8810b2d1888be3870c8a252e5e1e69", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn.tex", - "type": "file", - "name": "bn.tex", - "base_name": "bn", - "extension": ".tex", - "date": "2017-05-18", - "size": 67904, - "sha1": "3cf40f63f99097eb88fcdd728a0d5495904e8b7e", - "md5": "db3209798a5143799c6c7eccf494508e", - "files_count": null, - "mime_type": "text/x-tex", - "file_type": "LaTeX 2e document, ASCII text", - "programming_language": "TeX", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "public-domain", - "score": 25.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": 55, - "end_line": 55, - "matched_rule": { - "identifier": "public-domain_45.RULE", - "license_choice": false, - "licenses": [ - "public-domain" - ] - } - }, - { - "key": "public-domain", - "score": 25.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": 85, - "end_line": 85, - "matched_rule": { - "identifier": "public-domain_45.RULE", - "license_choice": false, - "licenses": [ - "public-domain" - ] - } - }, - { - "key": "public-domain", - "score": 25.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": 86, - "end_line": 86, - "matched_rule": { - "identifier": "public-domain_45.RULE", - "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": 91, - "end_line": 91, - "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": 247, - "end_line": 247, - "matched_rule": { - "identifier": "public-domain.LICENSE", - "license_choice": false, - "licenses": [ - "public-domain" - ] - } - }, - { - "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": 247, - "end_line": 247, - "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": 269, - "end_line": 269, - "matched_rule": { - "identifier": "gpl_61.RULE", - "license_choice": false, - "licenses": [ - "gpl-1.0-plus" - ] - } - }, - { - "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": 290, - "end_line": 290, - "matched_rule": { - "identifier": "public-domain.LICENSE", - "license_choice": false, - "licenses": [ - "public-domain" - ] - } - } - ], - "copyrights": [ - { - "statements": [], - "holders": [], - "authors": [ - "Tom St Denis tomstdenis@gmail.com" - ], - "start_line": 52, - "end_line": 56 - }, - { - "statements": [ - "copyrighted by Michael Fromberger. They" - ], - "holders": [ - "Michael Fromberger. They" - ], - "authors": [], - "start_line": 90, - "end_line": 91 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bncore.c", - "type": "file", - "name": "bncore.c", - "base_name": "bncore", - "extension": ".c", - "date": "2017-05-18", - "size": 1340, - "sha1": "10ead291d5f52c4d162e40e497f53f6d639a70e1", - "md5": "b48d192d150dabc0e76c1d6c8955c485", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_error.c", - "type": "file", - "name": "bn_error.c", - "base_name": "bn_error", - "extension": ".c", - "date": "2017-05-18", - "size": 1218, - "sha1": "2d913fbe9f26b513548a5b439ce5a2fc0439bfab", - "md5": "708214baed44555aee02d3b0806ec630", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_fast_mp_invmod.c", - "type": "file", - "name": "bn_fast_mp_invmod.c", - "base_name": "bn_fast_mp_invmod", - "extension": ".c", - "date": "2017-05-18", - "size": 3429, - "sha1": "15975e4e1d66aeae5d3bf1a337139813bd97dc64", - "md5": "21d0b79239c83ae9e6f76be268fd31ed", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_fast_mp_montgomery_reduce.c", - "type": "file", - "name": "bn_fast_mp_montgomery_reduce.c", - "base_name": "bn_fast_mp_montgomery_reduce", - "extension": ".c", - "date": "2017-05-18", - "size": 4670, - "sha1": "4c83769796abded7a48eeceb017835692128d5fd", - "md5": "b45ec733b6ba186f8cc3cc01b94fd3a8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_fast_s_mp_mul_digs.c", - "type": "file", - "name": "bn_fast_s_mp_mul_digs.c", - "base_name": "bn_fast_s_mp_mul_digs", - "extension": ".c", - "date": "2017-05-18", - "size": 2833, - "sha1": "8c7ec5242443c6bbdfe90b6421c6e1351dd775b3", - "md5": "c8c3d6791a2998c7ced6c94511df3e5b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_fast_s_mp_mul_high_digs.c", - "type": "file", - "name": "bn_fast_s_mp_mul_high_digs.c", - "base_name": "bn_fast_s_mp_mul_high_digs", - "extension": ".c", - "date": "2017-05-18", - "size": 2596, - "sha1": "58c0a62a1a4fd0eb6d9b66f51b57348225b6d65a", - "md5": "dace752083e02027c4c54c16cb01dc3f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_fast_s_mp_sqr.c", - "type": "file", - "name": "bn_fast_s_mp_sqr.c", - "base_name": "bn_fast_s_mp_sqr", - "extension": ".c", - "date": "2017-05-18", - "size": 2959, - "sha1": "b18e62eb12ffb8e8f4a434a237c2efa75b73fdc4", - "md5": "b9b0c6da5a8d8b21425a6d56d1a6da46", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_2expt.c", - "type": "file", - "name": "bn_mp_2expt.c", - "base_name": "bn_mp_2expt", - "extension": ".c", - "date": "2017-05-18", - "size": 1227, - "sha1": "d02950375b877315d7b9f4c96acddcdd7cea623d", - "md5": "a273baa688a76264b403a9110f85b765", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_abs.c", - "type": "file", - "name": "bn_mp_abs.c", - "base_name": "bn_mp_abs", - "extension": ".c", - "date": "2017-05-18", - "size": 1014, - "sha1": "cc89fc43ae13f246ad1ab978ed599c93d4cb01b9", - "md5": "1f501146bedd93b9166456ee2e6665ad", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_add.c", - "type": "file", - "name": "bn_mp_add.c", - "base_name": "bn_mp_add", - "extension": ".c", - "date": "2017-05-18", - "size": 1461, - "sha1": "f2289f13117e9016d82afcd94c2ab991a1e57802", - "md5": "eff79d0552cebae0d88eaf55dd7b2f06", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_addmod.c", - "type": "file", - "name": "bn_mp_addmod.c", - "base_name": "bn_mp_addmod", - "extension": ".c", - "date": "2017-05-18", - "size": 1010, - "sha1": "e8276fd9681b60cc5846f410134bf0970974876a", - "md5": "0a30c193b716494a6ef22f45e1a8cd92", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_add_d.c", - "type": "file", - "name": "bn_mp_add_d.c", - "base_name": "bn_mp_add_d", - "extension": ".c", - "date": "2017-05-18", - "size": 2467, - "sha1": "a9a93d171db95284326e1803d70cd16d5be92ac8", - "md5": "e4e08a3b2b289e24a27a025f388733ff", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_and.c", - "type": "file", - "name": "bn_mp_and.c", - "base_name": "bn_mp_and", - "extension": ".c", - "date": "2017-05-18", - "size": 1299, - "sha1": "f9d823300dfb664349710a9bfad2be4bdfc76b04", - "md5": "89453b70cd920aeedef9ab6994014baa", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_clamp.c", - "type": "file", - "name": "bn_mp_clamp.c", - "base_name": "bn_mp_clamp", - "extension": ".c", - "date": "2017-05-18", - "size": 1174, - "sha1": "89152494cc2db2aeb0950d4f97a46d69d51d0fbd", - "md5": "c766e43122df9af69c01f106c2c9f161", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_clear.c", - "type": "file", - "name": "bn_mp_clear.c", - "base_name": "bn_mp_clear", - "extension": ".c", - "date": "2017-05-18", - "size": 1084, - "sha1": "4c8bd12c298981f6365b58eac68edc48c5309543", - "md5": "724b13894484e8f2fdc8df875146414a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_clear_multi.c", - "type": "file", - "name": "bn_mp_clear_multi.c", - "base_name": "bn_mp_clear_multi", - "extension": ".c", - "date": "2017-05-18", - "size": 947, - "sha1": "6d62953c54210dec638be9f5a2294f83a619b40e", - "md5": "2045f77ec2da863fddcb23a11a51be07", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_cmp.c", - "type": "file", - "name": "bn_mp_cmp.c", - "base_name": "bn_mp_cmp", - "extension": ".c", - "date": "2017-05-18", - "size": 1085, - "sha1": "d671443879ebd10881e72316c18461ed1db34433", - "md5": "4969a9acf5d818f415a32cca245ffc25", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_cmp_d.c", - "type": "file", - "name": "bn_mp_cmp_d.c", - "base_name": "bn_mp_cmp_d", - "extension": ".c", - "date": "2017-05-18", - "size": 1066, - "sha1": "1b074dab32ee11b2c4ee6962f456c61f56a79797", - "md5": "e4ab7b1aff971c0255dbec0f0f52435b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_cmp_mag.c", - "type": "file", - "name": "bn_mp_cmp_mag.c", - "base_name": "bn_mp_cmp_mag", - "extension": ".c", - "date": "2017-05-18", - "size": 1278, - "sha1": "b86add5ee03e1e98f3d2050b7a2226835e8e9f63", - "md5": "65b7a83d0ffcfbb93cff78114d216a00", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_cnt_lsb.c", - "type": "file", - "name": "bn_mp_cnt_lsb.c", - "base_name": "bn_mp_cnt_lsb", - "extension": ".c", - "date": "2017-05-18", - "size": 1293, - "sha1": "6a13ed21775156012c18bc7fe2a96a4b13668afe", - "md5": "04e40b1f73277ee3f9cf0a1d8497e12c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_copy.c", - "type": "file", - "name": "bn_mp_copy.c", - "base_name": "bn_mp_copy", - "extension": ".c", - "date": "2017-05-18", - "size": 1432, - "sha1": "d56eca4a86a1aced85aa6d4349460326416a87cf", - "md5": "6164cb33b915c19f58cdc1a2943ec9e1", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_count_bits.c", - "type": "file", - "name": "bn_mp_count_bits.c", - "base_name": "bn_mp_count_bits", - "extension": ".c", - "date": "2017-05-18", - "size": 1096, - "sha1": "460d18db977e52240bdc2255a0cd130f837ba2e4", - "md5": "206c9a186c7a7dbceda5a79790717912", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_div.c", - "type": "file", - "name": "bn_mp_div.c", - "base_name": "bn_mp_div", - "extension": ".c", - "date": "2017-05-18", - "size": 7100, - "sha1": "f01af3dac970ac778ffefa35d2c92d8367369b3e", - "md5": "66183eaccd3e0767a2a5973c08e0de97", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_div_2.c", - "type": "file", - "name": "bn_mp_div_2.c", - "base_name": "bn_mp_div_2", - "extension": ".c", - "date": "2017-05-18", - "size": 1593, - "sha1": "d584eb2131c23d44f7d8a1c58fe0330520742961", - "md5": "ad70f1b09a4b215ff53886166b51cca9", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_div_2d.c", - "type": "file", - "name": "bn_mp_div_2d.c", - "base_name": "bn_mp_div_2d", - "extension": ".c", - "date": "2017-05-18", - "size": 2246, - "sha1": "814b62178fc9d469011d1291209c976b1c5689aa", - "md5": "02ca39ada181821825dd7b6586aa315b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_div_3.c", - "type": "file", - "name": "bn_mp_div_3.c", - "base_name": "bn_mp_div_3", - "extension": ".c", - "date": "2017-05-18", - "size": 1864, - "sha1": "d96605d29c8e0bd8edbd72120db01e97138b71b4", - "md5": "40f91d4bd82071b9f978cd15c0072019", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_div_d.c", - "type": "file", - "name": "bn_mp_div_d.c", - "base_name": "bn_mp_div_d", - "extension": ".c", - "date": "2017-05-18", - "size": 2263, - "sha1": "cbdcd35ed87ee6231ba332aea9b4999057e95726", - "md5": "d5578102d28df31a25837237b9e5eba9", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_dr_is_modulus.c", - "type": "file", - "name": "bn_mp_dr_is_modulus.c", - "base_name": "bn_mp_dr_is_modulus", - "extension": ".c", - "date": "2017-05-18", - "size": 1113, - "sha1": "94797f18971c49db29fe3a5068525e903386896e", - "md5": "07c46e7fccc0f1f797d1e19612805e1d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_dr_reduce.c", - "type": "file", - "name": "bn_mp_dr_reduce.c", - "base_name": "bn_mp_dr_reduce", - "extension": ".c", - "date": "2017-05-18", - "size": 2426, - "sha1": "7290d18987f613cdb2a6b5f22efa6c5faeebb850", - "md5": "c70fe7753147b2056a06cdd8419b181f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_dr_setup.c", - "type": "file", - "name": "bn_mp_dr_setup.c", - "base_name": "bn_mp_dr_setup", - "extension": ".c", - "date": "2017-05-18", - "size": 985, - "sha1": "d5f860f0fa662e85db3871a63ea7026318140f51", - "md5": "298949125dedcd3573ffa4a0cb28940a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_exch.c", - "type": "file", - "name": "bn_mp_exch.c", - "base_name": "bn_mp_exch", - "extension": ".c", - "date": "2017-05-18", - "size": 880, - "sha1": "7f77882503c78291246802dfdc5951e85b83e5dc", - "md5": "677a95ba4c550b0593be3e7af52819ee", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_exptmod.c", - "type": "file", - "name": "bn_mp_exptmod.c", - "base_name": "bn_mp_exptmod", - "extension": ".c", - "date": "2017-05-18", - "size": 2904, - "sha1": "db7933b21337396fa608bb6f2ca1f04fa7915198", - "md5": "f2d88bbc0db6f4f0684f616de0139bd6", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_exptmod_fast.c", - "type": "file", - "name": "bn_mp_exptmod_fast.c", - "base_name": "bn_mp_exptmod_fast", - "extension": ".c", - "date": "2017-05-18", - "size": 8158, - "sha1": "58490fab79e553122c4cb17ab8e4f75bc48bd298", - "md5": "3ab395dd3e1b486a813612081385d1fa", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_expt_d.c", - "type": "file", - "name": "bn_mp_expt_d.c", - "base_name": "bn_mp_expt_d", - "extension": ".c", - "date": "2017-05-18", - "size": 1392, - "sha1": "261f9a3fb03d75be6dfaa0d6001b39b292e08fd1", - "md5": "7ab7a50370fe1b77d0859a9ec2f99c3f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_exteuclid.c", - "type": "file", - "name": "bn_mp_exteuclid.c", - "base_name": "bn_mp_exteuclid", - "extension": ".c", - "date": "2017-05-18", - "size": 3230, - "sha1": "2e2e7f55da00258ed0bae27ce268ae1235b5d6b2", - "md5": "1518d64c8d61f713e4d4a47a6024f093", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_fread.c", - "type": "file", - "name": "bn_mp_fread.c", - "base_name": "bn_mp_fread", - "extension": ".c", - "date": "2017-05-18", - "size": 1556, - "sha1": "0671107a9cfa26d3518db90f3c6adf72a9365564", - "md5": "33b4a28f080a7b7e535daadc61c9525b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_fwrite.c", - "type": "file", - "name": "bn_mp_fwrite.c", - "base_name": "bn_mp_fwrite", - "extension": ".c", - "date": "2017-05-18", - "size": 1228, - "sha1": "199e089ebf312e694f5afb241c0d6e38a7a06062", - "md5": "4d342d7b04143579376616426a50dee5", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_gcd.c", - "type": "file", - "name": "bn_mp_gcd.c", - "base_name": "bn_mp_gcd", - "extension": ".c", - "date": "2017-05-18", - "size": 2626, - "sha1": "bf556ea29d2e32c27105cd6f8ff69c4da406ba3a", - "md5": "1525276a750d7f74e8e3c538bfe90351", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_get_int.c", - "type": "file", - "name": "bn_mp_get_int.c", - "base_name": "bn_mp_get_int", - "extension": ".c", - "date": "2017-05-18", - "size": 1234, - "sha1": "e56841a81a3b93ec8afe25f144f8990b5b27e5b7", - "md5": "64097a6fb0392bd386706e9f1303490d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_grow.c", - "type": "file", - "name": "bn_mp_grow.c", - "base_name": "bn_mp_grow", - "extension": ".c", - "date": "2017-05-18", - "size": 1572, - "sha1": "371fba672eba9a36894e37f7c87333eca9d13a58", - "md5": "27ba860fe54ee27db029239a1e42e203", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_init.c", - "type": "file", - "name": "bn_mp_init.c", - "base_name": "bn_mp_init", - "extension": ".c", - "date": "2017-05-18", - "size": 1172, - "sha1": "78b37a5252d18b46f9b32108d733071f351aeaf5", - "md5": "c9e5e44e9be07527bc414af78cea8152", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_init_copy.c", - "type": "file", - "name": "bn_mp_init_copy.c", - "base_name": "bn_mp_init_copy", - "extension": ".c", - "date": "2017-05-18", - "size": 892, - "sha1": "841949a75e387e818f2f4d9adedff0ba9c9374c0", - "md5": "8f6a99b2b6e525aa0b96dd254cd1cabc", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_init_multi.c", - "type": "file", - "name": "bn_mp_init_multi.c", - "base_name": "bn_mp_init_multi", - "extension": ".c", - "date": "2017-05-18", - "size": 1822, - "sha1": "7eb256888f319d1f22a2077840b00144a635a360", - "md5": "557446fd688455f77143e97fd0908261", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_init_set.c", - "type": "file", - "name": "bn_mp_init_set.c", - "base_name": "bn_mp_init_set", - "extension": ".c", - "date": "2017-05-18", - "size": 868, - "sha1": "cc8de44fe1c250b7fd3c3c34764eeb6479442307", - "md5": "fc271144651cf9ccfde85e7c94851f74", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_init_set_int.c", - "type": "file", - "name": "bn_mp_init_set_int.c", - "base_name": "bn_mp_init_set_int", - "extension": ".c", - "date": "2017-05-18", - "size": 882, - "sha1": "62b0c86e524c47885c0acef1c0b98dc9d43120bd", - "md5": "77b58c26ab0f92c04850f531a679948b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_init_size.c", - "type": "file", - "name": "bn_mp_init_size.c", - "base_name": "bn_mp_init_size", - "extension": ".c", - "date": "2017-05-18", - "size": 1192, - "sha1": "7f3cd6fbba38b36e824d4fa6bfc71384e1fc6150", - "md5": "e345958cec07d8918d83588bcf659ec9", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_invmod.c", - "type": "file", - "name": "bn_mp_invmod.c", - "base_name": "bn_mp_invmod", - "extension": ".c", - "date": "2017-05-18", - "size": 1119, - "sha1": "ce1865904090004db508933d7085a1af7e908b78", - "md5": "d74db074b7ea6cbb91a5cd528c9a98d4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_invmod_slow.c", - "type": "file", - "name": "bn_mp_invmod_slow.c", - "base_name": "bn_mp_invmod_slow", - "extension": ".c", - "date": "2017-05-18", - "size": 4165, - "sha1": "1df4033bc1245af3306017c814f91956404f9d17", - "md5": "6b85fb64f2600cbf1dd0fe8bfad0ddf6", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_is_square.c", - "type": "file", - "name": "bn_mp_is_square.c", - "base_name": "bn_mp_is_square", - "extension": ".c", - "date": "2017-05-18", - "size": 3233, - "sha1": "1b3b3d62e0920e8ea1fdb4ab9ef75fdc1675d5d6", - "md5": "be580ccfdcedde832f4878db27b2e05f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_jacobi.c", - "type": "file", - "name": "bn_mp_jacobi.c", - "base_name": "bn_mp_jacobi", - "extension": ".c", - "date": "2017-05-18", - "size": 2365, - "sha1": "8b6a59e14a516bb223dd5b89c6212480d3e6b046", - "md5": "32e57d95ed50e524469485dc7c8d2d19", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_karatsuba_mul.c", - "type": "file", - "name": "bn_mp_karatsuba_mul.c", - "base_name": "bn_mp_karatsuba_mul", - "extension": ".c", - "date": "2017-05-18", - "size": 4888, - "sha1": "d12ad7521ac06b66055b94595f5ee8c73198859d", - "md5": "db8fc3fcd90fc95b67adaa9637937aaf", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_karatsuba_sqr.c", - "type": "file", - "name": "bn_mp_karatsuba_sqr.c", - "base_name": "bn_mp_karatsuba_sqr", - "extension": ".c", - "date": "2017-05-18", - "size": 3088, - "sha1": "cb25e7157ae4c7432461857852bf8bf43b124755", - "md5": "3300d50d94a877206d229b4f8bf51dda", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_lcm.c", - "type": "file", - "name": "bn_mp_lcm.c", - "base_name": "bn_mp_lcm", - "extension": ".c", - "date": "2017-05-18", - "size": 1559, - "sha1": "2efc953f9b2bf277bb46d07bde7ea65497ab65d9", - "md5": "55a42f72f46a4422b0a64253413f93ab", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_lshd.c", - "type": "file", - "name": "bn_mp_lshd.c", - "base_name": "bn_mp_lshd", - "extension": ".c", - "date": "2017-05-18", - "size": 1643, - "sha1": "1be9d6059f7990723ab18ad01c84eef2dcb743a6", - "md5": "0d28ad9c8b2b12b383e2d7cbf6c5b093", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_mod.c", - "type": "file", - "name": "bn_mp_mod.c", - "base_name": "bn_mp_mod", - "extension": ".c", - "date": "2017-05-18", - "size": 1101, - "sha1": "9265cd0294d2c86f1c3c73eaa5bf19c30403e13b", - "md5": "c952d2f597f9285151bd3220aad6dcbc", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_mod_2d.c", - "type": "file", - "name": "bn_mp_mod_2d.c", - "base_name": "bn_mp_mod_2d", - "extension": ".c", - "date": "2017-05-18", - "size": 1482, - "sha1": "39b5088c61a702e45117c046a246c0ba3457acec", - "md5": "58b0a15f343253a2a335ee1e430f39b0", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_mod_d.c", - "type": "file", - "name": "bn_mp_mod_d.c", - "base_name": "bn_mp_mod_d", - "extension": ".c", - "date": "2017-05-18", - "size": 773, - "sha1": "6df502c9569a11c797e90478d2a8909ba0d1247c", - "md5": "13bbea36747771d5a82cadfd5171b81f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_montgomery_calc_normalization.c", - "type": "file", - "name": "bn_mp_montgomery_calc_normalization.c", - "base_name": "bn_mp_montgomery_calc_normalization", - "extension": ".c", - "date": "2017-05-18", - "size": 1616, - "sha1": "87b5ed6813882ce20a7cfd650969495219105276", - "md5": "e56d088b55b3a9170a1a8909b8e32eef", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_montgomery_reduce.c", - "type": "file", - "name": "bn_mp_montgomery_reduce.c", - "base_name": "bn_mp_montgomery_reduce", - "extension": ".c", - "date": "2017-05-18", - "size": 3132, - "sha1": "a57d1c56341758bafd5640de7816ff2f7d9641cb", - "md5": "85b2fb483c40cc34de716a2132dba6ca", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_montgomery_setup.c", - "type": "file", - "name": "bn_mp_montgomery_setup.c", - "base_name": "bn_mp_montgomery_setup", - "extension": ".c", - "date": "2017-05-18", - "size": 1643, - "sha1": "63ee332ae3a63047da7a388f8ca254b0cd4957a4", - "md5": "bfd1873d1a48c4c6786163522d9af574", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_mul.c", - "type": "file", - "name": "bn_mp_mul.c", - "base_name": "bn_mp_mul", - "extension": ".c", - "date": "2017-05-18", - "size": 1829, - "sha1": "f95da85da87525e95e09c97272ee1c70420b2fda", - "md5": "722201e69016f61d9ede591897a2a23c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_mulmod.c", - "type": "file", - "name": "bn_mp_mulmod.c", - "base_name": "bn_mp_mulmod", - "extension": ".c", - "date": "2017-05-18", - "size": 1024, - "sha1": "ef9063432e3a0c62b7118dfc3d01d04cd4dc8bb9", - "md5": "4fab6ad2326dc4a74b65ae8d0075b587", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_mul_2.c", - "type": "file", - "name": "bn_mp_mul_2.c", - "base_name": "bn_mp_mul_2", - "extension": ".c", - "date": "2017-05-18", - "size": 1970, - "sha1": "551cba350d6670dd37afa3ff3f928002b60257e2", - "md5": "066409d7a834a0595559866039be172c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_mul_2d.c", - "type": "file", - "name": "bn_mp_mul_2d.c", - "base_name": "bn_mp_mul_2d", - "extension": ".c", - "date": "2017-05-18", - "size": 2025, - "sha1": "aad4f65c8fe2dfbdffd0dbea052515346b2c1345", - "md5": "96a98a0aebfc1836785ee80e9a61ae14", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_mul_d.c", - "type": "file", - "name": "bn_mp_mul_d.c", - "base_name": "bn_mp_mul_d", - "extension": ".c", - "date": "2017-05-18", - "size": 1877, - "sha1": "5ccc5289b208ab817dbb8d966b279c30fe0270aa", - "md5": "6995569c324dbb7da68a4f03ad4678fc", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_neg.c", - "type": "file", - "name": "bn_mp_neg.c", - "base_name": "bn_mp_neg", - "extension": ".c", - "date": "2017-05-18", - "size": 987, - "sha1": "1f6e366f84f62e9790cd32a2197ac01ab15f18d3", - "md5": "e8516ff336ffe8feb13c8e84b8a4e9e8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_n_root.c", - "type": "file", - "name": "bn_mp_n_root.c", - "base_name": "bn_mp_n_root", - "extension": ".c", - "date": "2017-05-18", - "size": 2982, - "sha1": "7cd8f559d867362d24bc0d3b468e94c8520b92e6", - "md5": "e1971543047aecd26ceaca04d576a203", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_or.c", - "type": "file", - "name": "bn_mp_or.c", - "base_name": "bn_mp_or", - "extension": ".c", - "date": "2017-05-18", - "size": 1181, - "sha1": "7172bc3a4b5683959d2b4780fd2b1bc7d8edb3c1", - "md5": "3465e34a636e7d03f27b3274b07bf494", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_prime_fermat.c", - "type": "file", - "name": "bn_mp_prime_fermat.c", - "base_name": "bn_mp_prime_fermat", - "extension": ".c", - "date": "2017-05-18", - "size": 1537, - "sha1": "d6a54db5584a3b7557d4aff7b0dc30ebdf28a731", - "md5": "b766d3c1150c967c82dc001e667906cb", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_prime_is_divisible.c", - "type": "file", - "name": "bn_mp_prime_is_divisible.c", - "base_name": "bn_mp_prime_is_divisible", - "extension": ".c", - "date": "2017-05-18", - "size": 1280, - "sha1": "efff6a4fe42fffe8f6d30ff6b240194cd7c46e72", - "md5": "20b690fe01c527031d5eb7cc2e157e88", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_prime_is_prime.c", - "type": "file", - "name": "bn_mp_prime_is_prime.c", - "base_name": "bn_mp_prime_is_prime", - "extension": ".c", - "date": "2017-05-18", - "size": 1944, - "sha1": "dc21e8dade254b50b4339e7b33e28793cc2051b1", - "md5": "914b4b5e5adda525dc3b500a2d49eef3", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_prime_miller_rabin.c", - "type": "file", - "name": "bn_mp_prime_miller_rabin.c", - "base_name": "bn_mp_prime_miller_rabin", - "extension": ".c", - "date": "2017-05-18", - "size": 2469, - "sha1": "d59e75a31931262d9d08121a0fc78e93ae7628d2", - "md5": "8bb4309dc8377b20c37fcadcf562e269", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_prime_next_prime.c", - "type": "file", - "name": "bn_mp_prime_next_prime.c", - "base_name": "bn_mp_prime_next_prime", - "extension": ".c", - "date": "2017-05-18", - "size": 4798, - "sha1": "3f93b19342d6ac962e0cedfb8813e1ecbc55c759", - "md5": "4a21836c5da6f319eb190bdb8e605994", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_prime_rabin_miller_trials.c", - "type": "file", - "name": "bn_mp_prime_rabin_miller_trials.c", - "base_name": "bn_mp_prime_rabin_miller_trials", - "extension": ".c", - "date": "2017-05-18", - "size": 1306, - "sha1": "b0421d46d35a8f5ee2a448e246732e6953529948", - "md5": "e512e124d1920979120d21953458a0c8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_prime_random_ex.c", - "type": "file", - "name": "bn_mp_prime_random_ex.c", - "base_name": "bn_mp_prime_random_ex", - "extension": ".c", - "date": "2017-05-18", - "size": 3757, - "sha1": "f1a195af61c7430bd490c9fac1e5a6ca813817bb", - "md5": "f396dc683005dec5509be6100e56cc42", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_radix_size.c", - "type": "file", - "name": "bn_mp_radix_size.c", - "base_name": "bn_mp_radix_size", - "extension": ".c", - "date": "2017-05-18", - "size": 1795, - "sha1": "c4c793794ffb15a3995382cfbbfc6e014e9449f1", - "md5": "4c28d49eb99d6a38b63fb83f3cc80f17", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_radix_smap.c", - "type": "file", - "name": "bn_mp_radix_smap.c", - "base_name": "bn_mp_radix_smap", - "extension": ".c", - "date": "2017-05-18", - "size": 823, - "sha1": "90acb63521808ba2825dacbf29401f79a06efcc2", - "md5": "689a422b4ce5572c037d534e53c931e5", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_rand.c", - "type": "file", - "name": "bn_mp_rand.c", - "base_name": "bn_mp_rand", - "extension": ".c", - "date": "2017-05-18", - "size": 1263, - "sha1": "aa66e8277829f6ecd05ca0c3c91b209c844bd4a7", - "md5": "f9153b60698b0b3c5b58a9cdea8fa16e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_read_radix.c", - "type": "file", - "name": "bn_mp_read_radix.c", - "base_name": "bn_mp_read_radix", - "extension": ".c", - "date": "2017-05-18", - "size": 2077, - "sha1": "cb0ec976374b9be1ef0066b884fafea58f6d3eee", - "md5": "7ac92ad1dc76c2f1677b89bdd64057f6", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_read_signed_bin.c", - "type": "file", - "name": "bn_mp_read_signed_bin.c", - "base_name": "bn_mp_read_signed_bin", - "extension": ".c", - "date": "2017-05-18", - "size": 1137, - "sha1": "46e0eb1eeb55a3c156f04219b12f82aa7c64b1ba", - "md5": "ab40bd913149a5fa34079889f6dc9f1c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_read_unsigned_bin.c", - "type": "file", - "name": "bn_mp_read_unsigned_bin.c", - "base_name": "bn_mp_read_unsigned_bin", - "extension": ".c", - "date": "2017-05-18", - "size": 1383, - "sha1": "55c99cff4309d0b894cbbe9dbfee85bd206eeb63", - "md5": "9f4d6728656ff2200c2fe8ea5276ae8e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_reduce.c", - "type": "file", - "name": "bn_mp_reduce.c", - "base_name": "bn_mp_reduce", - "extension": ".c", - "date": "2017-05-18", - "size": 2437, - "sha1": "9c18643caba6d8f2895c5fc474040c640516997b", - "md5": "d45b2b89545d246ebe5f290e2be25aae", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_reduce_2k.c", - "type": "file", - "name": "bn_mp_reduce_2k.c", - "base_name": "bn_mp_reduce_2k", - "extension": ".c", - "date": "2017-05-18", - "size": 1397, - "sha1": "85e52ad760353d6e2e869459d713cecf49eaef4b", - "md5": "42e63525e9b8511a8495893e765b4170", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_reduce_2k_l.c", - "type": "file", - "name": "bn_mp_reduce_2k_l.c", - "base_name": "bn_mp_reduce_2k_l", - "extension": ".c", - "date": "2017-05-18", - "size": 1446, - "sha1": "05a3e5ac63757258558201d23442cf0a22706b4c", - "md5": "179347e2ec75daf0e1fc5bbf6926432e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_reduce_2k_setup.c", - "type": "file", - "name": "bn_mp_reduce_2k_setup.c", - "base_name": "bn_mp_reduce_2k_setup", - "extension": ".c", - "date": "2017-05-18", - "size": 1171, - "sha1": "2cba08eed631dfc432f8248373e6d23b77283180", - "md5": "3144364d1a884d0d00a47dfbe29746a9", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_reduce_2k_setup_l.c", - "type": "file", - "name": "bn_mp_reduce_2k_setup_l.c", - "base_name": "bn_mp_reduce_2k_setup_l", - "extension": ".c", - "date": "2017-05-18", - "size": 1096, - "sha1": "3b5c4f5c810be907d8a1278715629afae0eff683", - "md5": "8b3e104466cbb2e608a10a55e33a1d21", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_reduce_is_2k.c", - "type": "file", - "name": "bn_mp_reduce_is_2k.c", - "base_name": "bn_mp_reduce_is_2k", - "extension": ".c", - "date": "2017-05-18", - "size": 1330, - "sha1": "63e0be9bf4893e8b1748b59881d5c8dfd07f977b", - "md5": "92698bac2e2547bffda421cbe11ce5f9", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_reduce_is_2k_l.c", - "type": "file", - "name": "bn_mp_reduce_is_2k_l.c", - "base_name": "bn_mp_reduce_is_2k_l", - "extension": ".c", - "date": "2017-05-18", - "size": 1191, - "sha1": "0d61c2db7ed32d9e04049f132f1e3b83dc1cba24", - "md5": "862e4415fc1fe8aeed2f8497cabb3d8d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_reduce_setup.c", - "type": "file", - "name": "bn_mp_reduce_setup.c", - "base_name": "bn_mp_reduce_setup", - "extension": ".c", - "date": "2017-05-18", - "size": 1011, - "sha1": "17d0c225ecb4671353a9158de6d0eb189e704bdf", - "md5": "693dbf4816355da26646b8c9effaaffd", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_rshd.c", - "type": "file", - "name": "bn_mp_rshd.c", - "base_name": "bn_mp_rshd", - "extension": ".c", - "date": "2017-05-18", - "size": 1676, - "sha1": "01550999b6f4d046203f0ba9fa69e28441063075", - "md5": "6aa33e4077d59547e8aed635147fd489", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_set.c", - "type": "file", - "name": "bn_mp_set.c", - "base_name": "bn_mp_set", - "extension": ".c", - "date": "2017-05-18", - "size": 820, - "sha1": "b9720c95ebba5888000331272a9b363ac60f757f", - "md5": "61dd423060662e9f6e96dff70a89088e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_set_int.c", - "type": "file", - "name": "bn_mp_set_int.c", - "base_name": "bn_mp_set_int", - "extension": ".c", - "date": "2017-05-18", - "size": 1225, - "sha1": "b5eb6b13ba3e4f03c52574fab0dd85b8b915924f", - "md5": "626094c5db5cfb4c0d4cf4893d111495", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_shrink.c", - "type": "file", - "name": "bn_mp_shrink.c", - "base_name": "bn_mp_shrink", - "extension": ".c", - "date": "2017-05-18", - "size": 984, - "sha1": "2a97caa488bf03b698501431831788b7096dde65", - "md5": "2fe8125876465adb8f9004e1ab9bc588", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_signed_bin_size.c", - "type": "file", - "name": "bn_mp_signed_bin_size.c", - "base_name": "bn_mp_signed_bin_size", - "extension": ".c", - "date": "2017-05-18", - "size": 826, - "sha1": "095c4525cb020eb504d55ae5c48e4c52654a0a1b", - "md5": "332f86594e70e2af432d2728022abe59", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_sqr.c", - "type": "file", - "name": "bn_mp_sqr.c", - "base_name": "bn_mp_sqr", - "extension": ".c", - "date": "2017-05-18", - "size": 1406, - "sha1": "0f2296767c878d8019e13c07fd449560955fc024", - "md5": "0755cc53f5907cc366e09dcba43359af", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_sqrmod.c", - "type": "file", - "name": "bn_mp_sqrmod.c", - "base_name": "bn_mp_sqrmod", - "extension": ".c", - "date": "2017-05-18", - "size": 995, - "sha1": "a0dd26072bdd106242f6fd655a30188cfb25ea38", - "md5": "5a6dbf4e5cd7ffe1cb26e7dd80605218", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_sqrt.c", - "type": "file", - "name": "bn_mp_sqrt.c", - "base_name": "bn_mp_sqrt", - "extension": ".c", - "date": "2017-05-18", - "size": 1838, - "sha1": "450813392fbfbe44bbae85535fb8b998eb8184ce", - "md5": "459f4748dd4c4dd1fe6729972f60c888", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_sub.c", - "type": "file", - "name": "bn_mp_sub.c", - "base_name": "bn_mp_sub", - "extension": ".c", - "date": "2017-05-18", - "size": 1716, - "sha1": "a33a08150a286b0039173cca2a41315b2091365d", - "md5": "ef219e01d44a0e2a8c9c9e29dc7834e5", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_submod.c", - "type": "file", - "name": "bn_mp_submod.c", - "base_name": "bn_mp_submod", - "extension": ".c", - "date": "2017-05-18", - "size": 1011, - "sha1": "fa8ab8b897cac02d06e7b4b1a9b9a3053a40e858", - "md5": "f9fa7fc316436ee1b0260b6e3c6fd2d7", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_sub_d.c", - "type": "file", - "name": "bn_mp_sub_d.c", - "base_name": "bn_mp_sub_d", - "extension": ".c", - "date": "2017-05-18", - "size": 2153, - "sha1": "bfedcdb1837eaea36cc8016f412d64837f34f8e1", - "md5": "dd8267178e9511b6fa905638d0241a90", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_toom_mul.c", - "type": "file", - "name": "bn_mp_toom_mul.c", - "base_name": "bn_mp_toom_mul", - "extension": ".c", - "date": "2017-05-18", - "size": 7140, - "sha1": "963f922d61caf8828638f9b990020406ec22ae1f", - "md5": "89747e8d77eae3b61d83cd6e77695bf3", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_toom_sqr.c", - "type": "file", - "name": "bn_mp_toom_sqr.c", - "base_name": "bn_mp_toom_sqr", - "extension": ".c", - "date": "2017-05-18", - "size": 5401, - "sha1": "a40b43897c5e23520f99ceaa59bf939eb5bac1ed", - "md5": "b7ab05b079b7fcc68a5e9a2c551ee3a9", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_toradix.c", - "type": "file", - "name": "bn_mp_toradix.c", - "base_name": "bn_mp_toradix", - "extension": ".c", - "date": "2017-05-18", - "size": 1758, - "sha1": "e945e74e11ac54e91af44216023f55656cf7f650", - "md5": "ddaf236237f41037d38aeac97f9752ff", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_toradix_n.c", - "type": "file", - "name": "bn_mp_toradix_n.c", - "base_name": "bn_mp_toradix_n", - "extension": ".c", - "date": "2017-05-18", - "size": 2100, - "sha1": "17b42cd6147e873d7834a05c342f937b391426f6", - "md5": "aedac684ab8e47b48c62121bb9463050", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_to_signed_bin.c", - "type": "file", - "name": "bn_mp_to_signed_bin.c", - "base_name": "bn_mp_to_signed_bin", - "extension": ".c", - "date": "2017-05-18", - "size": 966, - "sha1": "b5f2791e69cca9974bef85270825055442f8b1cd", - "md5": "e73cdc8b00ec51458df338c375c47018", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_to_signed_bin_n.c", - "type": "file", - "name": "bn_mp_to_signed_bin_n.c", - "base_name": "bn_mp_to_signed_bin_n", - "extension": ".c", - "date": "2017-05-18", - "size": 979, - "sha1": "7c0825814f330b851e34e7bd494780800c8cd761", - "md5": "801300f8b06ef6fdaea0db6487db1569", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_to_unsigned_bin.c", - "type": "file", - "name": "bn_mp_to_unsigned_bin.c", - "base_name": "bn_mp_to_unsigned_bin", - "extension": ".c", - "date": "2017-05-18", - "size": 1256, - "sha1": "a4065f821ee4c734de19f31be4d596c612622b72", - "md5": "931d3d95e09e336c1bad62d0ab15882e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_to_unsigned_bin_n.c", - "type": "file", - "name": "bn_mp_to_unsigned_bin_n.c", - "base_name": "bn_mp_to_unsigned_bin_n", - "extension": ".c", - "date": "2017-05-18", - "size": 993, - "sha1": "7bb5466e439b1f52f095ae2acbe150e342b21dc5", - "md5": "1691284606c6f9c62be42e517fc154dd", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_unsigned_bin_size.c", - "type": "file", - "name": "bn_mp_unsigned_bin_size.c", - "base_name": "bn_mp_unsigned_bin_size", - "extension": ".c", - "date": "2017-05-18", - "size": 880, - "sha1": "8e2ac8bf6a9f3a1de0ef11cec7730ffbc1e6f1a8", - "md5": "8c7f030f3dae90e9984495e1d4a83bb7", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_xor.c", - "type": "file", - "name": "bn_mp_xor.c", - "base_name": "bn_mp_xor", - "extension": ".c", - "date": "2017-05-18", - "size": 1186, - "sha1": "937f73fe8252c4bbdc7f60d2d8a80396e0c5e971", - "md5": "9b13b6f59a0f86cee81239186b2f0d7a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_mp_zero.c", - "type": "file", - "name": "bn_mp_zero.c", - "base_name": "bn_mp_zero", - "extension": ".c", - "date": "2017-05-18", - "size": 870, - "sha1": "9c936f75b20687b223129734ebd93e04db6bdf00", - "md5": "49507ade2bf5e7a7e26e588717571f9b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_prime_tab.c", - "type": "file", - "name": "bn_prime_tab.c", - "base_name": "bn_prime_tab", - "extension": ".c", - "date": "2017-05-18", - "size": 2861, - "sha1": "45021011858d4ff6abc198aa591f731a41fa9aa9", - "md5": "13aef6ddfa1e79f5d8251808808ff80d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_reverse.c", - "type": "file", - "name": "bn_reverse.c", - "base_name": "bn_reverse", - "extension": ".c", - "date": "2017-05-18", - "size": 934, - "sha1": "137f7c2e7abb88f8b99699187d460a216d2edef1", - "md5": "0f527b70ff24af9a5081ee183a584171", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_s_mp_add.c", - "type": "file", - "name": "bn_s_mp_add.c", - "base_name": "bn_s_mp_add", - "extension": ".c", - "date": "2017-05-18", - "size": 2458, - "sha1": "5ccb09709881715f8114ec5bd47b86b13bd2982c", - "md5": "403973b7ddd7a307e963556264123ce0", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_s_mp_exptmod.c", - "type": "file", - "name": "bn_s_mp_exptmod.c", - "base_name": "bn_s_mp_exptmod", - "extension": ".c", - "date": "2017-05-18", - "size": 6136, - "sha1": "a6a69525a2db4382684510dbb71bcbcbc20cb053", - "md5": "8d378ec08bdc8d77da808afb07332ac4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_s_mp_mul_digs.c", - "type": "file", - "name": "bn_s_mp_mul_digs.c", - "base_name": "bn_s_mp_mul_digs", - "extension": ".c", - "date": "2017-05-18", - "size": 2519, - "sha1": "709d778c346b50939bb7c8a49b5b44be5845bae9", - "md5": "3ead826371b9113d839ef15ff1fff945", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_s_mp_mul_high_digs.c", - "type": "file", - "name": "bn_s_mp_mul_high_digs.c", - "base_name": "bn_s_mp_mul_high_digs", - "extension": ".c", - "date": "2017-05-18", - "size": 2235, - "sha1": "f590816a055898ebeb40cd5826147faf32e0d844", - "md5": "7c023b716b618908d466ce8178238666", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_s_mp_sqr.c", - "type": "file", - "name": "bn_s_mp_sqr.c", - "base_name": "bn_s_mp_sqr", - "extension": ".c", - "date": "2017-05-18", - "size": 2382, - "sha1": "dc3edf5189c48351f73dd0b0df23c60ac23d78c8", - "md5": "142710f40532cd84aff86ecd5b2b653d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/bn_s_mp_sub.c", - "type": "file", - "name": "bn_s_mp_sub.c", - "base_name": "bn_s_mp_sub", - "extension": ".c", - "date": "2017-05-18", - "size": 2243, - "sha1": "3b4ddc0ab104634daee083067a0368bcc611daf9", - "md5": "df42f6e187c9d81b78eeab71fea2bd49", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/booker.pl", - "type": "file", - "name": "booker.pl", - "base_name": "booker", - "extension": ".pl", - "date": "2017-05-18", - "size": 7912, - "sha1": "b00c5b2be0d8233baf482d7422b360606fc961bc", - "md5": "230cb1900048140a75e63fff4422a8b2", - "files_count": null, - "mime_type": "text/x-tex", - "file_type": "LaTeX document, ASCII text", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/changes.txt", - "type": "file", - "name": "changes.txt", - "base_name": "changes", - "extension": ".txt", - "date": "2017-05-18", - "size": 24290, - "sha1": "aafc04f83cde62256b1525b5457971f64616e499", - "md5": "c5750f5b5b5bfe6e34140d8bd68476a3", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "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": 139, - "end_line": 139, - "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": 171, - "end_line": 171, - "matched_rule": { - "identifier": "public-domain.LICENSE", - "license_choice": false, - "licenses": [ - "public-domain" - ] - } - } - ], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/dep.pl", - "type": "file", - "name": "dep.pl", - "base_name": "dep", - "extension": ".pl", - "date": "2017-05-18", - "size": 3042, - "sha1": "092d03d71c545ed12af9341beeee45457515c9d1", - "md5": "834276949a77afb63e1395752b1ab1d4", - "files_count": null, - "mime_type": "text/plain", - "file_type": "a /usr/bin/perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/gen.pl", - "type": "file", - "name": "gen.pl", - "base_name": "gen", - "extension": ".pl", - "date": "2017-05-18", - "size": 586, - "sha1": "67c4b0ca0cfd7c389b6a1ec96950b5892113d140", - "md5": "7960d619660cd258b18ff6cace6d611d", - "files_count": null, - "mime_type": "text/plain", - "file_type": "a /usr/bin/perl -w script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/LICENSE", - "type": "file", - "name": "LICENSE", - "base_name": "LICENSE", - "extension": "", - "date": "2017-05-18", - "size": 74, - "sha1": "eec30656837132b5037dc0b5d021a6242888e0c0", - "md5": "4f6fbdd737299a6d5dac1428f38422c8", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "public-domain", - "score": 25.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": 1, - "end_line": 1, - "matched_rule": { - "identifier": "public-domain_15.RULE", - "license_choice": false, - "licenses": [ - "public-domain" - ] - } - } - ], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/makefile.bcc", - "type": "file", - "name": "makefile.bcc", - "base_name": "makefile", - "extension": ".bcc", - "date": "2017-05-18", - "size": 2590, - "sha1": "e33180b9565d150a8f535fd7b02e8236135a334a", - "md5": "f0f0d371b828c223badde6cdbb0ff658", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/makefile.cygwin_dll", - "type": "file", - "name": "makefile.cygwin_dll", - "base_name": "makefile", - "extension": ".cygwin_dll", - "date": "2017-05-18", - "size": 3161, - "sha1": "275e13f68f8caaa487491653d212d9c62b3bc025", - "md5": "ce6095de03fb758cf9a7eb0db830b76f", - "files_count": null, - "mime_type": "text/x-makefile", - "file_type": "makefile script, ASCII text", - "programming_language": "Python", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/makefile.icc", - "type": "file", - "name": "makefile.icc", - "base_name": "makefile", - "extension": ".icc", - "date": "2017-05-18", - "size": 4610, - "sha1": "dc5d4b64291b633269d1188e6b1f3809b37fb373", - "md5": "e7918135f0c0de58978d79046556cc9c", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/Makefile.in", - "type": "file", - "name": "Makefile.in", - "base_name": "Makefile", - "extension": ".in", - "date": "2017-05-18", - "size": 6366, - "sha1": "ae2a6ea4f727b878a56d3626a8fa21603e581e61", - "md5": "57bc29cd5fdb96a570cf73c5d59eed6b", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/makefile.msvc", - "type": "file", - "name": "makefile.msvc", - "base_name": "makefile", - "extension": ".msvc", - "date": "2017-05-18", - "size": 2592, - "sha1": "024637549319c0a6143c58401c2cb79893d701e9", - "md5": "1c355ebfdbbb83cf6e8378a3602b2e89", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/makefile.shared", - "type": "file", - "name": "makefile.shared", - "base_name": "makefile", - "extension": ".shared", - "date": "2017-05-18", - "size": 3805, - "sha1": "8c24ac3157bbc4e4cb6007f4d6d37102510bf7e7", - "md5": "b24d34a2400c6a435797a8aa1ea0e118", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/mess.sh", - "type": "file", - "name": "mess.sh", - "base_name": "mess", - "extension": ".sh", - "date": "2017-05-18", - "size": 111, - "sha1": "ee34aef379627e97871efac71f93ebe600548bd7", - "md5": "a6569bbd77926fb1b60a8e77e0507756", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/poster.out", - "type": "file", - "name": "poster.out", - "base_name": "poster", - "extension": ".out", - "date": "2017-05-18", - "size": 0, - "sha1": null, - "md5": null, - "files_count": 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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/poster.tex", - "type": "file", - "name": "poster.tex", - "base_name": "poster", - "extension": ".tex", - "date": "2017-05-18", - "size": 2269, - "sha1": "1fe3768a9d3d68873cd1b468f34e6b0474ac29dc", - "md5": "6abdc4557d3bf9f28fd1f649cdd63eef", - "files_count": null, - "mime_type": "text/x-tex", - "file_type": "LaTeX 2e document, ASCII text", - "programming_language": "TeX", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/pretty.build", - "type": "file", - "name": "pretty.build", - "base_name": "pretty", - "extension": ".build", - "date": "2017-05-18", - "size": 2160, - "sha1": "ef98abab69cf137623e74611cfa9cb71901be3ce", - "md5": "2a9f0ba609daa95e51135394da324073", - "files_count": null, - "mime_type": "text/plain", - "file_type": "a /bin/perl -w script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/tommath.h", - "type": "file", - "name": "tommath.h", - "base_name": "tommath", - "extension": ".h", - "date": "2017-05-18", - "size": 17243, - "sha1": "f247596b2e4ec673a18a7c5fcb9534594301f23f", - "md5": "92349f7ffbc7303e8b755f9d686618a7", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/tommath.out", - "type": "file", - "name": "tommath.out", - "base_name": "tommath", - "extension": ".out", - "date": "2017-05-18", - "size": 9589, - "sha1": "8b1ec2f5e8f380908d72001636ea44581d64bf76", - "md5": "fb8f19f658608f59032e46ea7ce27093", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/tommath_class.h", - "type": "file", - "name": "tommath_class.h", - "base_name": "tommath_class", - "extension": ".h", - "date": "2017-05-18", - "size": 21169, - "sha1": "91b56882a4d3c4f863c80d0b67084a16a5c24711", - "md5": "c5dda9d2ef43833d0cae39193cffa0b4", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/tommath_superclass.h", - "type": "file", - "name": "tommath_superclass.h", - "base_name": "tommath_superclass", - "extension": ".h", - "date": "2017-05-18", - "size": 2310, - "sha1": "c353f7aa0e686a75f30e75d9b2f20af9e35cf6e8", - "md5": "2850d1f692a1d1140ce1b59e75716f91", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/demo", - "type": "directory", - "name": "demo", - "base_name": "demo", - "extension": "", - "date": null, - "size": 38254, - "sha1": null, - "md5": null, - "files_count": 2, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/etc", - "type": "directory", - "name": "etc", - "base_name": "etc", - "extension": "", - "date": null, - "size": 50112, - "sha1": null, - "md5": null, - "files_count": 15, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/logs", - "type": "directory", - "name": "logs", - "base_name": "logs", - "extension": "", - "date": null, - "size": 32063, - "sha1": null, - "md5": null, - "files_count": 18, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/mtest", - "type": "directory", - "name": "mtest", - "base_name": "mtest", - "extension": "", - "date": null, - "size": 99645, - "sha1": null, - "md5": null, - "files_count": 6, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/pics", - "type": "directory", - "name": "pics", - "base_name": "pics", - "extension": "", - "date": null, - "size": 333570, - "sha1": null, - "md5": null, - "files_count": 9, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/pre_gen", - "type": "directory", - "name": "pre_gen", - "base_name": "pre_gen", - "extension": "", - "date": null, - "size": 238629, - "sha1": null, - "md5": null, - "files_count": 1, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/tombc", - "type": "directory", - "name": "tombc", - "base_name": "tombc", - "extension": "", - "date": null, - "size": 2319, - "sha1": null, - "md5": null, - "files_count": 1, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/demo/demo.c", - "type": "file", - "name": "demo.c", - "base_name": "demo", - "extension": ".c", - "date": "2017-05-18", - "size": 17353, - "sha1": "709dafa2cd6efd826d038844380305cfd42d67ab", - "md5": "e8c6914ca676e3f3782a6f5f7443afde", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/demo/timing.c", - "type": "file", - "name": "timing.c", - "base_name": "timing", - "extension": ".c", - "date": "2017-05-18", - "size": 20901, - "sha1": "b75910c66587af2b0222534851c5503e01811a00", - "md5": "d2946b2a2c6072441b5273d853a1802d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with very long lines", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/etc/2kprime.1", - "type": "file", - "name": "2kprime.1", - "base_name": "2kprime", - "extension": ".1", - "date": "2017-05-18", - "size": 281, - "sha1": "bca066352f0a727770c9e1ba95b74b0fd1e49065", - "md5": "74e9698b3d553bf92f3433b57091c900", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": "Groff", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/etc/2kprime.c", - "type": "file", - "name": "2kprime.c", - "base_name": "2kprime", - "extension": ".c", - "date": "2017-05-18", - "size": 1819, - "sha1": "b001c8ef24408aba0dfa4f7462e61969c6968bd3", - "md5": "c3075690e70a0ca215d44f324d279ffe", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/etc/drprime.c", - "type": "file", - "name": "drprime.c", - "base_name": "drprime", - "extension": ".c", - "date": "2017-05-18", - "size": 1667, - "sha1": "df563d5b3f2832a2cacc8506e5ecf30dcef25a3c", - "md5": "ad03c73ab553b6593c749d16f92d6baa", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/etc/drprimes.28", - "type": "file", - "name": "drprimes.28", - "base_name": "drprimes", - "extension": ".28", - "date": "2017-05-18", - "size": 4249, - "sha1": "d3a9cb7e891a1c26d8e9b2b7e3f73e36e0b7941b", - "md5": "e9cf03066bcc1909ae9d012f8476a0c5", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/etc/drprimes.txt", - "type": "file", - "name": "drprimes.txt", - "base_name": "drprimes", - "extension": ".txt", - "date": "2017-05-18", - "size": 555, - "sha1": "748f978f785fc935efcfc622f27fe53a4993fc80", - "md5": "20b54e0eec515799656ee7729195424e", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/etc/makefile", - "type": "file", - "name": "makefile", - "base_name": "makefile", - "extension": "", - "date": "2017-05-18", - "size": 1392, - "sha1": "a7f87a81798ae6cf8320687175dcdeabd862a4eb", - "md5": "0250070df910e52e476aae4439b044ce", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/etc/makefile.icc", - "type": "file", - "name": "makefile.icc", - "base_name": "makefile", - "extension": ".icc", - "date": "2017-05-18", - "size": 1762, - "sha1": "e115ddcc88cff9c28dbe597dd5b0c076e4e65d80", - "md5": "ccd0e0b9003e7fb4168a9f84b4642062", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/etc/makefile.msvc", - "type": "file", - "name": "makefile.msvc", - "base_name": "makefile", - "extension": ".msvc", - "date": "2017-05-18", - "size": 366, - "sha1": "fe51f9ad1c7cb9f2d23bca7a140d46fe480ebf3c", - "md5": "46483bed1b2c046128d0a6bb811e1df9", - "files_count": null, - "mime_type": "text/x-makefile", - "file_type": "makefile script, ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/etc/mersenne.c", - "type": "file", - "name": "mersenne.c", - "base_name": "mersenne", - "extension": ".c", - "date": "2017-05-18", - "size": 2352, - "sha1": "05d1c4504baf9d7568ec2daf99e2074a7661edda", - "md5": "2384b1873cf44bfe447d2d68b6bcb021", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/etc/mont.c", - "type": "file", - "name": "mont.c", - "base_name": "mont", - "extension": ".c", - "date": "2017-05-18", - "size": 1159, - "sha1": "b2584eb8712177a6e88175f408d45048492a5e1f", - "md5": "8972e1d31ec2c62992323f11c81534df", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/etc/pprime.c", - "type": "file", - "name": "pprime.c", - "base_name": "pprime", - "extension": ".c", - "date": "2017-05-18", - "size": 7935, - "sha1": "8b86a9609ef70775d0d2cbf7f4ae17d160748509", - "md5": "d3e780598dfc46ca4097b7d34aaaa3cb", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/etc/prime.1024", - "type": "file", - "name": "prime.1024", - "base_name": "prime", - "extension": ".1024", - "date": "2017-05-18", - "size": 17439, - "sha1": "0867a29f21856790289596532af7e528b64955a2", - "md5": "5021b068700fb5a947fb446d3ba0490b", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/etc/prime.512", - "type": "file", - "name": "prime.512", - "base_name": "prime", - "extension": ".512", - "date": "2017-05-18", - "size": 5726, - "sha1": "dc46a62c261fd1753420f62066840a14c856e57e", - "md5": "cdba1b55e58614d5b35e699c46fcf4a9", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/etc/timer.asm", - "type": "file", - "name": "timer.asm", - "base_name": "timer", - "extension": ".asm", - "date": "2017-05-18", - "size": 475, - "sha1": "c38980bb26532b829d6678ae2ebbecb24ebb9537", - "md5": "4857c44b7ed2a6beb8976ed84c5d2fb8", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "NASM", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/etc/tune.c", - "type": "file", - "name": "tune.c", - "base_name": "tune", - "extension": ".c", - "date": "2017-05-18", - "size": 2935, - "sha1": "279fc742cd93d888912d31aa4b75fddd40acd9b3", - "md5": "d0f52258b0e8382af465b79f57d442ef", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/logs/add.log", - "type": "file", - "name": "add.log", - "base_name": "add", - "extension": ".log", - "date": "2017-05-18", - "size": 238, - "sha1": "528863a29a3d5176b6fb34eef261663081b88c7f", - "md5": "291bf3d40dd22fbe2d2ec4b38bc4ec39", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/logs/addsub.png", - "type": "file", - "name": "addsub.png", - "base_name": "addsub", - "extension": ".png", - "date": "2017-05-18", - "size": 6254, - "sha1": "7620d52ec0019c9a804f3943695c215688bec398", - "md5": "5318b94f61af41f4ad4ddda24ddd0568", - "files_count": null, - "mime_type": "image/png", - "file_type": "PNG image data, 1120 x 840, 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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/logs/expt.log", - "type": "file", - "name": "expt.log", - "base_name": "expt", - "extension": ".log", - "date": "2017-05-18", - "size": 103, - "sha1": "844591313c860202b913bffdd920a9025224f12d", - "md5": "10fe784d770890c1b3f062700c9fd1c7", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/logs/expt.png", - "type": "file", - "name": "expt.png", - "base_name": "expt", - "extension": ".png", - "date": "2017-05-18", - "size": 6605, - "sha1": "4d2052c39da2fa14754ece810bf2bba2fbc380e1", - "md5": "d7fa974d87e8c50368136276e899bcaa", - "files_count": null, - "mime_type": "image/png", - "file_type": "PNG image data, 1120 x 840, 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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/logs/expt_2k.log", - "type": "file", - "name": "expt_2k.log", - "base_name": "expt_2k", - "extension": ".log", - "date": "2017-05-18", - "size": 74, - "sha1": "cab3eff5681a7b6a61d89139b2a3fdf0873bd758", - "md5": "a272af3ecf86f7882dde66aea2ba953e", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/logs/expt_2kl.log", - "type": "file", - "name": "expt_2kl.log", - "base_name": "expt_2kl", - "extension": ".log", - "date": "2017-05-18", - "size": 59, - "sha1": "80ed576fe5c5e22386d6311eaee185bbc26c8665", - "md5": "53ab468713839bf7e5bb1c4b4cafc641", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/logs/expt_dr.log", - "type": "file", - "name": "expt_dr.log", - "base_name": "expt_dr", - "extension": ".log", - "date": "2017-05-18", - "size": 103, - "sha1": "daa8084e574da2483c25df823cd8187a6acbf8fb", - "md5": "5b2c968c6bbb2c1cf8c805bcf7099985", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/logs/graphs.dem", - "type": "file", - "name": "graphs.dem", - "base_name": "graphs", - "extension": ".dem", - "date": "2017-05-18", - "size": 786, - "sha1": "467f6c3dccef1ea64d84f2bac5f31e23ff334867", - "md5": "fcab4e30eca05bfb1d8d120005d04d46", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/logs/index.html", - "type": "file", - "name": "index.html", - "base_name": "index", - "extension": ".html", - "date": "2017-05-18", - "size": 467, - "sha1": "5f30550054b2895f971751df747c78d44f6598e3", - "md5": "be3b0aac6d17e05d31aeee23a3fae1fc", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/logs/invmod.log", - "type": "file", - "name": "invmod.log", - "base_name": "invmod", - "extension": ".log", - "date": "2017-05-18", - "size": 0, - "sha1": null, - "md5": null, - "files_count": 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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/logs/invmod.png", - "type": "file", - "name": "invmod.png", - "base_name": "invmod", - "extension": ".png", - "date": "2017-05-18", - "size": 4918, - "sha1": "22a1361aa5b92372056e900c698a49118e1a941c", - "md5": "64389328ad0378d87faca5998bb638e0", - "files_count": null, - "mime_type": "image/png", - "file_type": "PNG image data, 1120 x 840, 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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/logs/mult.log", - "type": "file", - "name": "mult.log", - "base_name": "mult", - "extension": ".log", - "date": "2017-05-18", - "size": 1255, - "sha1": "5f0669e360af91568d5b9bb16a4e920c2c265e7f", - "md5": "51756eba5206611f477e074de38a6092", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/logs/mult.png", - "type": "file", - "name": "mult.png", - "base_name": "mult", - "extension": ".png", - "date": "2017-05-18", - "size": 6770, - "sha1": "1329681fa28d186842464da64820f97d1ce5f2a4", - "md5": "772d11b48fda3daebec111108c285471", - "files_count": null, - "mime_type": "image/png", - "file_type": "PNG image data, 1120 x 840, 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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/logs/mult_kara.log", - "type": "file", - "name": "mult_kara.log", - "base_name": "mult_kara", - "extension": ".log", - "date": "2017-05-18", - "size": 1255, - "sha1": "5ef11b188fc3c11588d5d31292e5b7462482a209", - "md5": "e703c14d066284d61819afcfd3dc8a91", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/logs/README", - "type": "file", - "name": "README", - "base_name": "README", - "extension": "", - "date": "2017-05-18", - "size": 428, - "sha1": "a35d80785b6881f18a35bf069cbcd820b71e41e7", - "md5": "edc4bdc6e62bd04c4569c5838276eb00", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Prolog", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/logs/sqr.log", - "type": "file", - "name": "sqr.log", - "base_name": "sqr", - "extension": ".log", - "date": "2017-05-18", - "size": 1255, - "sha1": "2817d882b889dbb7827e1ede5e4e0be59c88f4a7", - "md5": "3ab528eea559552aaaf46bd539dc405c", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/logs/sqr_kara.log", - "type": "file", - "name": "sqr_kara.log", - "base_name": "sqr_kara", - "extension": ".log", - "date": "2017-05-18", - "size": 1255, - "sha1": "a155843ee310698ab5ed583bc4e346f48d84937b", - "md5": "ff1cdb2e0809c33d3262d86b80d97e5b", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/logs/sub.log", - "type": "file", - "name": "sub.log", - "base_name": "sub", - "extension": ".log", - "date": "2017-05-18", - "size": 238, - "sha1": "54c88133ac76a3a3e6ef5a782e41abb90a50ec2d", - "md5": "298a410b375fb93228c4db63a90f0047", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/mtest/logtab.h", - "type": "file", - "name": "logtab.h", - "base_name": "logtab", - "extension": ".h", - "date": "2017-05-18", - "size": 1346, - "sha1": "2946d54b88ca7516643cc60cbc849abd2f68a9b6", - "md5": "8606d186591982d732e08c58341f05bc", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/mtest/mpi-config.h", - "type": "file", - "name": "mpi-config.h", - "base_name": "mpi-config", - "extension": ".h", - "date": "2017-05-18", - "size": 2173, - "sha1": "bf052be25775701669c472e40e7a0857614cab3b", - "md5": "2eff1934e9f7e337819b5eac2c545f6c", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/mtest/mpi-types.h", - "type": "file", - "name": "mpi-types.h", - "base_name": "mpi-types", - "extension": ".h", - "date": "2017-05-18", - "size": 677, - "sha1": "b82ceb5f38175ba7c183b4fd26e9e709ca5cd885", - "md5": "b2fa8d0419a600ac9d2aa9c20b212a1b", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/mtest/mpi.c", - "type": "file", - "name": "mpi.c", - "base_name": "mpi", - "extension": ".c", - "date": "2017-05-18", - "size": 80839, - "sha1": "d331154df2e6f868537b56bb4b5db8aaf675c950", - "md5": "cc7caa3a7bf35d26b40f08bf2cf2fa2e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1998 Michael J. Fromberger" - ], - "holders": [ - "Michael J. Fromberger" - ], - "authors": [ - "Michael J. Fromberger " - ], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/mtest/mpi.h", - "type": "file", - "name": "mpi.h", - "base_name": "mpi", - "extension": ".h", - "date": "2017-05-18", - "size": 7850, - "sha1": "a57526b17d78bd1ce8fa81d5001ce6fcc19f311d", - "md5": "94c900b9d7c4aa551edbdd69febc4d9e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1998 Michael J. Fromberger" - ], - "holders": [ - "Michael J. Fromberger" - ], - "authors": [ - "Michael J. Fromberger " - ], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/mtest/mtest.c", - "type": "file", - "name": "mtest.c", - "base_name": "mtest", - "extension": ".c", - "date": "2017-05-18", - "size": 6760, - "sha1": "0c8cbf2794a568809e0d9a0d4639a61ca4f2c7e5", - "md5": "6072208ead473fcd90f191469f409a24", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/pics/design_process.sxd", - "type": "file", - "name": "design_process.sxd", - "base_name": "design_process", - "extension": ".sxd", - "date": "2017-05-18", - "size": 6950, - "sha1": "64579069e408f7e6ceda7951bde0ef1ef42960ca", - "md5": "286898646e62a39139595ffc6b03225e", - "files_count": null, - "mime_type": "application/octet-stream", - "file_type": "OpenOffice.org 1.x Draw document", - "programming_language": null, - "is_binary": true, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/pics/design_process.tif", - "type": "file", - "name": "design_process.tif", - "base_name": "design_process", - "extension": ".tif", - "date": "2017-05-18", - "size": 79042, - "sha1": "cbf992df42aafb6db320258d9117a96eba41a57a", - "md5": "a2b710d97b9520f0be8d5b23914a5365", - "files_count": null, - "mime_type": "image/tiff", - "file_type": "TIFF image data, little-endian, direntries=19, height=674, bps=13352, compression=Deflate (PKZIP), PhotometricIntepretation=RGB, name=design_process.tif, description=Created with The GIMP, orientation=upper-left, width=1594", - "programming_language": null, - "is_binary": true, - "is_text": false, - "is_archive": false, - "is_media": true, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/pics/expt_state.sxd", - "type": "file", - "name": "expt_state.sxd", - "base_name": "expt_state", - "extension": ".sxd", - "date": "2017-05-18", - "size": 6869, - "sha1": "643b0367363109d2974f5ea5041234b4ffae3db6", - "md5": "4d5e495a1268789d05674a104b4edf5a", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/pics/expt_state.tif", - "type": "file", - "name": "expt_state.tif", - "base_name": "expt_state", - "extension": ".tif", - "date": "2017-05-18", - "size": 87542, - "sha1": "8a83f4dec23a49c70d159facffb5dfcc46204618", - "md5": "ad3617119d052910511849c0c2975b53", - "files_count": null, - "mime_type": "image/tiff", - "file_type": "TIFF image data, little-endian, direntries=19, height=577, bps=21840, compression=Deflate (PKZIP), PhotometricIntepretation=RGB, name=C:\\toms\\libtommath\\pics\\expt_state.tif, description=Created with The GIMP, orientation=upper-left, width=1477", - "programming_language": null, - "is_binary": true, - "is_text": false, - "is_archive": false, - "is_media": true, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/pics/makefile", - "type": "file", - "name": "makefile", - "base_name": "makefile", - "extension": "", - "date": "2017-05-18", - "size": 805, - "sha1": "42eb423e60521ddf59e8243e0b9d27bdafed4ffa", - "md5": "7711079c5a021ef85e0194a5aebc7c39", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/pics/primality.tif", - "type": "file", - "name": "primality.tif", - "base_name": "primality", - "extension": ".tif", - "date": "2017-05-18", - "size": 85514, - "sha1": "4f9013fe6ec0a684cfd28bcb534bd860d96207b4", - "md5": "b434784562a0647382178a057f37202e", - "files_count": null, - "mime_type": "image/tiff", - "file_type": "TIFF image data, little-endian, direntries=18, height=1241, bps=19736, compression=Deflate (PKZIP), PhotometricIntepretation=RGB, name=C:\\toms\\libtommath\\pics\\primality.tif, description=Created with The GIMP, orientation=upper-left, width=1654", - "programming_language": null, - "is_binary": true, - "is_text": false, - "is_archive": false, - "is_media": true, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/pics/radix.sxd", - "type": "file", - "name": "radix.sxd", - "base_name": "radix", - "extension": ".sxd", - "date": "2017-05-18", - "size": 6181, - "sha1": "0a7851b1c898430cccffe6f4206e9a481b2e419e", - "md5": "340324e170ef8946d279e868216aaf81", - "files_count": null, - "mime_type": "application/octet-stream", - "file_type": "OpenOffice.org 1.x Draw document", - "programming_language": null, - "is_binary": true, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/pics/sliding_window.sxd", - "type": "file", - "name": "sliding_window.sxd", - "base_name": "sliding_window", - "extension": ".sxd", - "date": "2017-05-18", - "size": 6787, - "sha1": "ce2b2b35e0e686c6aa75436ab7f1306ac2e15b93", - "md5": "567642c73c17392166c2e93c0bc7918f", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/pics/sliding_window.tif", - "type": "file", - "name": "sliding_window.tif", - "base_name": "sliding_window", - "extension": ".tif", - "date": "2017-05-18", - "size": 53880, - "sha1": "9f70a7fa43bfac245f8cc2cedc83ea478944a809", - "md5": "0a5a45ff67ee9961c4ca28e19b732f24", - "files_count": null, - "mime_type": "image/tiff", - "file_type": "TIFF image data, little-endian, direntries=19, height=563, bps=53718, compression=Deflate (PKZIP), PhotometricIntepretation=RGB, name=C:\\toms\\libtommath\\pics\\sliding_window.tif, description=Created with The GIMP, orientation=upper-left, width=1653", - "programming_language": null, - "is_binary": true, - "is_text": false, - "is_archive": false, - "is_media": true, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/pre_gen/mpi.c", - "type": "file", - "name": "mpi.c", - "base_name": "mpi", - "extension": ".c", - "date": "2017-05-18", - "size": 238629, - "sha1": "b2a784f7b7fc863048d03ce94b9cd0cfc03c199d", - "md5": "f2feef47ffbfbdbf567ce87053345c6a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "dropbear-2017.75/libtommath/tombc/grammar.txt", - "type": "file", - "name": "grammar.txt", - "base_name": "grammar", - "extension": ".txt", - "date": "2017-05-18", - "size": 2319, - "sha1": "0595ea070a28f54a97570563ad5431b3084d7e7c", - "md5": "97ab1345f19f3a784daf0f58a8d8e558", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - } - ] -} diff --git a/tests/data/models/scan/empty.json b/tests/data/models/scan/empty.json deleted file mode 100644 index 0967ef42..00000000 --- a/tests/data/models/scan/empty.json +++ /dev/null @@ -1 +0,0 @@ -{} diff --git a/tests/data/models/scan/empty.txt b/tests/data/models/scan/empty.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/data/models/scan/files-count-mismatch.json b/tests/data/models/scan/files-count-mismatch.json deleted file mode 100644 index 853c4336..00000000 --- a/tests/data/models/scan/files-count-mismatch.json +++ /dev/null @@ -1,958 +0,0 @@ -{ - "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.2.1.post14.e66db963", - "scancode_options": { - "--info": true, - "--license-score": 0, - "--format": "json-pp" - }, - "files_count": 42, - "files": [ - { - "path": "samples/README", - "type": "file", - "name": "README", - "base_name": "README", - "extension": "", - "date": "2017-10-19", - "size": 236, - "sha1": "2e07e32c52d607204fad196052d70e3d18fb8636", - "md5": "effc6856ef85a9250fb1a470792b3f38", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/screenshot.png", - "type": "file", - "name": "screenshot.png", - "base_name": "screenshot", - "extension": ".png", - "date": "2017-10-19", - "size": 622754, - "sha1": "01ff4b1de0bc6c75c9cca6e46c80c1802d6976d4", - "md5": "b6ef5a90777147423c98b42a6a25e57a", - "files_count": null, - "mime_type": "image/png", - "file_type": "PNG image data, 2880 x 1666, 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, - "scan_errors": [] - }, - { - "path": "samples/zlib", - "type": "directory", - "name": "zlib", - "base_name": "zlib", - "extension": "", - "date": null, - "size": 268762, - "sha1": null, - "md5": null, - "files_count": 16, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/JGroups", - "type": "directory", - "name": "JGroups", - "base_name": "JGroups", - "extension": "", - "date": null, - "size": 241228, - "sha1": null, - "md5": null, - "files_count": 14, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/arch", - "type": "directory", - "name": "arch", - "base_name": "arch", - "extension": "", - "date": null, - "size": 28103, - "sha1": null, - "md5": null, - "files_count": 1, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/deflate.c", - "type": "file", - "name": "deflate.c", - "base_name": "deflate", - "extension": ".c", - "date": "2017-10-19", - "size": 71476, - "sha1": "7b4ace6d698c5dbbfb9a8f047f63228ca54d2e77", - "md5": "cd7826278ce9d9d9ed5abdefef50c3e2", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/zlib.h", - "type": "file", - "name": "zlib.h", - "base_name": "zlib", - "extension": ".h", - "date": "2017-10-19", - "size": 87883, - "sha1": "400d35465f179a4acacb5fe749e6ce20a0bbdb84", - "md5": "64d8a5180bd54ff5452886e4cbb21e14", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/zutil.c", - "type": "file", - "name": "zutil.c", - "base_name": "zutil", - "extension": ".c", - "date": "2017-10-19", - "size": 7414, - "sha1": "e1af709bff21ae0d4331119a7fc4c19f82932043", - "md5": "fff257bc1656eb60fc585a7dc35f963d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/adler32.c", - "type": "file", - "name": "adler32.c", - "base_name": "adler32", - "extension": ".c", - "date": "2017-10-19", - "size": 4968, - "sha1": "0cff4808476ce0b5f6f0ebbc69ee2ab2a0eebe43", - "md5": "ae3bbb54820e1d49fb90cbba222e973f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/zutil.h", - "type": "file", - "name": "zutil.h", - "base_name": "zutil", - "extension": ".h", - "date": "2017-10-19", - "size": 6766, - "sha1": "b909d27ef9ce51639f76b7ea6b62721e7d1b6bf7", - "md5": "04fcfbb961591c9452c4d0fd1525ffdf", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/deflate.h", - "type": "file", - "name": "deflate.h", - "base_name": "deflate", - "extension": ".h", - "date": "2017-10-19", - "size": 12774, - "sha1": "29ed3b8ca3927576e5889dea5880ca0052942c7d", - "md5": "7ceae74a13201f14c91623116af169c3", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/infback9", - "type": "directory", - "name": "infback9", - "base_name": "infback9", - "extension": "", - "date": null, - "size": 23223, - "sha1": null, - "md5": null, - "files_count": 2, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/ada", - "type": "directory", - "name": "ada", - "base_name": "ada", - "extension": "", - "date": null, - "size": 13594, - "sha1": null, - "md5": null, - "files_count": 1, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/gcc_gvmat64", - "type": "directory", - "name": "gcc_gvmat64", - "base_name": "gcc_gvmat64", - "extension": "", - "date": null, - "size": 16413, - "sha1": null, - "md5": null, - "files_count": 1, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/dotzlib", - "type": "directory", - "name": "dotzlib", - "base_name": "dotzlib", - "extension": "", - "date": null, - "size": 14257, - "sha1": null, - "md5": null, - "files_count": 4, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/iostream2", - "type": "directory", - "name": "iostream2", - "base_name": "iostream2", - "extension": "", - "date": null, - "size": 9994, - "sha1": null, - "md5": null, - "files_count": 2, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/infback9/infback9.c", - "type": "file", - "name": "infback9.c", - "base_name": "infback9", - "extension": ".c", - "date": "2017-10-19", - "size": 21629, - "sha1": "17fb362c03755b12f2dda5b12a68cf38162674bd", - "md5": "23ff5edec0817da303cb1294c1e4205c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/infback9/infback9.h", - "type": "file", - "name": "infback9.h", - "base_name": "infback9", - "extension": ".h", - "date": "2017-10-19", - "size": 1594, - "sha1": "d0486a32b558dcaceded5f0746fad62e680a4734", - "md5": "52b1ed99960d3ed7ed60cd20295e64a8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/ada/zlib.ads", - "type": "file", - "name": "zlib.ads", - "base_name": "zlib", - "extension": ".ads", - "date": "2017-10-19", - "size": 13594, - "sha1": "0245a91806d804bf9f0907a3a001a141e9adb61b", - "md5": "71de2670f2e588b51c62e7f6a9046399", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": "Ada", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/gcc_gvmat64/gvmat64.S", - "type": "file", - "name": "gvmat64.S", - "base_name": "gvmat64", - "extension": ".S", - "date": "2017-10-19", - "size": 16413, - "sha1": "742603cba1af98a1432cc02efb019b1a5760adf2", - "md5": "5e772d7302475e5473d0c4c57b9861e8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "GAS", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/dotzlib/readme.txt", - "type": "file", - "name": "readme.txt", - "base_name": "readme", - "extension": ".txt", - "date": "2017-10-19", - "size": 2358, - "sha1": "b1229b826f0096808628474538cea8fec2922a9b", - "md5": "1f20f3168ee63d90de033edac2ce383c", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/dotzlib/AssemblyInfo.cs", - "type": "file", - "name": "AssemblyInfo.cs", - "base_name": "AssemblyInfo", - "extension": ".cs", - "date": "2017-10-19", - "size": 2500, - "sha1": "9f1db1177b2e9a014f72bb3cd80be17133e06d16", - "md5": "23d0d7c18846fc31655b6aa89b7c8038", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "C#", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/dotzlib/LICENSE_1_0.txt", - "type": "file", - "name": "LICENSE_1_0.txt", - "base_name": "LICENSE_1_0", - "extension": ".txt", - "date": "2017-10-19", - "size": 1359, - "sha1": "892b34f7865d90a6f949f50d95e49625a10bc7f0", - "md5": "81543b22c36f10d20ac9712f8d80ef8d", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/dotzlib/ChecksumImpl.cs", - "type": "file", - "name": "ChecksumImpl.cs", - "base_name": "ChecksumImpl", - "extension": ".cs", - "date": "2017-10-19", - "size": 8040, - "sha1": "3807a0e24a57b92ea301559cab7307b8eab52c51", - "md5": "d01b3cb2e75da9b15f05b92b42f6bd33", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ISO-8859 text, with CRLF line terminators", - "programming_language": "C#", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/iostream2/zstream.h", - "type": "file", - "name": "zstream.h", - "base_name": "zstream", - "extension": ".h", - "date": "2017-10-19", - "size": 9283, - "sha1": "fca4540d490fff36bb90fd801cf9cd8fc695bb17", - "md5": "a980b61c1e8be68d5cdb1236ba6b43e7", - "files_count": null, - "mime_type": "text/x-c++", - "file_type": "C++ source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/iostream2/zstream_test.cpp", - "type": "file", - "name": "zstream_test.cpp", - "base_name": "zstream_test", - "extension": ".cpp", - "date": "2017-10-19", - "size": 711, - "sha1": "e18a6d55cbbd8b832f8d795530553467e5c74fcf", - "md5": "d32476bde4e6d5f889092fdff6f8cdb0", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C++", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/JGroups/EULA", - "type": "file", - "name": "EULA", - "base_name": "EULA", - "extension": "", - "date": "2017-10-19", - "size": 8156, - "sha1": "eb232aa0424eca9c4136904e6143b72aaa9cf4de", - "md5": "0be0aceb8296727efff0ac0bf8e6bdb3", - "files_count": null, - "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, - "scan_errors": [] - }, - { - "path": "samples/JGroups/LICENSE", - "type": "file", - "name": "LICENSE", - "base_name": "LICENSE", - "extension": "", - "date": "2017-10-19", - "size": 26430, - "sha1": "e60c2e780886f95df9c9ee36992b8edabec00bcc", - "md5": "7fbc338309ac38fefcd64b04bb903e34", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/JGroups/licenses", - "type": "directory", - "name": "licenses", - "base_name": "licenses", - "extension": "", - "date": null, - "size": 54552, - "sha1": null, - "md5": null, - "files_count": 5, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/JGroups/src", - "type": "directory", - "name": "src", - "base_name": "src", - "extension": "", - "date": null, - "size": 152090, - "sha1": null, - "md5": null, - "files_count": 7, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/JGroups/licenses/apache-2.0.txt", - "type": "file", - "name": "apache-2.0.txt", - "base_name": "apache-2.0", - "extension": ".txt", - "date": "2017-10-19", - "size": 11560, - "sha1": "47b573e3824cd5e02a1a3ae99e2735b49e0256e4", - "md5": "d273d63619c9aeaf15cdaf76422c4f87", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/JGroups/licenses/bouncycastle.txt", - "type": "file", - "name": "bouncycastle.txt", - "base_name": "bouncycastle", - "extension": ".txt", - "date": "2017-10-19", - "size": 1186, - "sha1": "74facb0e9a734479f9cd893b5be3fe1bf651b760", - "md5": "9fffd8de865a5705969f62b128381f85", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/JGroups/licenses/lgpl.txt", - "type": "file", - "name": "lgpl.txt", - "base_name": "lgpl", - "extension": ".txt", - "date": "2017-10-19", - "size": 26934, - "sha1": "8f1a637d2e2ed1bdb9eb01a7dccb5c12cc0557e1", - "md5": "f14599a2f089f6ff8c97e2baa4e3d575", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/JGroups/licenses/cpl-1.0.txt", - "type": "file", - "name": "cpl-1.0.txt", - "base_name": "cpl-1.0", - "extension": ".txt", - "date": "2017-10-19", - "size": 11987, - "sha1": "681cf776bcd79752543d42490ec7ed22a29fd888", - "md5": "9a6d2c9ae73d59eb3dd38e3909750d14", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/JGroups/licenses/apache-1.1.txt", - "type": "file", - "name": "apache-1.1.txt", - "base_name": "apache-1.1", - "extension": ".txt", - "date": "2017-10-19", - "size": 2885, - "sha1": "6b5608d35c3e304532af43db8bbfc5947bef46a6", - "md5": "276982197c941f4cbf3d218546e17ae2", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/JGroups/src/RATE_LIMITER.java", - "type": "file", - "name": "RATE_LIMITER.java", - "base_name": "RATE_LIMITER", - "extension": ".java", - "date": "2017-10-19", - "size": 3692, - "sha1": "a8087e5d50da3273536ebda9b87b77aa4ff55deb", - "md5": "4626bdbc48871b55513e1a12991c61a8", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/JGroups/src/RouterStub.java", - "type": "file", - "name": "RouterStub.java", - "base_name": "RouterStub", - "extension": ".java", - "date": "2017-10-19", - "size": 9913, - "sha1": "c1f6818f8ee7bddcc9f444bc94c099729d716d52", - "md5": "eecfe23494acbcd8088c93bc1e83c7f2", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/JGroups/src/ImmutableReference.java", - "type": "file", - "name": "ImmutableReference.java", - "base_name": "ImmutableReference", - "extension": ".java", - "date": "2017-10-19", - "size": 1838, - "sha1": "30f56b876d5576d9869e2c5c509b08db57110592", - "md5": "48ca3c72fb9a65c771a321222f118b88", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/JGroups/src/FixedMembershipToken.java", - "type": "file", - "name": "FixedMembershipToken.java", - "base_name": "FixedMembershipToken", - "extension": ".java", - "date": "2017-10-19", - "size": 5144, - "sha1": "5901f73dcc78155a1a2c7b5663a3a11fba400b19", - "md5": "aca9640ec8beee21b098bcf8ecc91442", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/JGroups/src/RouterStubManager.java", - "type": "file", - "name": "RouterStubManager.java", - "base_name": "RouterStubManager", - "extension": ".java", - "date": "2017-10-19", - "size": 8162, - "sha1": "eb419dc94cfe11ca318a3e743a7f9f080e70c751", - "md5": "20bee9631b7c82a45c250e095352aec7", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/JGroups/src/S3_PING.java", - "type": "file", - "name": "S3_PING.java", - "base_name": "S3_PING", - "extension": ".java", - "date": "2017-10-19", - "size": 122528, - "sha1": "08dba9986f69719970ead3592dc565465164df0d", - "md5": "83d8324f37d0e3f120bc89865cf0bd39", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/JGroups/src/GuardedBy.java", - "type": "file", - "name": "GuardedBy.java", - "base_name": "GuardedBy", - "extension": ".java", - "date": "2017-10-19", - "size": 813, - "sha1": "981d67087e65e9a44957c026d4b10817cf77d966", - "md5": "c5064400f759d3e81771005051d17dc1", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/arch/zlib.tar.gz", - "type": "file", - "name": "zlib.tar.gz", - "base_name": "zlib", - "extension": ".tar.gz", - "date": "2017-10-19", - "size": 28103, - "sha1": "576f0ccfe534d7f5ff5d6400078d3c6586de3abd", - "md5": "20b2370751abfc08bb3556c1d8114b5a", - "files_count": null, - "mime_type": "application/x-gzip", - "file_type": "gzip compressed data, last modified: Wed Jul 15 02:08:19 2015, from Unix", - "programming_language": null, - "is_binary": true, - "is_text": false, - "is_archive": true, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - } - ] -} diff --git a/tests/data/models/scan/files-mismatch.json b/tests/data/models/scan/files-mismatch.json deleted file mode 100644 index 5d10f498..00000000 --- a/tests/data/models/scan/files-mismatch.json +++ /dev/null @@ -1,936 +0,0 @@ -{ - "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.2.1.post14.e66db963", - "scancode_options": { - "--info": true, - "--license-score": 0, - "--format": "json-pp" - }, - "files_count": 43, - "files": [ - { - "path": "samples/screenshot.png", - "type": "file", - "name": "screenshot.png", - "base_name": "screenshot", - "extension": ".png", - "date": "2017-10-19", - "size": 622754, - "sha1": "01ff4b1de0bc6c75c9cca6e46c80c1802d6976d4", - "md5": "b6ef5a90777147423c98b42a6a25e57a", - "files_count": null, - "mime_type": "image/png", - "file_type": "PNG image data, 2880 x 1666, 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, - "scan_errors": [] - }, - { - "path": "samples/zlib", - "type": "directory", - "name": "zlib", - "base_name": "zlib", - "extension": "", - "date": null, - "size": 268762, - "sha1": null, - "md5": null, - "files_count": 16, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/JGroups", - "type": "directory", - "name": "JGroups", - "base_name": "JGroups", - "extension": "", - "date": null, - "size": 241228, - "sha1": null, - "md5": null, - "files_count": 14, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/arch", - "type": "directory", - "name": "arch", - "base_name": "arch", - "extension": "", - "date": null, - "size": 28103, - "sha1": null, - "md5": null, - "files_count": 1, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/deflate.c", - "type": "file", - "name": "deflate.c", - "base_name": "deflate", - "extension": ".c", - "date": "2017-10-19", - "size": 71476, - "sha1": "7b4ace6d698c5dbbfb9a8f047f63228ca54d2e77", - "md5": "cd7826278ce9d9d9ed5abdefef50c3e2", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/zlib.h", - "type": "file", - "name": "zlib.h", - "base_name": "zlib", - "extension": ".h", - "date": "2017-10-19", - "size": 87883, - "sha1": "400d35465f179a4acacb5fe749e6ce20a0bbdb84", - "md5": "64d8a5180bd54ff5452886e4cbb21e14", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/zutil.c", - "type": "file", - "name": "zutil.c", - "base_name": "zutil", - "extension": ".c", - "date": "2017-10-19", - "size": 7414, - "sha1": "e1af709bff21ae0d4331119a7fc4c19f82932043", - "md5": "fff257bc1656eb60fc585a7dc35f963d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/adler32.c", - "type": "file", - "name": "adler32.c", - "base_name": "adler32", - "extension": ".c", - "date": "2017-10-19", - "size": 4968, - "sha1": "0cff4808476ce0b5f6f0ebbc69ee2ab2a0eebe43", - "md5": "ae3bbb54820e1d49fb90cbba222e973f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/zutil.h", - "type": "file", - "name": "zutil.h", - "base_name": "zutil", - "extension": ".h", - "date": "2017-10-19", - "size": 6766, - "sha1": "b909d27ef9ce51639f76b7ea6b62721e7d1b6bf7", - "md5": "04fcfbb961591c9452c4d0fd1525ffdf", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/deflate.h", - "type": "file", - "name": "deflate.h", - "base_name": "deflate", - "extension": ".h", - "date": "2017-10-19", - "size": 12774, - "sha1": "29ed3b8ca3927576e5889dea5880ca0052942c7d", - "md5": "7ceae74a13201f14c91623116af169c3", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/infback9", - "type": "directory", - "name": "infback9", - "base_name": "infback9", - "extension": "", - "date": null, - "size": 23223, - "sha1": null, - "md5": null, - "files_count": 2, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/ada", - "type": "directory", - "name": "ada", - "base_name": "ada", - "extension": "", - "date": null, - "size": 13594, - "sha1": null, - "md5": null, - "files_count": 1, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/gcc_gvmat64", - "type": "directory", - "name": "gcc_gvmat64", - "base_name": "gcc_gvmat64", - "extension": "", - "date": null, - "size": 16413, - "sha1": null, - "md5": null, - "files_count": 1, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/dotzlib", - "type": "directory", - "name": "dotzlib", - "base_name": "dotzlib", - "extension": "", - "date": null, - "size": 14257, - "sha1": null, - "md5": null, - "files_count": 4, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/iostream2", - "type": "directory", - "name": "iostream2", - "base_name": "iostream2", - "extension": "", - "date": null, - "size": 9994, - "sha1": null, - "md5": null, - "files_count": 2, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/infback9/infback9.c", - "type": "file", - "name": "infback9.c", - "base_name": "infback9", - "extension": ".c", - "date": "2017-10-19", - "size": 21629, - "sha1": "17fb362c03755b12f2dda5b12a68cf38162674bd", - "md5": "23ff5edec0817da303cb1294c1e4205c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/infback9/infback9.h", - "type": "file", - "name": "infback9.h", - "base_name": "infback9", - "extension": ".h", - "date": "2017-10-19", - "size": 1594, - "sha1": "d0486a32b558dcaceded5f0746fad62e680a4734", - "md5": "52b1ed99960d3ed7ed60cd20295e64a8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/ada/zlib.ads", - "type": "file", - "name": "zlib.ads", - "base_name": "zlib", - "extension": ".ads", - "date": "2017-10-19", - "size": 13594, - "sha1": "0245a91806d804bf9f0907a3a001a141e9adb61b", - "md5": "71de2670f2e588b51c62e7f6a9046399", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": "Ada", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/gcc_gvmat64/gvmat64.S", - "type": "file", - "name": "gvmat64.S", - "base_name": "gvmat64", - "extension": ".S", - "date": "2017-10-19", - "size": 16413, - "sha1": "742603cba1af98a1432cc02efb019b1a5760adf2", - "md5": "5e772d7302475e5473d0c4c57b9861e8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "GAS", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/dotzlib/readme.txt", - "type": "file", - "name": "readme.txt", - "base_name": "readme", - "extension": ".txt", - "date": "2017-10-19", - "size": 2358, - "sha1": "b1229b826f0096808628474538cea8fec2922a9b", - "md5": "1f20f3168ee63d90de033edac2ce383c", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/dotzlib/AssemblyInfo.cs", - "type": "file", - "name": "AssemblyInfo.cs", - "base_name": "AssemblyInfo", - "extension": ".cs", - "date": "2017-10-19", - "size": 2500, - "sha1": "9f1db1177b2e9a014f72bb3cd80be17133e06d16", - "md5": "23d0d7c18846fc31655b6aa89b7c8038", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "C#", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/dotzlib/LICENSE_1_0.txt", - "type": "file", - "name": "LICENSE_1_0.txt", - "base_name": "LICENSE_1_0", - "extension": ".txt", - "date": "2017-10-19", - "size": 1359, - "sha1": "892b34f7865d90a6f949f50d95e49625a10bc7f0", - "md5": "81543b22c36f10d20ac9712f8d80ef8d", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/dotzlib/ChecksumImpl.cs", - "type": "file", - "name": "ChecksumImpl.cs", - "base_name": "ChecksumImpl", - "extension": ".cs", - "date": "2017-10-19", - "size": 8040, - "sha1": "3807a0e24a57b92ea301559cab7307b8eab52c51", - "md5": "d01b3cb2e75da9b15f05b92b42f6bd33", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ISO-8859 text, with CRLF line terminators", - "programming_language": "C#", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/iostream2/zstream.h", - "type": "file", - "name": "zstream.h", - "base_name": "zstream", - "extension": ".h", - "date": "2017-10-19", - "size": 9283, - "sha1": "fca4540d490fff36bb90fd801cf9cd8fc695bb17", - "md5": "a980b61c1e8be68d5cdb1236ba6b43e7", - "files_count": null, - "mime_type": "text/x-c++", - "file_type": "C++ source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/iostream2/zstream_test.cpp", - "type": "file", - "name": "zstream_test.cpp", - "base_name": "zstream_test", - "extension": ".cpp", - "date": "2017-10-19", - "size": 711, - "sha1": "e18a6d55cbbd8b832f8d795530553467e5c74fcf", - "md5": "d32476bde4e6d5f889092fdff6f8cdb0", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C++", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/JGroups/EULA", - "type": "file", - "name": "EULA", - "base_name": "EULA", - "extension": "", - "date": "2017-10-19", - "size": 8156, - "sha1": "eb232aa0424eca9c4136904e6143b72aaa9cf4de", - "md5": "0be0aceb8296727efff0ac0bf8e6bdb3", - "files_count": null, - "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, - "scan_errors": [] - }, - { - "path": "samples/JGroups/LICENSE", - "type": "file", - "name": "LICENSE", - "base_name": "LICENSE", - "extension": "", - "date": "2017-10-19", - "size": 26430, - "sha1": "e60c2e780886f95df9c9ee36992b8edabec00bcc", - "md5": "7fbc338309ac38fefcd64b04bb903e34", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/JGroups/licenses", - "type": "directory", - "name": "licenses", - "base_name": "licenses", - "extension": "", - "date": null, - "size": 54552, - "sha1": null, - "md5": null, - "files_count": 5, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/JGroups/src", - "type": "directory", - "name": "src", - "base_name": "src", - "extension": "", - "date": null, - "size": 152090, - "sha1": null, - "md5": null, - "files_count": 7, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/JGroups/licenses/apache-2.0.txt", - "type": "file", - "name": "apache-2.0.txt", - "base_name": "apache-2.0", - "extension": ".txt", - "date": "2017-10-19", - "size": 11560, - "sha1": "47b573e3824cd5e02a1a3ae99e2735b49e0256e4", - "md5": "d273d63619c9aeaf15cdaf76422c4f87", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/JGroups/licenses/bouncycastle.txt", - "type": "file", - "name": "bouncycastle.txt", - "base_name": "bouncycastle", - "extension": ".txt", - "date": "2017-10-19", - "size": 1186, - "sha1": "74facb0e9a734479f9cd893b5be3fe1bf651b760", - "md5": "9fffd8de865a5705969f62b128381f85", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/JGroups/licenses/lgpl.txt", - "type": "file", - "name": "lgpl.txt", - "base_name": "lgpl", - "extension": ".txt", - "date": "2017-10-19", - "size": 26934, - "sha1": "8f1a637d2e2ed1bdb9eb01a7dccb5c12cc0557e1", - "md5": "f14599a2f089f6ff8c97e2baa4e3d575", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/JGroups/licenses/cpl-1.0.txt", - "type": "file", - "name": "cpl-1.0.txt", - "base_name": "cpl-1.0", - "extension": ".txt", - "date": "2017-10-19", - "size": 11987, - "sha1": "681cf776bcd79752543d42490ec7ed22a29fd888", - "md5": "9a6d2c9ae73d59eb3dd38e3909750d14", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/JGroups/licenses/apache-1.1.txt", - "type": "file", - "name": "apache-1.1.txt", - "base_name": "apache-1.1", - "extension": ".txt", - "date": "2017-10-19", - "size": 2885, - "sha1": "6b5608d35c3e304532af43db8bbfc5947bef46a6", - "md5": "276982197c941f4cbf3d218546e17ae2", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/JGroups/src/RATE_LIMITER.java", - "type": "file", - "name": "RATE_LIMITER.java", - "base_name": "RATE_LIMITER", - "extension": ".java", - "date": "2017-10-19", - "size": 3692, - "sha1": "a8087e5d50da3273536ebda9b87b77aa4ff55deb", - "md5": "4626bdbc48871b55513e1a12991c61a8", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/JGroups/src/RouterStub.java", - "type": "file", - "name": "RouterStub.java", - "base_name": "RouterStub", - "extension": ".java", - "date": "2017-10-19", - "size": 9913, - "sha1": "c1f6818f8ee7bddcc9f444bc94c099729d716d52", - "md5": "eecfe23494acbcd8088c93bc1e83c7f2", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/JGroups/src/ImmutableReference.java", - "type": "file", - "name": "ImmutableReference.java", - "base_name": "ImmutableReference", - "extension": ".java", - "date": "2017-10-19", - "size": 1838, - "sha1": "30f56b876d5576d9869e2c5c509b08db57110592", - "md5": "48ca3c72fb9a65c771a321222f118b88", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/JGroups/src/FixedMembershipToken.java", - "type": "file", - "name": "FixedMembershipToken.java", - "base_name": "FixedMembershipToken", - "extension": ".java", - "date": "2017-10-19", - "size": 5144, - "sha1": "5901f73dcc78155a1a2c7b5663a3a11fba400b19", - "md5": "aca9640ec8beee21b098bcf8ecc91442", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/JGroups/src/RouterStubManager.java", - "type": "file", - "name": "RouterStubManager.java", - "base_name": "RouterStubManager", - "extension": ".java", - "date": "2017-10-19", - "size": 8162, - "sha1": "eb419dc94cfe11ca318a3e743a7f9f080e70c751", - "md5": "20bee9631b7c82a45c250e095352aec7", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/JGroups/src/S3_PING.java", - "type": "file", - "name": "S3_PING.java", - "base_name": "S3_PING", - "extension": ".java", - "date": "2017-10-19", - "size": 122528, - "sha1": "08dba9986f69719970ead3592dc565465164df0d", - "md5": "83d8324f37d0e3f120bc89865cf0bd39", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/JGroups/src/GuardedBy.java", - "type": "file", - "name": "GuardedBy.java", - "base_name": "GuardedBy", - "extension": ".java", - "date": "2017-10-19", - "size": 813, - "sha1": "981d67087e65e9a44957c026d4b10817cf77d966", - "md5": "c5064400f759d3e81771005051d17dc1", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/arch/zlib.tar.gz", - "type": "file", - "name": "zlib.tar.gz", - "base_name": "zlib", - "extension": ".tar.gz", - "date": "2017-10-19", - "size": 28103, - "sha1": "576f0ccfe534d7f5ff5d6400078d3c6586de3abd", - "md5": "20b2370751abfc08bb3556c1d8114b5a", - "files_count": null, - "mime_type": "application/x-gzip", - "file_type": "gzip compressed data, last modified: Wed Jul 15 02:08:19 2015, from Unix", - "programming_language": null, - "is_binary": true, - "is_text": false, - "is_archive": true, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - } - ] -} diff --git a/tests/data/models/scan/info-not-selected.json b/tests/data/models/scan/info-not-selected.json deleted file mode 100644 index 26af19bd..00000000 --- a/tests/data/models/scan/info-not-selected.json +++ /dev/null @@ -1,1363 +0,0 @@ -{ - "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.1.0", - "scancode_options": { - "--copyright": true, - "--license": true, - "--package": true, - "--license-score": 0, - "--format": "json-pp" - }, - "files_count": 43, - "files": [ - { - "path": "samples/README", - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/screenshot.png", - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/arch", - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/JGroups", - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/zlib", - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/arch/zlib.tar.gz", - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [ - { - "type": "plain tarball", - "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": [] - } - ] - }, - { - "path": "samples/JGroups/EULA", - "scan_errors": [], - "licenses": [ - { - "key": "jboss-eula", - "score": 100.0, - "short_name": "JBoss EULA", - "category": "Proprietary Free", - "owner": "JBoss Community", - "homepage_url": "", - "text_url": "http://repository.jboss.org/licenses/jbossorg-eula.txt", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:jboss-eula", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 3, - "end_line": 108, - "matched_rule": { - "identifier": "jboss-eula.LICENSE", - "license_choice": false, - "licenses": [ - "jboss-eula" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 2006 Red Hat, Inc." - ], - "holders": [ - "Red Hat, Inc." - ], - "authors": [], - "start_line": 104, - "end_line": 104 - } - ], - "packages": [] - }, - { - "path": "samples/JGroups/LICENSE", - "scan_errors": [], - "licenses": [ - { - "key": "lgpl-2.1-plus", - "score": 100.0, - "short_name": "LGPL 2.1 or later", - "category": "Copyleft Limited", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "text_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1-plus", - "spdx_license_key": "LGPL-2.1+", - "spdx_url": "https://spdx.org/licenses/LGPL-2.1", - "start_line": 1, - "end_line": 502, - "matched_rule": { - "identifier": "lgpl-2.1-plus_2.RULE", - "license_choice": false, - "licenses": [ - "lgpl-2.1-plus" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1991, 1999 Free Software Foundation, Inc." - ], - "holders": [ - "Free Software Foundation, Inc." - ], - "authors": [], - "start_line": 4, - "end_line": 7 - }, - { - "statements": [ - "copyrighted by the Free Software Foundation" - ], - "holders": [ - "the Free Software Foundation" - ], - "authors": [], - "start_line": 427, - "end_line": 433 - }, - { - "statements": [], - "holders": [], - "authors": [ - "James Random Hacker." - ], - "start_line": 496, - "end_line": 497 - } - ], - "packages": [] - }, - { - "path": "samples/JGroups/licenses", - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/JGroups/src", - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/JGroups/licenses/apache-1.1.txt", - "scan_errors": [], - "licenses": [ - { - "key": "apache-1.1", - "score": 100.0, - "short_name": "Apache 1.1", - "category": "Permissive", - "owner": "Apache Software Foundation", - "homepage_url": "http://www.apache.org/licenses/", - "text_url": "http://apache.org/licenses/LICENSE-1.1", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-1.1", - "spdx_license_key": "Apache-1.1", - "spdx_url": "https://spdx.org/licenses/Apache-1.1", - "start_line": 2, - "end_line": 56, - "matched_rule": { - "identifier": "apache-1.1.SPDX.RULE", - "license_choice": false, - "licenses": [ - "apache-1.1" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2000 The Apache Software Foundation." - ], - "holders": [ - "The Apache Software Foundation." - ], - "authors": [], - "start_line": 4, - "end_line": 5 - }, - { - "statements": [], - "holders": [], - "authors": [ - "the Apache Software Foundation" - ], - "start_line": 20, - "end_line": 23 - } - ], - "packages": [] - }, - { - "path": "samples/JGroups/licenses/apache-2.0.txt", - "scan_errors": [], - "licenses": [ - { - "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", - "dejacode_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": 2, - "end_line": 202, - "matched_rule": { - "identifier": "apache-2.0_easyeclipse.RULE", - "license_choice": false, - "licenses": [ - "apache-2.0" - ] - } - } - ], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/JGroups/licenses/bouncycastle.txt", - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "dejacode_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": 18, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2000 - 2006 The Legion Of The Bouncy Castle" - ], - "holders": [ - "Legion Of The Bouncy Castle" - ], - "authors": [], - "start_line": 5, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "samples/JGroups/licenses/cpl-1.0.txt", - "scan_errors": [], - "licenses": [ - { - "key": "cpl-1.0", - "score": 99.94, - "short_name": "CPL 1.0", - "category": "Copyleft Limited", - "owner": "IBM", - "homepage_url": "http://www.eclipse.org/legal/cpl-v10.html", - "text_url": "http://www.eclipse.org/legal/cpl-v10.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:cpl-1.0", - "spdx_license_key": "CPL-1.0", - "spdx_url": "https://spdx.org/licenses/CPL-1.0", - "start_line": 1, - "end_line": 212, - "matched_rule": { - "identifier": "cpl-1.0.SPDX.RULE", - "license_choice": false, - "licenses": [ - "cpl-1.0" - ] - } - } - ], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/JGroups/licenses/lgpl.txt", - "scan_errors": [], - "licenses": [ - { - "key": "lgpl-2.1-plus", - "score": 100.0, - "short_name": "LGPL 2.1 or later", - "category": "Copyleft Limited", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "text_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1-plus", - "spdx_license_key": "LGPL-2.1+", - "spdx_url": "https://spdx.org/licenses/LGPL-2.1", - "start_line": 1, - "end_line": 502, - "matched_rule": { - "identifier": "lgpl-2.1-plus_2.RULE", - "license_choice": false, - "licenses": [ - "lgpl-2.1-plus" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1991, 1999 Free Software Foundation, Inc." - ], - "holders": [ - "Free Software Foundation, Inc." - ], - "authors": [], - "start_line": 4, - "end_line": 7 - }, - { - "statements": [ - "copyrighted by the Free Software Foundation" - ], - "holders": [ - "the Free Software Foundation" - ], - "authors": [], - "start_line": 427, - "end_line": 433 - }, - { - "statements": [], - "holders": [], - "authors": [ - "James Random Hacker." - ], - "start_line": 496, - "end_line": 497 - } - ], - "packages": [] - }, - { - "path": "samples/JGroups/src/FixedMembershipToken.java", - "scan_errors": [], - "licenses": [ - { - "key": "lgpl-2.1-plus", - "score": 100.0, - "short_name": "LGPL 2.1 or later", - "category": "Copyleft Limited", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "text_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1-plus", - "spdx_license_key": "LGPL-2.1+", - "spdx_url": "https://spdx.org/licenses/LGPL-2.1", - "start_line": 7, - "end_line": 20, - "matched_rule": { - "identifier": "lgpl-2.1-plus_59.RULE", - "license_choice": false, - "licenses": [ - "lgpl-2.1-plus" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 2005, JBoss Inc." - ], - "holders": [ - "JBoss Inc." - ], - "authors": [], - "start_line": 2, - "end_line": 5 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Chris Mills (millsy@jboss.com)" - ], - "start_line": 51, - "end_line": 51 - } - ], - "packages": [] - }, - { - "path": "samples/JGroups/src/GuardedBy.java", - "scan_errors": [], - "licenses": [ - { - "key": "cc-by-2.5", - "score": 70.0, - "short_name": "CC-BY-2.5", - "category": "Permissive", - "owner": "Creative Commons", - "homepage_url": "http://creativecommons.org/licenses/by/2.5/", - "text_url": "http://creativecommons.org/licenses/by/2.5/legalcode", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:cc-by-2.5", - "spdx_license_key": "CC-BY-2.5", - "spdx_url": "https://spdx.org/licenses/CC-BY-2.5", - "start_line": 10, - "end_line": 11, - "matched_rule": { - "identifier": "cc-by-2.5_4.RULE", - "license_choice": false, - "licenses": [ - "cc-by-2.5" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2005 Brian Goetz and Tim Peierls" - ], - "holders": [ - "Brian Goetz and Tim Peierls" - ], - "authors": [], - "start_line": 9, - "end_line": 12 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Bela Ban" - ], - "start_line": 14, - "end_line": 17 - } - ], - "packages": [] - }, - { - "path": "samples/JGroups/src/ImmutableReference.java", - "scan_errors": [], - "licenses": [ - { - "key": "lgpl-2.1-plus", - "score": 100.0, - "short_name": "LGPL 2.1 or later", - "category": "Copyleft Limited", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "text_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1-plus", - "spdx_license_key": "LGPL-2.1+", - "spdx_url": "https://spdx.org/licenses/LGPL-2.1", - "start_line": 7, - "end_line": 20, - "matched_rule": { - "identifier": "lgpl-2.1-plus_59.RULE", - "license_choice": false, - "licenses": [ - "lgpl-2.1-plus" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 2010, Red Hat, Inc." - ], - "holders": [ - "Red Hat, Inc." - ], - "authors": [], - "start_line": 2, - "end_line": 5 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Brian Stansberry" - ], - "start_line": 29, - "end_line": 29 - } - ], - "packages": [] - }, - { - "path": "samples/JGroups/src/RATE_LIMITER.java", - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [], - "holders": [], - "authors": [ - "Bela Ban" - ], - "start_line": 14, - "end_line": 17 - } - ], - "packages": [] - }, - { - "path": "samples/JGroups/src/RouterStub.java", - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/JGroups/src/RouterStubManager.java", - "scan_errors": [], - "licenses": [ - { - "key": "lgpl-2.1-plus", - "score": 100.0, - "short_name": "LGPL 2.1 or later", - "category": "Copyleft Limited", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "text_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1-plus", - "spdx_license_key": "LGPL-2.1+", - "spdx_url": "https://spdx.org/licenses/LGPL-2.1", - "start_line": 7, - "end_line": 20, - "matched_rule": { - "identifier": "lgpl-2.1-plus_59.RULE", - "license_choice": false, - "licenses": [ - "lgpl-2.1-plus" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 2009, Red Hat Middleware LLC" - ], - "holders": [ - "Red Hat Middleware LLC" - ], - "authors": [], - "start_line": 2, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "samples/JGroups/src/S3_PING.java", - "scan_errors": [], - "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": "", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:public-domain", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 1649, - "end_line": 1649, - "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": "", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:public-domain", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 1692, - "end_line": 1692, - "matched_rule": { - "identifier": "public-domain.LICENSE", - "license_choice": false, - "licenses": [ - "public-domain" - ] - } - } - ], - "copyrights": [ - { - "statements": [], - "holders": [], - "authors": [ - "Bela Ban" - ], - "start_line": 35, - "end_line": 38 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Robert Harder author rob@iharder.net" - ], - "start_line": 1697, - "end_line": 1700 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/adler32.c", - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2011 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/deflate.c", - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2013 Jean-loup Gailly and Mark Adler" - ], - "holders": [ - "Jean-loup Gailly and Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Leonid Broukhis. Thanks" - ], - "start_line": 33, - "end_line": 35 - }, - { - "statements": [ - "Copyright 1995-2013 Jean-loup Gailly and Mark Adler" - ], - "holders": [ - "Jean-loup Gailly and Mark Adler" - ], - "authors": [], - "start_line": 54, - "end_line": 55 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/deflate.h", - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2012 Jean-loup Gailly" - ], - "holders": [ - "Jean-loup Gailly" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/zlib.h", - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 100.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 6, - "end_line": 23, - "matched_rule": { - "identifier": "zlib_17.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2013 Jean-loup Gailly and Mark Adler" - ], - "holders": [ - "Jean-loup Gailly and Mark Adler" - ], - "authors": [], - "start_line": 4, - "end_line": 4 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/zutil.c", - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2005, 2010, 2011, 2012 Jean-loup Gailly." - ], - "holders": [ - "Jean-loup Gailly." - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/zutil.h", - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2013 Jean-loup Gailly." - ], - "holders": [ - "Jean-loup Gailly." - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/ada", - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/zlib/dotzlib", - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/zlib/gcc_gvmat64", - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/zlib/infback9", - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/zlib/iostream2", - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/zlib/ada/zlib.ads", - "scan_errors": [], - "licenses": [ - { - "key": "gpl-2.0-plus-ada", - "score": 100.0, - "short_name": "GPL 2.0 or later with Ada exception", - "category": "Copyleft Limited", - "owner": "Dmitriy Anisimkov", - "homepage_url": "", - "text_url": "", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus-ada", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 6, - "end_line": 25, - "matched_rule": { - "identifier": "gpl-2.0-plus-ada.LICENSE", - "license_choice": false, - "licenses": [ - "gpl-2.0-plus-ada" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002-2004 Dmitriy Anisimkov" - ], - "holders": [ - "Dmitriy Anisimkov" - ], - "authors": [], - "start_line": 4, - "end_line": 4 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/dotzlib/AssemblyInfo.cs", - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [ - "(c) 2004 by Henrik Ravn" - ], - "holders": [ - "Henrik Ravn" - ], - "authors": [], - "start_line": 13, - "end_line": 16 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/dotzlib/ChecksumImpl.cs", - "scan_errors": [], - "licenses": [ - { - "key": "boost-1.0", - "score": 100.0, - "short_name": "Boost 1.0", - "category": "Permissive", - "owner": "Boost", - "homepage_url": "http://www.boost.org/users/license.html", - "text_url": "http://www.boost.org/LICENSE_1_0.txt", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:boost-1.0", - "spdx_license_key": "BSL-1.0", - "spdx_url": "https://spdx.org/licenses/BSL-1.0", - "start_line": 4, - "end_line": 5, - "matched_rule": { - "identifier": "boost-1.0_1.RULE", - "license_choice": false, - "licenses": [ - "boost-1.0" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "(c) Copyright Henrik Ravn 2004" - ], - "holders": [ - "Henrik Ravn" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/dotzlib/LICENSE_1_0.txt", - "scan_errors": [], - "licenses": [ - { - "key": "boost-1.0", - "score": 100.0, - "short_name": "Boost 1.0", - "category": "Permissive", - "owner": "Boost", - "homepage_url": "http://www.boost.org/users/license.html", - "text_url": "http://www.boost.org/LICENSE_1_0.txt", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:boost-1.0", - "spdx_license_key": "BSL-1.0", - "spdx_url": "https://spdx.org/licenses/BSL-1.0", - "start_line": 1, - "end_line": 23, - "matched_rule": { - "identifier": "boost-1.0.LICENSE", - "license_choice": false, - "licenses": [ - "boost-1.0" - ] - } - } - ], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/zlib/dotzlib/readme.txt", - "scan_errors": [], - "licenses": [ - { - "key": "boost-1.0", - "score": 100.0, - "short_name": "Boost 1.0", - "category": "Permissive", - "owner": "Boost", - "homepage_url": "http://www.boost.org/users/license.html", - "text_url": "http://www.boost.org/LICENSE_1_0.txt", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:boost-1.0", - "spdx_license_key": "BSL-1.0", - "spdx_url": "https://spdx.org/licenses/BSL-1.0", - "start_line": 57, - "end_line": 58, - "matched_rule": { - "identifier": "boost-1.0_1.RULE", - "license_choice": false, - "licenses": [ - "boost-1.0" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) Henrik Ravn 2004" - ], - "holders": [ - "Henrik Ravn" - ], - "authors": [], - "start_line": 55, - "end_line": 55 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/gcc_gvmat64/gvmat64.S", - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 88.82, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 17, - "end_line": 37, - "matched_rule": { - "identifier": "zlib_10.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2010 Jean-loup Gailly, Brian Raiter and Gilles Vollant." - ], - "holders": [ - "Jean-loup Gailly, Brian Raiter and Gilles Vollant." - ], - "authors": [], - "start_line": 9, - "end_line": 10 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Gilles Vollant" - ], - "start_line": 12, - "end_line": 15 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/infback9/infback9.c", - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2008 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/infback9/infback9.h", - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2003 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/iostream2/zstream.h", - "scan_errors": [], - "licenses": [ - { - "key": "cmr-no", - "score": 100.0, - "short_name": "CMR License", - "category": "Permissive", - "owner": "CMR - Christian Michelsen Research AS", - "homepage_url": "", - "text_url": "", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:cmr-no", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 3, - "end_line": 15, - "matched_rule": { - "identifier": "cmr-no.LICENSE", - "license_choice": false, - "licenses": [ - "cmr-no" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1997 Christian Michelsen Research" - ], - "holders": [ - "Christian Michelsen Research" - ], - "authors": [], - "start_line": 3, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/iostream2/zstream_test.cpp", - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - } - ] -} diff --git a/tests/data/models/scan/malformed.json b/tests/data/models/scan/malformed.json deleted file mode 100644 index 32774422..00000000 --- a/tests/data/models/scan/malformed.json +++ /dev/null @@ -1,2138 +0,0 @@ -{ - "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.1.0" - "scancode_options": { - "--copyright": true, - "--license": true, - "--package": true, - "--info": true, - "--license-score": 0, - "--format": "json-pp" - }, - "files_count": 43, - "files": [ - { - "path": "samples/README", - "type": "file", - "name": "README", - "base_name": "README", - "extension": "", - "date": "2017-02-02", - "size": 239, - "sha1": "c6cff3e0957498242703871dc306ed735181a9e5", - "md5": "5a863f0639e14c541564ba1bbd698af0", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/screenshot.png", - "type": "file", - "name": "screenshot.png", - "base_name": "screenshot", - "extension": ".png", - "date": "2017-02-02", - "size": 622754, - "sha1": "01ff4b1de0bc6c75c9cca6e46c80c1802d6976d4", - "md5": "b6ef5a90777147423c98b42a6a25e57a", - "files_count": null, - "mime_type": "image/png", - "file_type": "PNG image data, 2880 x 1666, 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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/arch", - "type": "directory", - "name": "arch", - "base_name": "arch", - "extension": "", - "date": null, - "size": 28103, - "sha1": null, - "md5": null, - "files_count": 1, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/JGroups", - "type": "directory", - "name": "JGroups", - "base_name": "JGroups", - "extension": "", - "date": null, - "size": 245739, - "sha1": null, - "md5": null, - "files_count": 14, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/zlib", - "type": "directory", - "name": "zlib", - "base_name": "zlib", - "extension": "", - "date": null, - "size": 274911, - "sha1": null, - "md5": null, - "files_count": 16, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/arch/zlib.tar.gz", - "type": "file", - "name": "zlib.tar.gz", - "base_name": "zlib", - "extension": ".tar.gz", - "date": "2017-02-02", - "size": 28103, - "sha1": "576f0ccfe534d7f5ff5d6400078d3c6586de3abd", - "md5": "20b2370751abfc08bb3556c1d8114b5a", - "files_count": null, - "mime_type": "application/x-gzip", - "file_type": "gzip compressed data, last modified: Wed Jul 15 09:08:19 2015, from Unix", - "programming_language": null, - "is_binary": true, - "is_text": false, - "is_archive": true, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [ - { - "type": "plain tarball", - "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": [] - } - ] - }, - { - "path": "samples/JGroups/EULA", - "type": "file", - "name": "EULA", - "base_name": "EULA", - "extension": "", - "date": "2017-02-02", - "size": 8265, - "sha1": "48fbca418bc12ffad8b8c82b08dac07508b08c6c", - "md5": "a97752adcb0781cf02a011f06e95887c", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Velocity", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "jboss-eula", - "score": 100.0, - "short_name": "JBoss EULA", - "category": "Proprietary Free", - "owner": "JBoss Community", - "homepage_url": "", - "text_url": "http://repository.jboss.org/licenses/jbossorg-eula.txt", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:jboss-eula", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 3, - "end_line": 108, - "matched_rule": { - "identifier": "jboss-eula.LICENSE", - "license_choice": false, - "licenses": [ - "jboss-eula" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 2006 Red Hat, Inc." - ], - "holders": [ - "Red Hat, Inc." - ], - "authors": [], - "start_line": 104, - "end_line": 104 - } - ], - "packages": [] - }, - { - "path": "samples/JGroups/LICENSE", - "type": "file", - "name": "LICENSE", - "base_name": "LICENSE", - "extension": "", - "date": "2017-02-02", - "size": 26934, - "sha1": "8f1a637d2e2ed1bdb9eb01a7dccb5c12cc0557e1", - "md5": "f14599a2f089f6ff8c97e2baa4e3d575", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "lgpl-2.1-plus", - "score": 100.0, - "short_name": "LGPL 2.1 or later", - "category": "Copyleft Limited", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "text_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1-plus", - "spdx_license_key": "LGPL-2.1+", - "spdx_url": "https://spdx.org/licenses/LGPL-2.1", - "start_line": 1, - "end_line": 502, - "matched_rule": { - "identifier": "lgpl-2.1-plus_2.RULE", - "license_choice": false, - "licenses": [ - "lgpl-2.1-plus" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1991, 1999 Free Software Foundation, Inc." - ], - "holders": [ - "Free Software Foundation, Inc." - ], - "authors": [], - "start_line": 4, - "end_line": 7 - }, - { - "statements": [ - "copyrighted by the Free Software Foundation" - ], - "holders": [ - "the Free Software Foundation" - ], - "authors": [], - "start_line": 427, - "end_line": 433 - }, - { - "statements": [], - "holders": [], - "authors": [ - "James Random Hacker." - ], - "start_line": 496, - "end_line": 497 - } - ], - "packages": [] - }, - { - "path": "samples/JGroups/licenses", - "type": "directory", - "name": "licenses", - "base_name": "licenses", - "extension": "", - "date": null, - "size": 54569, - "sha1": null, - "md5": null, - "files_count": 5, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/JGroups/src", - "type": "directory", - "name": "src", - "base_name": "src", - "extension": "", - "date": null, - "size": 155971, - "sha1": null, - "md5": null, - "files_count": 7, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/JGroups/licenses/apache-1.1.txt", - "type": "file", - "name": "apache-1.1.txt", - "base_name": "apache-1.1", - "extension": ".txt", - "date": "2017-02-02", - "size": 2885, - "sha1": "6b5608d35c3e304532af43db8bbfc5947bef46a6", - "md5": "276982197c941f4cbf3d218546e17ae2", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "apache-1.1", - "score": 100.0, - "short_name": "Apache 1.1", - "category": "Permissive", - "owner": "Apache Software Foundation", - "homepage_url": "http://www.apache.org/licenses/", - "text_url": "http://apache.org/licenses/LICENSE-1.1", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-1.1", - "spdx_license_key": "Apache-1.1", - "spdx_url": "https://spdx.org/licenses/Apache-1.1", - "start_line": 2, - "end_line": 56, - "matched_rule": { - "identifier": "apache-1.1.SPDX.RULE", - "license_choice": false, - "licenses": [ - "apache-1.1" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2000 The Apache Software Foundation." - ], - "holders": [ - "The Apache Software Foundation." - ], - "authors": [], - "start_line": 4, - "end_line": 5 - }, - { - "statements": [], - "holders": [], - "authors": [ - "the Apache Software Foundation" - ], - "start_line": 20, - "end_line": 23 - } - ], - "packages": [] - }, - { - "path": "samples/JGroups/licenses/apache-2.0.txt", - "type": "file", - "name": "apache-2.0.txt", - "base_name": "apache-2.0", - "extension": ".txt", - "date": "2017-02-02", - "size": 11560, - "sha1": "47b573e3824cd5e02a1a3ae99e2735b49e0256e4", - "md5": "d273d63619c9aeaf15cdaf76422c4f87", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "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", - "dejacode_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": 2, - "end_line": 202, - "matched_rule": { - "identifier": "apache-2.0_easyeclipse.RULE", - "license_choice": false, - "licenses": [ - "apache-2.0" - ] - } - } - ], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/JGroups/licenses/bouncycastle.txt", - "type": "file", - "name": "bouncycastle.txt", - "base_name": "bouncycastle", - "extension": ".txt", - "date": "2017-02-02", - "size": 1203, - "sha1": "5693e1524ea9c177cd603f47c2b77f5b8ec2a3b9", - "md5": "8d00871ced5dc2a03d1e90f1e59ea97b", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "dejacode_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": 18, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2000 - 2006 The Legion Of The Bouncy Castle" - ], - "holders": [ - "Legion Of The Bouncy Castle" - ], - "authors": [], - "start_line": 5, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "samples/JGroups/licenses/cpl-1.0.txt", - "type": "file", - "name": "cpl-1.0.txt", - "base_name": "cpl-1.0", - "extension": ".txt", - "date": "2017-02-02", - "size": 11987, - "sha1": "681cf776bcd79752543d42490ec7ed22a29fd888", - "md5": "9a6d2c9ae73d59eb3dd38e3909750d14", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "cpl-1.0", - "score": 99.94, - "short_name": "CPL 1.0", - "category": "Copyleft Limited", - "owner": "IBM", - "homepage_url": "http://www.eclipse.org/legal/cpl-v10.html", - "text_url": "http://www.eclipse.org/legal/cpl-v10.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:cpl-1.0", - "spdx_license_key": "CPL-1.0", - "spdx_url": "https://spdx.org/licenses/CPL-1.0", - "start_line": 1, - "end_line": 212, - "matched_rule": { - "identifier": "cpl-1.0.SPDX.RULE", - "license_choice": false, - "licenses": [ - "cpl-1.0" - ] - } - } - ], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/JGroups/licenses/lgpl.txt", - "type": "file", - "name": "lgpl.txt", - "base_name": "lgpl", - "extension": ".txt", - "date": "2017-02-02", - "size": 26934, - "sha1": "8f1a637d2e2ed1bdb9eb01a7dccb5c12cc0557e1", - "md5": "f14599a2f089f6ff8c97e2baa4e3d575", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "lgpl-2.1-plus", - "score": 100.0, - "short_name": "LGPL 2.1 or later", - "category": "Copyleft Limited", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "text_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1-plus", - "spdx_license_key": "LGPL-2.1+", - "spdx_url": "https://spdx.org/licenses/LGPL-2.1", - "start_line": 1, - "end_line": 502, - "matched_rule": { - "identifier": "lgpl-2.1-plus_2.RULE", - "license_choice": false, - "licenses": [ - "lgpl-2.1-plus" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1991, 1999 Free Software Foundation, Inc." - ], - "holders": [ - "Free Software Foundation, Inc." - ], - "authors": [], - "start_line": 4, - "end_line": 7 - }, - { - "statements": [ - "copyrighted by the Free Software Foundation" - ], - "holders": [ - "the Free Software Foundation" - ], - "authors": [], - "start_line": 427, - "end_line": 433 - }, - { - "statements": [], - "holders": [], - "authors": [ - "James Random Hacker." - ], - "start_line": 496, - "end_line": 497 - } - ], - "packages": [] - }, - { - "path": "samples/JGroups/src/FixedMembershipToken.java", - "type": "file", - "name": "FixedMembershipToken.java", - "base_name": "FixedMembershipToken", - "extension": ".java", - "date": "2017-02-02", - "size": 5294, - "sha1": "4375406c4515f66ac0498d7c6cec5a4841a74cbc", - "md5": "d1994ba211364156da23ebda7b91de2e", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "lgpl-2.1-plus", - "score": 100.0, - "short_name": "LGPL 2.1 or later", - "category": "Copyleft Limited", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "text_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1-plus", - "spdx_license_key": "LGPL-2.1+", - "spdx_url": "https://spdx.org/licenses/LGPL-2.1", - "start_line": 7, - "end_line": 20, - "matched_rule": { - "identifier": "lgpl-2.1-plus_59.RULE", - "license_choice": false, - "licenses": [ - "lgpl-2.1-plus" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 2005, JBoss Inc." - ], - "holders": [ - "JBoss Inc." - ], - "authors": [], - "start_line": 2, - "end_line": 5 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Chris Mills (millsy@jboss.com)" - ], - "start_line": 51, - "end_line": 51 - } - ], - "packages": [] - }, - { - "path": "samples/JGroups/src/GuardedBy.java", - "type": "file", - "name": "GuardedBy.java", - "base_name": "GuardedBy", - "extension": ".java", - "date": "2017-02-02", - "size": 836, - "sha1": "93a222292c1eb143538cf876f0e5575fccd87271", - "md5": "739d4bb080991b678a662f5742f30ff1", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "cc-by-2.5", - "score": 70.0, - "short_name": "CC-BY-2.5", - "category": "Permissive", - "owner": "Creative Commons", - "homepage_url": "http://creativecommons.org/licenses/by/2.5/", - "text_url": "http://creativecommons.org/licenses/by/2.5/legalcode", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:cc-by-2.5", - "spdx_license_key": "CC-BY-2.5", - "spdx_url": "https://spdx.org/licenses/CC-BY-2.5", - "start_line": 10, - "end_line": 11, - "matched_rule": { - "identifier": "cc-by-2.5_4.RULE", - "license_choice": false, - "licenses": [ - "cc-by-2.5" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2005 Brian Goetz and Tim Peierls" - ], - "holders": [ - "Brian Goetz and Tim Peierls" - ], - "authors": [], - "start_line": 9, - "end_line": 12 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Bela Ban" - ], - "start_line": 14, - "end_line": 17 - } - ], - "packages": [] - }, - { - "path": "samples/JGroups/src/ImmutableReference.java", - "type": "file", - "name": "ImmutableReference.java", - "base_name": "ImmutableReference", - "extension": ".java", - "date": "2017-02-02", - "size": 1893, - "sha1": "429e0ef4c3e85c37b766225402cb77b75f4bda9f", - "md5": "4f72b0abb111b459c89db7e7fd89aba1", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "lgpl-2.1-plus", - "score": 100.0, - "short_name": "LGPL 2.1 or later", - "category": "Copyleft Limited", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "text_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1-plus", - "spdx_license_key": "LGPL-2.1+", - "spdx_url": "https://spdx.org/licenses/LGPL-2.1", - "start_line": 7, - "end_line": 20, - "matched_rule": { - "identifier": "lgpl-2.1-plus_59.RULE", - "license_choice": false, - "licenses": [ - "lgpl-2.1-plus" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 2010, Red Hat, Inc." - ], - "holders": [ - "Red Hat, Inc." - ], - "authors": [], - "start_line": 2, - "end_line": 5 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Brian Stansberry" - ], - "start_line": 29, - "end_line": 29 - } - ], - "packages": [] - }, - { - "path": "samples/JGroups/src/RATE_LIMITER.java", - "type": "file", - "name": "RATE_LIMITER.java", - "base_name": "RATE_LIMITER", - "extension": ".java", - "date": "2017-02-02", - "size": 3812, - "sha1": "7e79042c0239ec9313749be7cceb6f12d0705992", - "md5": "1895e6dee69935f4fc6902abe2d80f6e", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [], - "holders": [], - "authors": [ - "Bela Ban" - ], - "start_line": 14, - "end_line": 17 - } - ], - "packages": [] - }, - { - "path": "samples/JGroups/src/RouterStub.java", - "type": "file", - "name": "RouterStub.java", - "base_name": "RouterStub", - "extension": ".java", - "date": "2017-02-02", - "size": 10208, - "sha1": "f255c2dbdb104bb0b0773da62fd57a05828a3c53", - "md5": "7026e7ae2fa9bf3217441f7495f5989a", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/JGroups/src/RouterStubManager.java", - "type": "file", - "name": "RouterStubManager.java", - "base_name": "RouterStubManager", - "extension": ".java", - "date": "2017-02-02", - "size": 8375, - "sha1": "7c03434b9b6ed5e8d70a780a4a8c677955a365bf", - "md5": "2fe89992a3dfb7f5f2343236fbe665a4", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "lgpl-2.1-plus", - "score": 100.0, - "short_name": "LGPL 2.1 or later", - "category": "Copyleft Limited", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "text_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1-plus", - "spdx_license_key": "LGPL-2.1+", - "spdx_url": "https://spdx.org/licenses/LGPL-2.1", - "start_line": 7, - "end_line": 20, - "matched_rule": { - "identifier": "lgpl-2.1-plus_59.RULE", - "license_choice": false, - "licenses": [ - "lgpl-2.1-plus" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 2009, Red Hat Middleware LLC" - ], - "holders": [ - "Red Hat Middleware LLC" - ], - "authors": [], - "start_line": 2, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "samples/JGroups/src/S3_PING.java", - "type": "file", - "name": "S3_PING.java", - "base_name": "S3_PING", - "extension": ".java", - "date": "2017-02-02", - "size": 125553, - "sha1": "41ea46b0c88c4cf331b38b0074497672c114dd12", - "md5": "8f47e9762f9654f6ccb160740cd856c8", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "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": "", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:public-domain", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 1649, - "end_line": 1649, - "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": "", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:public-domain", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 1692, - "end_line": 1692, - "matched_rule": { - "identifier": "public-domain.LICENSE", - "license_choice": false, - "licenses": [ - "public-domain" - ] - } - } - ], - "copyrights": [ - { - "statements": [], - "holders": [], - "authors": [ - "Bela Ban" - ], - "start_line": 35, - "end_line": 38 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Robert Harder author rob@iharder.net" - ], - "start_line": 1697, - "end_line": 1700 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/adler32.c", - "type": "file", - "name": "adler32.c", - "base_name": "adler32", - "extension": ".c", - "date": "2017-02-02", - "size": 5147, - "sha1": "f7142f39739b275d3077987f6132504139dcedd9", - "md5": "faf360ba01a8aa854409e93214a46296", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2011 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/deflate.c", - "type": "file", - "name": "deflate.c", - "base_name": "deflate", - "extension": ".c", - "date": "2017-02-02", - "size": 73443, - "sha1": "4cfa5e74c668ef12218a6eee87801e8b75d248ef", - "md5": "2018726c0f336ce97d2aeeafc06879c3", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2013 Jean-loup Gailly and Mark Adler" - ], - "holders": [ - "Jean-loup Gailly and Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Leonid Broukhis. Thanks" - ], - "start_line": 33, - "end_line": 35 - }, - { - "statements": [ - "Copyright 1995-2013 Jean-loup Gailly and Mark Adler" - ], - "holders": [ - "Jean-loup Gailly and Mark Adler" - ], - "authors": [], - "start_line": 54, - "end_line": 55 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/deflate.h", - "type": "file", - "name": "deflate.h", - "base_name": "deflate", - "extension": ".h", - "date": "2017-02-02", - "size": 13120, - "sha1": "cf1978ea0378a2f0b0fa98c383c9b08a3b3f3655", - "md5": "f284d0140dcd0d799ad8a6c74e311829", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2012 Jean-loup Gailly" - ], - "holders": [ - "Jean-loup Gailly" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/zlib.h", - "type": "file", - "name": "zlib.h", - "base_name": "zlib", - "extension": ".h", - "date": "2017-02-02", - "size": 89651, - "sha1": "1fabede36e27d93619690144b7a240bfe7a24f88", - "md5": "a1d4c6864c789f539d325566a863ff26", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 100.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 6, - "end_line": 23, - "matched_rule": { - "identifier": "zlib_17.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2013 Jean-loup Gailly and Mark Adler" - ], - "holders": [ - "Jean-loup Gailly and Mark Adler" - ], - "authors": [], - "start_line": 4, - "end_line": 4 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/zutil.c", - "type": "file", - "name": "zutil.c", - "base_name": "zutil", - "extension": ".c", - "date": "2017-02-02", - "size": 7738, - "sha1": "750edc45373acd6b3f187ad0d25766819db67a37", - "md5": "15b58dbc0d7c5ee05deb2a0094ecca8c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2005, 2010, 2011, 2012 Jean-loup Gailly." - ], - "holders": [ - "Jean-loup Gailly." - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/zutil.h", - "type": "file", - "name": "zutil.h", - "base_name": "zutil", - "extension": ".h", - "date": "2017-02-02", - "size": 7019, - "sha1": "b541ca323c529c1b6bc3102b8b01473a2409aa5a", - "md5": "0cd2089ea6c4dc4bd584d7dd3fb7037f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2013 Jean-loup Gailly." - ], - "holders": [ - "Jean-loup Gailly." - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/ada", - "type": "directory", - "name": "ada", - "base_name": "ada", - "extension": "", - "date": null, - "size": 13922, - "sha1": null, - "md5": null, - "files_count": 1, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/zlib/dotzlib", - "type": "directory", - "name": "dotzlib", - "base_name": "dotzlib", - "extension": "", - "date": null, - "size": 14257, - "sha1": null, - "md5": null, - "files_count": 4, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/zlib/gcc_gvmat64", - "type": "directory", - "name": "gcc_gvmat64", - "base_name": "gcc_gvmat64", - "extension": "", - "date": null, - "size": 16413, - "sha1": null, - "md5": null, - "files_count": 1, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/zlib/infback9", - "type": "directory", - "name": "infback9", - "base_name": "infback9", - "extension": "", - "date": null, - "size": 23875, - "sha1": null, - "md5": null, - "files_count": 2, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/zlib/iostream2", - "type": "directory", - "name": "iostream2", - "base_name": "iostream2", - "extension": "", - "date": null, - "size": 10326, - "sha1": null, - "md5": null, - "files_count": 2, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/zlib/ada/zlib.ads", - "type": "file", - "name": "zlib.ads", - "base_name": "zlib", - "extension": ".ads", - "date": "2017-02-02", - "size": 13922, - "sha1": "b1735a58842c907a4926f50326c774538482efd2", - "md5": "55f9046b4db726c6981e28a15dd48b12", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Ada", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "gpl-2.0-plus-ada", - "score": 100.0, - "short_name": "GPL 2.0 or later with Ada exception", - "category": "Copyleft Limited", - "owner": "Dmitriy Anisimkov", - "homepage_url": "", - "text_url": "", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus-ada", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 6, - "end_line": 25, - "matched_rule": { - "identifier": "gpl-2.0-plus-ada.LICENSE", - "license_choice": false, - "licenses": [ - "gpl-2.0-plus-ada" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002-2004 Dmitriy Anisimkov" - ], - "holders": [ - "Dmitriy Anisimkov" - ], - "authors": [], - "start_line": 4, - "end_line": 4 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/dotzlib/AssemblyInfo.cs", - "type": "file", - "name": "AssemblyInfo.cs", - "base_name": "AssemblyInfo", - "extension": ".cs", - "date": "2017-02-02", - "size": 2500, - "sha1": "9f1db1177b2e9a014f72bb3cd80be17133e06d16", - "md5": "23d0d7c18846fc31655b6aa89b7c8038", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "C#", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [ - "(c) 2004 by Henrik Ravn" - ], - "holders": [ - "Henrik Ravn" - ], - "authors": [], - "start_line": 13, - "end_line": 16 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/dotzlib/ChecksumImpl.cs", - "type": "file", - "name": "ChecksumImpl.cs", - "base_name": "ChecksumImpl", - "extension": ".cs", - "date": "2017-02-02", - "size": 8040, - "sha1": "3807a0e24a57b92ea301559cab7307b8eab52c51", - "md5": "d01b3cb2e75da9b15f05b92b42f6bd33", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ISO-8859 text, with CRLF line terminators", - "programming_language": "C#", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "boost-1.0", - "score": 100.0, - "short_name": "Boost 1.0", - "category": "Permissive", - "owner": "Boost", - "homepage_url": "http://www.boost.org/users/license.html", - "text_url": "http://www.boost.org/LICENSE_1_0.txt", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:boost-1.0", - "spdx_license_key": "BSL-1.0", - "spdx_url": "https://spdx.org/licenses/BSL-1.0", - "start_line": 4, - "end_line": 5, - "matched_rule": { - "identifier": "boost-1.0_1.RULE", - "license_choice": false, - "licenses": [ - "boost-1.0" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "(c) Copyright Henrik Ravn 2004" - ], - "holders": [ - "Henrik Ravn" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/dotzlib/LICENSE_1_0.txt", - "type": "file", - "name": "LICENSE_1_0.txt", - "base_name": "LICENSE_1_0", - "extension": ".txt", - "date": "2017-02-02", - "size": 1359, - "sha1": "892b34f7865d90a6f949f50d95e49625a10bc7f0", - "md5": "81543b22c36f10d20ac9712f8d80ef8d", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "boost-1.0", - "score": 100.0, - "short_name": "Boost 1.0", - "category": "Permissive", - "owner": "Boost", - "homepage_url": "http://www.boost.org/users/license.html", - "text_url": "http://www.boost.org/LICENSE_1_0.txt", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:boost-1.0", - "spdx_license_key": "BSL-1.0", - "spdx_url": "https://spdx.org/licenses/BSL-1.0", - "start_line": 1, - "end_line": 23, - "matched_rule": { - "identifier": "boost-1.0.LICENSE", - "license_choice": false, - "licenses": [ - "boost-1.0" - ] - } - } - ], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/zlib/dotzlib/readme.txt", - "type": "file", - "name": "readme.txt", - "base_name": "readme", - "extension": ".txt", - "date": "2017-02-02", - "size": 2358, - "sha1": "b1229b826f0096808628474538cea8fec2922a9b", - "md5": "1f20f3168ee63d90de033edac2ce383c", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "boost-1.0", - "score": 100.0, - "short_name": "Boost 1.0", - "category": "Permissive", - "owner": "Boost", - "homepage_url": "http://www.boost.org/users/license.html", - "text_url": "http://www.boost.org/LICENSE_1_0.txt", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:boost-1.0", - "spdx_license_key": "BSL-1.0", - "spdx_url": "https://spdx.org/licenses/BSL-1.0", - "start_line": 57, - "end_line": 58, - "matched_rule": { - "identifier": "boost-1.0_1.RULE", - "license_choice": false, - "licenses": [ - "boost-1.0" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) Henrik Ravn 2004" - ], - "holders": [ - "Henrik Ravn" - ], - "authors": [], - "start_line": 55, - "end_line": 55 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/gcc_gvmat64/gvmat64.S", - "type": "file", - "name": "gvmat64.S", - "base_name": "gvmat64", - "extension": ".S", - "date": "2017-02-02", - "size": 16413, - "sha1": "742603cba1af98a1432cc02efb019b1a5760adf2", - "md5": "5e772d7302475e5473d0c4c57b9861e8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "GAS", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 88.82, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 17, - "end_line": 37, - "matched_rule": { - "identifier": "zlib_10.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2010 Jean-loup Gailly, Brian Raiter and Gilles Vollant." - ], - "holders": [ - "Jean-loup Gailly, Brian Raiter and Gilles Vollant." - ], - "authors": [], - "start_line": 9, - "end_line": 10 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Gilles Vollant" - ], - "start_line": 12, - "end_line": 15 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/infback9/infback9.c", - "type": "file", - "name": "infback9.c", - "base_name": "infback9", - "extension": ".c", - "date": "2017-02-02", - "size": 22244, - "sha1": "be9fd74e9afc16cfbbb693195df972665179c734", - "md5": "f08efcac0c60b475a7a34888a7b85236", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2008 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/infback9/infback9.h", - "type": "file", - "name": "infback9.h", - "base_name": "infback9", - "extension": ".h", - "date": "2017-02-02", - "size": 1631, - "sha1": "9f66c9bf6ad6b4c676e3fe514be653704b403019", - "md5": "7acf663360f7bb54d0f95b808c673fd4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2003 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/iostream2/zstream.h", - "type": "file", - "name": "zstream.h", - "base_name": "zstream", - "extension": ".h", - "date": "2017-02-02", - "size": 9590, - "sha1": "e849f490ba14f090f2d97655197098f0a4187c4a", - "md5": "4d344c3d93e264c9d9b42ed7c54d34d9", - "files_count": null, - "mime_type": "text/x-c++", - "file_type": "C++ source, ASCII text, with CRLF line terminators", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "cmr-no", - "score": 100.0, - "short_name": "CMR License", - "category": "Permissive", - "owner": "CMR - Christian Michelsen Research AS", - "homepage_url": "", - "text_url": "", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:cmr-no", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 3, - "end_line": 15, - "matched_rule": { - "identifier": "cmr-no.LICENSE", - "license_choice": false, - "licenses": [ - "cmr-no" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1997 Christian Michelsen Research" - ], - "holders": [ - "Christian Michelsen Research" - ], - "authors": [], - "start_line": 3, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/iostream2/zstream_test.cpp", - "type": "file", - "name": "zstream_test.cpp", - "base_name": "zstream_test", - "extension": ".cpp", - "date": "2017-02-02", - "size": 736, - "sha1": "ced646ae3fc8dde7e7cdff41da29b92cce4f795d", - "md5": "b3a86f4710d45e920c8adfa04876b7b5", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "C++", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - } - ] -} diff --git a/tests/data/models/scan/multiple_copies_01-i_scan.json b/tests/data/models/scan/multiple_copies_01-i_scan.json deleted file mode 100644 index 3ef43bee..00000000 --- a/tests/data/models/scan/multiple_copies_01-i_scan.json +++ /dev/null @@ -1,474 +0,0 @@ -{ - "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.2.1", - "scancode_options": { - "--info": true, - "--license-score": 0, - "--format": "json-pp" - }, - "files_count": 21, - "files": [ - { - "path": "multiple_copies_01/a", - "type": "directory", - "name": "a", - "base_name": "a", - "extension": "", - "date": null, - "size": 800, - "sha1": null, - "md5": null, - "files_count": 4, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "multiple_copies_01/a_copy", - "type": "directory", - "name": "a_copy", - "base_name": "a_copy", - "extension": "", - "date": null, - "size": 800, - "sha1": null, - "md5": null, - "files_count": 4, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "multiple_copies_01/a_nested_copy", - "type": "directory", - "name": "a_nested_copy", - "base_name": "a_nested_copy", - "extension": "", - "date": null, - "size": 800, - "sha1": null, - "md5": null, - "files_count": 4, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "multiple_copies_01/b", - "type": "directory", - "name": "b", - "base_name": "b", - "extension": "", - "date": null, - "size": 800, - "sha1": null, - "md5": null, - "files_count": 4, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "multiple_copies_01/a/a1.py", - "type": "file", - "name": "a1.py", - "base_name": "a1", - "extension": ".py", - "date": "2017-09-26", - "size": 200, - "sha1": "84b647771481d39dd3a53f6dc210c26abac37748", - "md5": "3cb56efa7140478458dbaa2b30239845", - "files_count": null, - "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, - "scan_errors": [] - }, - { - "path": "multiple_copies_01/a/a2.py", - "type": "file", - "name": "a2.py", - "base_name": "a2", - "extension": ".py", - "date": "2017-09-26", - "size": 200, - "sha1": "310797523e47db8481aeb06f1634317285115091", - "md5": "19efdad483f68bc9997a5c1f7ba41b26", - "files_count": null, - "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, - "scan_errors": [] - }, - { - "path": "multiple_copies_01/a/a3.py", - "type": "file", - "name": "a3.py", - "base_name": "a3", - "extension": ".py", - "date": "2017-09-26", - "size": 200, - "sha1": "fd5d3589c825f448546d7dcec36da3e567d35fe9", - "md5": "795ff2cae8ece792a9bfebe18ad3c8e6", - "files_count": null, - "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, - "scan_errors": [] - }, - { - "path": "multiple_copies_01/a/a4.py", - "type": "file", - "name": "a4.py", - "base_name": "a4", - "extension": ".py", - "date": "2017-09-26", - "size": 200, - "sha1": "6f71666c46446c29d3f45feef5419ae76fb86a5b", - "md5": "fc403815d6605df989414ff40a64ea17", - "files_count": null, - "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, - "scan_errors": [] - }, - { - "path": "multiple_copies_01/a_copy/a1.py", - "type": "file", - "name": "a1.py", - "base_name": "a1", - "extension": ".py", - "date": "2017-09-26", - "size": 200, - "sha1": "84b647771481d39dd3a53f6dc210c26abac37748", - "md5": "3cb56efa7140478458dbaa2b30239845", - "files_count": null, - "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, - "scan_errors": [] - }, - { - "path": "multiple_copies_01/a_copy/a2.py", - "type": "file", - "name": "a2.py", - "base_name": "a2", - "extension": ".py", - "date": "2017-09-26", - "size": 200, - "sha1": "310797523e47db8481aeb06f1634317285115091", - "md5": "19efdad483f68bc9997a5c1f7ba41b26", - "files_count": null, - "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, - "scan_errors": [] - }, - { - "path": "multiple_copies_01/a_copy/a3.py", - "type": "file", - "name": "a3.py", - "base_name": "a3", - "extension": ".py", - "date": "2017-09-26", - "size": 200, - "sha1": "fd5d3589c825f448546d7dcec36da3e567d35fe9", - "md5": "795ff2cae8ece792a9bfebe18ad3c8e6", - "files_count": null, - "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, - "scan_errors": [] - }, - { - "path": "multiple_copies_01/a_copy/a4.py", - "type": "file", - "name": "a4.py", - "base_name": "a4", - "extension": ".py", - "date": "2017-09-26", - "size": 200, - "sha1": "6f71666c46446c29d3f45feef5419ae76fb86a5b", - "md5": "fc403815d6605df989414ff40a64ea17", - "files_count": null, - "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, - "scan_errors": [] - }, - { - "path": "multiple_copies_01/a_nested_copy/level_2", - "type": "directory", - "name": "level_2", - "base_name": "level_2", - "extension": "", - "date": null, - "size": 800, - "sha1": null, - "md5": null, - "files_count": 4, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "multiple_copies_01/a_nested_copy/level_2/a1.py", - "type": "file", - "name": "a1.py", - "base_name": "a1", - "extension": ".py", - "date": "2017-09-26", - "size": 200, - "sha1": "84b647771481d39dd3a53f6dc210c26abac37748", - "md5": "3cb56efa7140478458dbaa2b30239845", - "files_count": null, - "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, - "scan_errors": [] - }, - { - "path": "multiple_copies_01/a_nested_copy/level_2/a2.py", - "type": "file", - "name": "a2.py", - "base_name": "a2", - "extension": ".py", - "date": "2017-09-26", - "size": 200, - "sha1": "310797523e47db8481aeb06f1634317285115091", - "md5": "19efdad483f68bc9997a5c1f7ba41b26", - "files_count": null, - "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, - "scan_errors": [] - }, - { - "path": "multiple_copies_01/a_nested_copy/level_2/a3.py", - "type": "file", - "name": "a3.py", - "base_name": "a3", - "extension": ".py", - "date": "2017-09-26", - "size": 200, - "sha1": "fd5d3589c825f448546d7dcec36da3e567d35fe9", - "md5": "795ff2cae8ece792a9bfebe18ad3c8e6", - "files_count": null, - "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, - "scan_errors": [] - }, - { - "path": "multiple_copies_01/a_nested_copy/level_2/a4.py", - "type": "file", - "name": "a4.py", - "base_name": "a4", - "extension": ".py", - "date": "2017-09-26", - "size": 200, - "sha1": "6f71666c46446c29d3f45feef5419ae76fb86a5b", - "md5": "fc403815d6605df989414ff40a64ea17", - "files_count": null, - "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, - "scan_errors": [] - }, - { - "path": "multiple_copies_01/b/b1.py", - "type": "file", - "name": "b1.py", - "base_name": "b1", - "extension": ".py", - "date": "2017-09-26", - "size": 200, - "sha1": "70f6ce80985578b5104db0abc578cf5a05e78f4b", - "md5": "af9e9420c6c5b2b0ca74e96bf7c1a2f4", - "files_count": null, - "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, - "scan_errors": [] - }, - { - "path": "multiple_copies_01/b/b2.py", - "type": "file", - "name": "b2.py", - "base_name": "b2", - "extension": ".py", - "date": "2017-09-26", - "size": 200, - "sha1": "3340d86b1da9323067db8022f86dc97cfccee1d0", - "md5": "74ce2b26cebb32670634270dde1fdf33", - "files_count": null, - "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, - "scan_errors": [] - }, - { - "path": "multiple_copies_01/b/b3.py", - "type": "file", - "name": "b3.py", - "base_name": "b3", - "extension": ".py", - "date": "2017-09-26", - "size": 200, - "sha1": "e49d4463662414bee5ad2d2e5c1fbd704f33b84e", - "md5": "8d458f54d32959b03dff37ef485b29c6", - "files_count": null, - "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, - "scan_errors": [] - }, - { - "path": "multiple_copies_01/b/b4.py", - "type": "file", - "name": "b4.py", - "base_name": "b4", - "extension": ".py", - "date": "2017-09-26", - "size": 200, - "sha1": "98c9e6bed78b1513c28e666016cb35a50708c36e", - "md5": "c3559aef44883a46e007ab01213091cb", - "files_count": null, - "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, - "scan_errors": [] - } - ] -} diff --git a/tests/data/models/scan/new-scancode-header-format.json b/tests/data/models/scan/new-scancode-header-format.json deleted file mode 100644 index 7c02d59c..00000000 --- a/tests/data/models/scan/new-scancode-header-format.json +++ /dev/null @@ -1,1081 +0,0 @@ -{ - "headers": [ - { - "tool_name": "scancode-toolkit", - "tool_version": "3.0.2.post531.4f9cb0983", - "options": { - "input": [ - "samples/" - ], - "--info": true, - "--json-pp": "/Users/sesser/Code/workbench-test-scans/samples-i.json" - }, - "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.", - "start_timestamp": "2019-04-08T200424.638118", - "end_timestamp": "2019-04-08T200425.609525", - "message": null, - "errors": [], - "extra_data": { - "files_count": 33 - } - } - ], - "files": [ - { - "path": "samples", - "type": "directory", - "name": "samples", - "base_name": "samples", - "extension": "", - "size": 0, - "date": null, - "sha1": null, - "md5": null, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "files_count": 33, - "dirs_count": 10, - "size_count": 1161083, - "scan_errors": [] - }, - { - "path": "samples/README", - "type": "file", - "name": "README", - "base_name": "README", - "extension": "", - "size": 236, - "date": "2019-03-25", - "sha1": "2e07e32c52d607204fad196052d70e3d18fb8636", - "md5": "effc6856ef85a9250fb1a470792b3f38", - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/screenshot.png", - "type": "file", - "name": "screenshot.png", - "base_name": "screenshot", - "extension": ".png", - "size": 622754, - "date": "2019-03-25", - "sha1": "01ff4b1de0bc6c75c9cca6e46c80c1802d6976d4", - "md5": "b6ef5a90777147423c98b42a6a25e57a", - "mime_type": "image/png", - "file_type": "PNG image data, 2880 x 1666, 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, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/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, - "files_count": 1, - "dirs_count": 0, - "size_count": 28103, - "scan_errors": [] - }, - { - "path": "samples/arch/zlib.tar.gz", - "type": "file", - "name": "zlib.tar.gz", - "base_name": "zlib", - "extension": ".tar.gz", - "size": 28103, - "date": "2019-03-25", - "sha1": "576f0ccfe534d7f5ff5d6400078d3c6586de3abd", - "md5": "20b2370751abfc08bb3556c1d8114b5a", - "mime_type": "application/x-gzip", - "file_type": "gzip compressed data, last modified: Wed Jul 15 09:08:19 2015, from Unix", - "programming_language": null, - "is_binary": true, - "is_text": false, - "is_archive": true, - "is_media": false, - "is_source": false, - "is_script": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/JGroups", - "type": "directory", - "name": "JGroups", - "base_name": "JGroups", - "extension": "", - "size": 0, - "date": null, - "sha1": null, - "md5": null, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "files_count": 14, - "dirs_count": 2, - "size_count": 241228, - "scan_errors": [] - }, - { - "path": "samples/JGroups/EULA", - "type": "file", - "name": "EULA", - "base_name": "EULA", - "extension": "", - "size": 8156, - "date": "2019-03-25", - "sha1": "eb232aa0424eca9c4136904e6143b72aaa9cf4de", - "md5": "0be0aceb8296727efff0ac0bf8e6bdb3", - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/JGroups/LICENSE", - "type": "file", - "name": "LICENSE", - "base_name": "LICENSE", - "extension": "", - "size": 26430, - "date": "2019-03-25", - "sha1": "e60c2e780886f95df9c9ee36992b8edabec00bcc", - "md5": "7fbc338309ac38fefcd64b04bb903e34", - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/JGroups/licenses", - "type": "directory", - "name": "licenses", - "base_name": "licenses", - "extension": "", - "size": 0, - "date": null, - "sha1": null, - "md5": null, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "files_count": 5, - "dirs_count": 0, - "size_count": 54552, - "scan_errors": [] - }, - { - "path": "samples/JGroups/licenses/apache-1.1.txt", - "type": "file", - "name": "apache-1.1.txt", - "base_name": "apache-1.1", - "extension": ".txt", - "size": 2885, - "date": "2019-03-25", - "sha1": "6b5608d35c3e304532af43db8bbfc5947bef46a6", - "md5": "276982197c941f4cbf3d218546e17ae2", - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/JGroups/licenses/apache-2.0.txt", - "type": "file", - "name": "apache-2.0.txt", - "base_name": "apache-2.0", - "extension": ".txt", - "size": 11560, - "date": "2019-03-25", - "sha1": "47b573e3824cd5e02a1a3ae99e2735b49e0256e4", - "md5": "d273d63619c9aeaf15cdaf76422c4f87", - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/JGroups/licenses/bouncycastle.txt", - "type": "file", - "name": "bouncycastle.txt", - "base_name": "bouncycastle", - "extension": ".txt", - "size": 1186, - "date": "2019-03-25", - "sha1": "74facb0e9a734479f9cd893b5be3fe1bf651b760", - "md5": "9fffd8de865a5705969f62b128381f85", - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/JGroups/licenses/cpl-1.0.txt", - "type": "file", - "name": "cpl-1.0.txt", - "base_name": "cpl-1.0", - "extension": ".txt", - "size": 11987, - "date": "2019-03-25", - "sha1": "681cf776bcd79752543d42490ec7ed22a29fd888", - "md5": "9a6d2c9ae73d59eb3dd38e3909750d14", - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/JGroups/licenses/lgpl.txt", - "type": "file", - "name": "lgpl.txt", - "base_name": "lgpl", - "extension": ".txt", - "size": 26934, - "date": "2019-03-25", - "sha1": "8f1a637d2e2ed1bdb9eb01a7dccb5c12cc0557e1", - "md5": "f14599a2f089f6ff8c97e2baa4e3d575", - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/JGroups/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, - "files_count": 7, - "dirs_count": 0, - "size_count": 152090, - "scan_errors": [] - }, - { - "path": "samples/JGroups/src/FixedMembershipToken.java", - "type": "file", - "name": "FixedMembershipToken.java", - "base_name": "FixedMembershipToken", - "extension": ".java", - "size": 5144, - "date": "2019-03-25", - "sha1": "5901f73dcc78155a1a2c7b5663a3a11fba400b19", - "md5": "aca9640ec8beee21b098bcf8ecc91442", - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/JGroups/src/GuardedBy.java", - "type": "file", - "name": "GuardedBy.java", - "base_name": "GuardedBy", - "extension": ".java", - "size": 813, - "date": "2019-03-25", - "sha1": "981d67087e65e9a44957c026d4b10817cf77d966", - "md5": "c5064400f759d3e81771005051d17dc1", - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/JGroups/src/ImmutableReference.java", - "type": "file", - "name": "ImmutableReference.java", - "base_name": "ImmutableReference", - "extension": ".java", - "size": 1838, - "date": "2019-03-25", - "sha1": "30f56b876d5576d9869e2c5c509b08db57110592", - "md5": "48ca3c72fb9a65c771a321222f118b88", - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/JGroups/src/RATE_LIMITER.java", - "type": "file", - "name": "RATE_LIMITER.java", - "base_name": "RATE_LIMITER", - "extension": ".java", - "size": 3692, - "date": "2019-03-25", - "sha1": "a8087e5d50da3273536ebda9b87b77aa4ff55deb", - "md5": "4626bdbc48871b55513e1a12991c61a8", - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/JGroups/src/RouterStub.java", - "type": "file", - "name": "RouterStub.java", - "base_name": "RouterStub", - "extension": ".java", - "size": 9913, - "date": "2019-03-25", - "sha1": "c1f6818f8ee7bddcc9f444bc94c099729d716d52", - "md5": "eecfe23494acbcd8088c93bc1e83c7f2", - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/JGroups/src/RouterStubManager.java", - "type": "file", - "name": "RouterStubManager.java", - "base_name": "RouterStubManager", - "extension": ".java", - "size": 8162, - "date": "2019-03-25", - "sha1": "eb419dc94cfe11ca318a3e743a7f9f080e70c751", - "md5": "20bee9631b7c82a45c250e095352aec7", - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/JGroups/src/S3_PING.java", - "type": "file", - "name": "S3_PING.java", - "base_name": "S3_PING", - "extension": ".java", - "size": 122528, - "date": "2019-03-25", - "sha1": "08dba9986f69719970ead3592dc565465164df0d", - "md5": "83d8324f37d0e3f120bc89865cf0bd39", - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/zlib", - "type": "directory", - "name": "zlib", - "base_name": "zlib", - "extension": "", - "size": 0, - "date": null, - "sha1": null, - "md5": null, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "files_count": 16, - "dirs_count": 5, - "size_count": 268762, - "scan_errors": [] - }, - { - "path": "samples/zlib/adler32.c", - "type": "file", - "name": "adler32.c", - "base_name": "adler32", - "extension": ".c", - "size": 4968, - "date": "2019-03-25", - "sha1": "0cff4808476ce0b5f6f0ebbc69ee2ab2a0eebe43", - "md5": "ae3bbb54820e1d49fb90cbba222e973f", - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C++", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/zlib/deflate.c", - "type": "file", - "name": "deflate.c", - "base_name": "deflate", - "extension": ".c", - "size": 71476, - "date": "2019-03-25", - "sha1": "7b4ace6d698c5dbbfb9a8f047f63228ca54d2e77", - "md5": "cd7826278ce9d9d9ed5abdefef50c3e2", - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C++", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/zlib/deflate.h", - "type": "file", - "name": "deflate.h", - "base_name": "deflate", - "extension": ".h", - "size": 12774, - "date": "2019-03-25", - "sha1": "29ed3b8ca3927576e5889dea5880ca0052942c7d", - "md5": "7ceae74a13201f14c91623116af169c3", - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C++", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/zlib/zlib.h", - "type": "file", - "name": "zlib.h", - "base_name": "zlib", - "extension": ".h", - "size": 87883, - "date": "2019-03-25", - "sha1": "400d35465f179a4acacb5fe749e6ce20a0bbdb84", - "md5": "64d8a5180bd54ff5452886e4cbb21e14", - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C++", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/zlib/zutil.c", - "type": "file", - "name": "zutil.c", - "base_name": "zutil", - "extension": ".c", - "size": 7414, - "date": "2019-03-25", - "sha1": "e1af709bff21ae0d4331119a7fc4c19f82932043", - "md5": "fff257bc1656eb60fc585a7dc35f963d", - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C++", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/zlib/zutil.h", - "type": "file", - "name": "zutil.h", - "base_name": "zutil", - "extension": ".h", - "size": 6766, - "date": "2019-03-25", - "sha1": "b909d27ef9ce51639f76b7ea6b62721e7d1b6bf7", - "md5": "04fcfbb961591c9452c4d0fd1525ffdf", - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C++", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/zlib/ada", - "type": "directory", - "name": "ada", - "base_name": "ada", - "extension": "", - "size": 0, - "date": null, - "sha1": null, - "md5": null, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "files_count": 1, - "dirs_count": 0, - "size_count": 13594, - "scan_errors": [] - }, - { - "path": "samples/zlib/ada/zlib.ads", - "type": "file", - "name": "zlib.ads", - "base_name": "zlib", - "extension": ".ads", - "size": 13594, - "date": "2019-03-25", - "sha1": "0245a91806d804bf9f0907a3a001a141e9adb61b", - "md5": "71de2670f2e588b51c62e7f6a9046399", - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/zlib/dotzlib", - "type": "directory", - "name": "dotzlib", - "base_name": "dotzlib", - "extension": "", - "size": 0, - "date": null, - "sha1": null, - "md5": null, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "files_count": 4, - "dirs_count": 0, - "size_count": 14257, - "scan_errors": [] - }, - { - "path": "samples/zlib/dotzlib/AssemblyInfo.cs", - "type": "file", - "name": "AssemblyInfo.cs", - "base_name": "AssemblyInfo", - "extension": ".cs", - "size": 2500, - "date": "2019-03-25", - "sha1": "9f1db1177b2e9a014f72bb3cd80be17133e06d16", - "md5": "23d0d7c18846fc31655b6aa89b7c8038", - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "C#", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/zlib/dotzlib/ChecksumImpl.cs", - "type": "file", - "name": "ChecksumImpl.cs", - "base_name": "ChecksumImpl", - "extension": ".cs", - "size": 8040, - "date": "2019-03-25", - "sha1": "3807a0e24a57b92ea301559cab7307b8eab52c51", - "md5": "d01b3cb2e75da9b15f05b92b42f6bd33", - "mime_type": "text/plain", - "file_type": "ISO-8859 text, with CRLF line terminators", - "programming_language": "C#", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/zlib/dotzlib/LICENSE_1_0.txt", - "type": "file", - "name": "LICENSE_1_0.txt", - "base_name": "LICENSE_1_0", - "extension": ".txt", - "size": 1359, - "date": "2019-03-25", - "sha1": "892b34f7865d90a6f949f50d95e49625a10bc7f0", - "md5": "81543b22c36f10d20ac9712f8d80ef8d", - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/zlib/dotzlib/readme.txt", - "type": "file", - "name": "readme.txt", - "base_name": "readme", - "extension": ".txt", - "size": 2358, - "date": "2019-03-25", - "sha1": "b1229b826f0096808628474538cea8fec2922a9b", - "md5": "1f20f3168ee63d90de033edac2ce383c", - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/zlib/gcc_gvmat64", - "type": "directory", - "name": "gcc_gvmat64", - "base_name": "gcc_gvmat64", - "extension": "", - "size": 0, - "date": null, - "sha1": null, - "md5": null, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "files_count": 1, - "dirs_count": 0, - "size_count": 16413, - "scan_errors": [] - }, - { - "path": "samples/zlib/gcc_gvmat64/gvmat64.S", - "type": "file", - "name": "gvmat64.S", - "base_name": "gvmat64", - "extension": ".S", - "size": 16413, - "date": "2019-03-25", - "sha1": "742603cba1af98a1432cc02efb019b1a5760adf2", - "md5": "5e772d7302475e5473d0c4c57b9861e8", - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "GAS", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/zlib/infback9", - "type": "directory", - "name": "infback9", - "base_name": "infback9", - "extension": "", - "size": 0, - "date": null, - "sha1": null, - "md5": null, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "files_count": 2, - "dirs_count": 0, - "size_count": 23223, - "scan_errors": [] - }, - { - "path": "samples/zlib/infback9/infback9.c", - "type": "file", - "name": "infback9.c", - "base_name": "infback9", - "extension": ".c", - "size": 21629, - "date": "2019-03-25", - "sha1": "17fb362c03755b12f2dda5b12a68cf38162674bd", - "md5": "23ff5edec0817da303cb1294c1e4205c", - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C++", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/zlib/infback9/infback9.h", - "type": "file", - "name": "infback9.h", - "base_name": "infback9", - "extension": ".h", - "size": 1594, - "date": "2019-03-25", - "sha1": "d0486a32b558dcaceded5f0746fad62e680a4734", - "md5": "52b1ed99960d3ed7ed60cd20295e64a8", - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C++", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/zlib/iostream2", - "type": "directory", - "name": "iostream2", - "base_name": "iostream2", - "extension": "", - "size": 0, - "date": null, - "sha1": null, - "md5": null, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "files_count": 2, - "dirs_count": 0, - "size_count": 9994, - "scan_errors": [] - }, - { - "path": "samples/zlib/iostream2/zstream.h", - "type": "file", - "name": "zstream.h", - "base_name": "zstream", - "extension": ".h", - "size": 9283, - "date": "2019-03-25", - "sha1": "fca4540d490fff36bb90fd801cf9cd8fc695bb17", - "md5": "a980b61c1e8be68d5cdb1236ba6b43e7", - "mime_type": "text/x-c++", - "file_type": "C++ source, ASCII text", - "programming_language": "C++", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/zlib/iostream2/zstream_test.cpp", - "type": "file", - "name": "zstream_test.cpp", - "base_name": "zstream_test", - "extension": ".cpp", - "size": 711, - "date": "2019-03-25", - "sha1": "e18a6d55cbbd8b832f8d795530553467e5c74fcf", - "md5": "d32476bde4e6d5f889092fdff6f8cdb0", - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C++", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - } - ] -} diff --git a/tests/data/models/scan/old-version.json b/tests/data/models/scan/old-version.json deleted file mode 100644 index bb43caf9..00000000 --- a/tests/data/models/scan/old-version.json +++ /dev/null @@ -1,958 +0,0 @@ -{ - "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": "1.6.0adbsad", - "scancode_options": { - "--info": true, - "--license-score": 0, - "--format": "json-pp" - }, - "files_count": 43, - "files": [ - { - "path": "samples/README", - "type": "file", - "name": "README", - "base_name": "README", - "extension": "", - "date": "2017-02-02", - "size": 239, - "sha1": "c6cff3e0957498242703871dc306ed735181a9e5", - "md5": "5a863f0639e14c541564ba1bbd698af0", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/screenshot.png", - "type": "file", - "name": "screenshot.png", - "base_name": "screenshot", - "extension": ".png", - "date": "2017-02-02", - "size": 622754, - "sha1": "01ff4b1de0bc6c75c9cca6e46c80c1802d6976d4", - "md5": "b6ef5a90777147423c98b42a6a25e57a", - "files_count": null, - "mime_type": "image/png", - "file_type": "PNG image data, 2880 x 1666, 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, - "scan_errors": [] - }, - { - "path": "samples/arch", - "type": "directory", - "name": "arch", - "base_name": "arch", - "extension": "", - "date": null, - "size": 28103, - "sha1": null, - "md5": null, - "files_count": 1, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/JGroups", - "type": "directory", - "name": "JGroups", - "base_name": "JGroups", - "extension": "", - "date": null, - "size": 245739, - "sha1": null, - "md5": null, - "files_count": 14, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib", - "type": "directory", - "name": "zlib", - "base_name": "zlib", - "extension": "", - "date": null, - "size": 274911, - "sha1": null, - "md5": null, - "files_count": 16, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/arch/zlib.tar.gz", - "type": "file", - "name": "zlib.tar.gz", - "base_name": "zlib", - "extension": ".tar.gz", - "date": "2017-02-02", - "size": 28103, - "sha1": "576f0ccfe534d7f5ff5d6400078d3c6586de3abd", - "md5": "20b2370751abfc08bb3556c1d8114b5a", - "files_count": null, - "mime_type": "application/x-gzip", - "file_type": "gzip compressed data, last modified: Wed Jul 15 02:08:19 2015, from Unix", - "programming_language": null, - "is_binary": true, - "is_text": false, - "is_archive": true, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/JGroups/EULA", - "type": "file", - "name": "EULA", - "base_name": "EULA", - "extension": "", - "date": "2017-02-02", - "size": 8265, - "sha1": "48fbca418bc12ffad8b8c82b08dac07508b08c6c", - "md5": "a97752adcb0781cf02a011f06e95887c", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Velocity", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/JGroups/LICENSE", - "type": "file", - "name": "LICENSE", - "base_name": "LICENSE", - "extension": "", - "date": "2017-02-02", - "size": 26934, - "sha1": "8f1a637d2e2ed1bdb9eb01a7dccb5c12cc0557e1", - "md5": "f14599a2f089f6ff8c97e2baa4e3d575", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/JGroups/licenses", - "type": "directory", - "name": "licenses", - "base_name": "licenses", - "extension": "", - "date": null, - "size": 54569, - "sha1": null, - "md5": null, - "files_count": 5, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/JGroups/src", - "type": "directory", - "name": "src", - "base_name": "src", - "extension": "", - "date": null, - "size": 155971, - "sha1": null, - "md5": null, - "files_count": 7, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/JGroups/licenses/apache-1.1.txt", - "type": "file", - "name": "apache-1.1.txt", - "base_name": "apache-1.1", - "extension": ".txt", - "date": "2017-02-02", - "size": 2885, - "sha1": "6b5608d35c3e304532af43db8bbfc5947bef46a6", - "md5": "276982197c941f4cbf3d218546e17ae2", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/JGroups/licenses/apache-2.0.txt", - "type": "file", - "name": "apache-2.0.txt", - "base_name": "apache-2.0", - "extension": ".txt", - "date": "2017-02-02", - "size": 11560, - "sha1": "47b573e3824cd5e02a1a3ae99e2735b49e0256e4", - "md5": "d273d63619c9aeaf15cdaf76422c4f87", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/JGroups/licenses/bouncycastle.txt", - "type": "file", - "name": "bouncycastle.txt", - "base_name": "bouncycastle", - "extension": ".txt", - "date": "2017-02-02", - "size": 1203, - "sha1": "5693e1524ea9c177cd603f47c2b77f5b8ec2a3b9", - "md5": "8d00871ced5dc2a03d1e90f1e59ea97b", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/JGroups/licenses/cpl-1.0.txt", - "type": "file", - "name": "cpl-1.0.txt", - "base_name": "cpl-1.0", - "extension": ".txt", - "date": "2017-02-02", - "size": 11987, - "sha1": "681cf776bcd79752543d42490ec7ed22a29fd888", - "md5": "9a6d2c9ae73d59eb3dd38e3909750d14", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/JGroups/licenses/lgpl.txt", - "type": "file", - "name": "lgpl.txt", - "base_name": "lgpl", - "extension": ".txt", - "date": "2017-02-02", - "size": 26934, - "sha1": "8f1a637d2e2ed1bdb9eb01a7dccb5c12cc0557e1", - "md5": "f14599a2f089f6ff8c97e2baa4e3d575", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/JGroups/src/FixedMembershipToken.java", - "type": "file", - "name": "FixedMembershipToken.java", - "base_name": "FixedMembershipToken", - "extension": ".java", - "date": "2017-02-02", - "size": 5294, - "sha1": "4375406c4515f66ac0498d7c6cec5a4841a74cbc", - "md5": "d1994ba211364156da23ebda7b91de2e", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/JGroups/src/GuardedBy.java", - "type": "file", - "name": "GuardedBy.java", - "base_name": "GuardedBy", - "extension": ".java", - "date": "2017-02-02", - "size": 836, - "sha1": "93a222292c1eb143538cf876f0e5575fccd87271", - "md5": "739d4bb080991b678a662f5742f30ff1", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/JGroups/src/ImmutableReference.java", - "type": "file", - "name": "ImmutableReference.java", - "base_name": "ImmutableReference", - "extension": ".java", - "date": "2017-02-02", - "size": 1893, - "sha1": "429e0ef4c3e85c37b766225402cb77b75f4bda9f", - "md5": "4f72b0abb111b459c89db7e7fd89aba1", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/JGroups/src/RATE_LIMITER.java", - "type": "file", - "name": "RATE_LIMITER.java", - "base_name": "RATE_LIMITER", - "extension": ".java", - "date": "2017-02-02", - "size": 3812, - "sha1": "7e79042c0239ec9313749be7cceb6f12d0705992", - "md5": "1895e6dee69935f4fc6902abe2d80f6e", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/JGroups/src/RouterStub.java", - "type": "file", - "name": "RouterStub.java", - "base_name": "RouterStub", - "extension": ".java", - "date": "2017-02-02", - "size": 10208, - "sha1": "f255c2dbdb104bb0b0773da62fd57a05828a3c53", - "md5": "7026e7ae2fa9bf3217441f7495f5989a", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/JGroups/src/RouterStubManager.java", - "type": "file", - "name": "RouterStubManager.java", - "base_name": "RouterStubManager", - "extension": ".java", - "date": "2017-02-02", - "size": 8375, - "sha1": "7c03434b9b6ed5e8d70a780a4a8c677955a365bf", - "md5": "2fe89992a3dfb7f5f2343236fbe665a4", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/JGroups/src/S3_PING.java", - "type": "file", - "name": "S3_PING.java", - "base_name": "S3_PING", - "extension": ".java", - "date": "2017-02-02", - "size": 125553, - "sha1": "41ea46b0c88c4cf331b38b0074497672c114dd12", - "md5": "8f47e9762f9654f6ccb160740cd856c8", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/adler32.c", - "type": "file", - "name": "adler32.c", - "base_name": "adler32", - "extension": ".c", - "date": "2017-02-02", - "size": 5147, - "sha1": "f7142f39739b275d3077987f6132504139dcedd9", - "md5": "faf360ba01a8aa854409e93214a46296", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/deflate.c", - "type": "file", - "name": "deflate.c", - "base_name": "deflate", - "extension": ".c", - "date": "2017-02-02", - "size": 73443, - "sha1": "4cfa5e74c668ef12218a6eee87801e8b75d248ef", - "md5": "2018726c0f336ce97d2aeeafc06879c3", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/deflate.h", - "type": "file", - "name": "deflate.h", - "base_name": "deflate", - "extension": ".h", - "date": "2017-02-02", - "size": 13120, - "sha1": "cf1978ea0378a2f0b0fa98c383c9b08a3b3f3655", - "md5": "f284d0140dcd0d799ad8a6c74e311829", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/zlib.h", - "type": "file", - "name": "zlib.h", - "base_name": "zlib", - "extension": ".h", - "date": "2017-02-02", - "size": 89651, - "sha1": "1fabede36e27d93619690144b7a240bfe7a24f88", - "md5": "a1d4c6864c789f539d325566a863ff26", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/zutil.c", - "type": "file", - "name": "zutil.c", - "base_name": "zutil", - "extension": ".c", - "date": "2017-02-02", - "size": 7738, - "sha1": "750edc45373acd6b3f187ad0d25766819db67a37", - "md5": "15b58dbc0d7c5ee05deb2a0094ecca8c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/zutil.h", - "type": "file", - "name": "zutil.h", - "base_name": "zutil", - "extension": ".h", - "date": "2017-02-02", - "size": 7019, - "sha1": "b541ca323c529c1b6bc3102b8b01473a2409aa5a", - "md5": "0cd2089ea6c4dc4bd584d7dd3fb7037f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/ada", - "type": "directory", - "name": "ada", - "base_name": "ada", - "extension": "", - "date": null, - "size": 13922, - "sha1": null, - "md5": null, - "files_count": 1, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/dotzlib", - "type": "directory", - "name": "dotzlib", - "base_name": "dotzlib", - "extension": "", - "date": null, - "size": 14257, - "sha1": null, - "md5": null, - "files_count": 4, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/gcc_gvmat64", - "type": "directory", - "name": "gcc_gvmat64", - "base_name": "gcc_gvmat64", - "extension": "", - "date": null, - "size": 16413, - "sha1": null, - "md5": null, - "files_count": 1, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/infback9", - "type": "directory", - "name": "infback9", - "base_name": "infback9", - "extension": "", - "date": null, - "size": 23875, - "sha1": null, - "md5": null, - "files_count": 2, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/iostream2", - "type": "directory", - "name": "iostream2", - "base_name": "iostream2", - "extension": "", - "date": null, - "size": 10326, - "sha1": null, - "md5": null, - "files_count": 2, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/ada/zlib.ads", - "type": "file", - "name": "zlib.ads", - "base_name": "zlib", - "extension": ".ads", - "date": "2017-02-02", - "size": 13922, - "sha1": "b1735a58842c907a4926f50326c774538482efd2", - "md5": "55f9046b4db726c6981e28a15dd48b12", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Ada", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/dotzlib/AssemblyInfo.cs", - "type": "file", - "name": "AssemblyInfo.cs", - "base_name": "AssemblyInfo", - "extension": ".cs", - "date": "2017-02-02", - "size": 2500, - "sha1": "9f1db1177b2e9a014f72bb3cd80be17133e06d16", - "md5": "23d0d7c18846fc31655b6aa89b7c8038", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "C#", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/dotzlib/ChecksumImpl.cs", - "type": "file", - "name": "ChecksumImpl.cs", - "base_name": "ChecksumImpl", - "extension": ".cs", - "date": "2017-02-02", - "size": 8040, - "sha1": "3807a0e24a57b92ea301559cab7307b8eab52c51", - "md5": "d01b3cb2e75da9b15f05b92b42f6bd33", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ISO-8859 text, with CRLF line terminators", - "programming_language": "C#", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/dotzlib/LICENSE_1_0.txt", - "type": "file", - "name": "LICENSE_1_0.txt", - "base_name": "LICENSE_1_0", - "extension": ".txt", - "date": "2017-02-02", - "size": 1359, - "sha1": "892b34f7865d90a6f949f50d95e49625a10bc7f0", - "md5": "81543b22c36f10d20ac9712f8d80ef8d", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/dotzlib/readme.txt", - "type": "file", - "name": "readme.txt", - "base_name": "readme", - "extension": ".txt", - "date": "2017-02-02", - "size": 2358, - "sha1": "b1229b826f0096808628474538cea8fec2922a9b", - "md5": "1f20f3168ee63d90de033edac2ce383c", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/gcc_gvmat64/gvmat64.S", - "type": "file", - "name": "gvmat64.S", - "base_name": "gvmat64", - "extension": ".S", - "date": "2017-02-02", - "size": 16413, - "sha1": "742603cba1af98a1432cc02efb019b1a5760adf2", - "md5": "5e772d7302475e5473d0c4c57b9861e8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "GAS", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/infback9/infback9.c", - "type": "file", - "name": "infback9.c", - "base_name": "infback9", - "extension": ".c", - "date": "2017-02-02", - "size": 22244, - "sha1": "be9fd74e9afc16cfbbb693195df972665179c734", - "md5": "f08efcac0c60b475a7a34888a7b85236", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/infback9/infback9.h", - "type": "file", - "name": "infback9.h", - "base_name": "infback9", - "extension": ".h", - "date": "2017-02-02", - "size": 1631, - "sha1": "9f66c9bf6ad6b4c676e3fe514be653704b403019", - "md5": "7acf663360f7bb54d0f95b808c673fd4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/iostream2/zstream.h", - "type": "file", - "name": "zstream.h", - "base_name": "zstream", - "extension": ".h", - "date": "2017-02-02", - "size": 9590, - "sha1": "e849f490ba14f090f2d97655197098f0a4187c4a", - "md5": "4d344c3d93e264c9d9b42ed7c54d34d9", - "files_count": null, - "mime_type": "text/x-c++", - "file_type": "C++ source, ASCII text, with CRLF line terminators", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - }, - { - "path": "samples/zlib/iostream2/zstream_test.cpp", - "type": "file", - "name": "zstream_test.cpp", - "base_name": "zstream_test", - "extension": ".cpp", - "date": "2017-02-02", - "size": 736, - "sha1": "ced646ae3fc8dde7e7cdff41da29b92cce4f795d", - "md5": "b3a86f4710d45e920c8adfa04876b7b5", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "C++", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [] - } - ] -} diff --git a/tests/data/models/scan/openssl-1.1.0f-clip_scan.json b/tests/data/models/scan/openssl-1.1.0f-clip_scan.json deleted file mode 100644 index a7d7dc13..00000000 --- a/tests/data/models/scan/openssl-1.1.0f-clip_scan.json +++ /dev/null @@ -1,141373 +0,0 @@ -{ - "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.2.1", - "scancode_options": { - "--copyright": true, - "--license": true, - "--package": true, - "--info": true, - "--license-score": 0, - "--format": "json-pp" - }, - "files_count": 2585, - "files": [ - { - "path": "openssl-1.1.0f/.travis-create-release.sh", - "type": "file", - "name": ".travis-create-release.sh", - "base_name": ".travis-create-release", - "extension": ".sh", - "date": "2017-05-25", - "size": 258, - "sha1": "3ebc957dc7bebabcb23eb4c67f6aee702393e779", - "md5": "aa0c76e36c486bb7d81d8bab92c3943b", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/.travis.yml", - "type": "file", - "name": ".travis.yml", - "base_name": ".travis", - "extension": ".yml", - "date": "2017-05-25", - "size": 6987, - "sha1": "8ed09ca21c165c2890ec3752976c9be129fcc931", - "md5": "e62d91c249acb950c5d1309fc3031b6f", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/ACKNOWLEDGEMENTS", - "type": "file", - "name": "ACKNOWLEDGEMENTS", - "base_name": "ACKNOWLEDGEMENTS", - "extension": "", - "date": "2017-05-25", - "size": 87, - "sha1": "a427ce5add277b062790adc6d03b1721d0e97da4", - "md5": "cb0ec3e273abef55cf69e3daf0eb1aa7", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/appveyor.yml", - "type": "file", - "name": "appveyor.yml", - "base_name": "appveyor", - "extension": ".yml", - "date": "2017-05-25", - "size": 955, - "sha1": "ae29b49b9393880e1a976a8f35e7bc60d4e22478", - "md5": "9877207734e5d69c3aa6fb9cd0c9ac91", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/AUTHORS", - "type": "file", - "name": "AUTHORS", - "base_name": "AUTHORS", - "extension": "", - "date": "2017-05-25", - "size": 362, - "sha1": "ffa1c3047326caa9055a5ea6c408ae44aee65619", - "md5": "cd97ff72805cc3e6c75c4cac00825f8e", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 2282, - "sha1": "7ce413e27f2f7932f7e393d07045e759be527a55", - "md5": "2d229e58b3d515daefc54200fd02a295", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/CHANGES", - "type": "file", - "name": "CHANGES", - "base_name": "CHANGES", - "extension": "", - "date": "2017-05-25", - "size": 542525, - "sha1": "7aeb8769137619d425ec15a0085ef0805233b552", - "md5": "0729acaf431981e265fa8c3019170946", - "files_count": null, - "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, - "scan_errors": [], - "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": 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": [ - "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": [] - }, - { - "path": "openssl-1.1.0f/config", - "type": "file", - "name": "config", - "base_name": "config", - "extension": "", - "date": "2017-05-25", - "size": 28008, - "sha1": "49ee9e94a6b57596651fe241c4492e5ec00e20ff", - "md5": "d949d7d28650d213e4b4672f0a416ed9", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/config.com", - "type": "file", - "name": "config.com", - "base_name": "config", - "extension": ".com", - "date": "2017-05-25", - "size": 2507, - "sha1": "0b19cef8268e8784bf661d2460516eaed97b7c65", - "md5": "71586d012b7265bf2dafa104de2df6ef", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/Configure", - "type": "file", - "name": "Configure", - "base_name": "Configure", - "extension": "", - "date": "2017-05-25", - "size": 92725, - "sha1": "9335121250c73adc521ad324ed9cedc5d64f2097", - "md5": "f1b5f64a680497735a1f0b2bfb75864e", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/CONTRIBUTING", - "type": "file", - "name": "CONTRIBUTING", - "base_name": "CONTRIBUTING", - "extension": "", - "date": "2017-05-25", - "size": 2600, - "sha1": "d1b30b40093370992f9baa9dd4a6835cccdf679c", - "md5": "a74ddc3425c84c47516c225be33dcb2e", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 29, - "end_line": 29 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/e_os.h", - "type": "file", - "name": "e_os.h", - "base_name": "e_os", - "extension": ".h", - "date": "2017-05-25", - "size": 15399, - "sha1": "ab774d2366feee4b5268de73df890736e8072b40", - "md5": "5ebb7ba410d616a74a82e85d6cf8589f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/FAQ", - "type": "file", - "name": "FAQ", - "base_name": "FAQ", - "extension": "", - "date": "2017-05-25", - "size": 84, - "sha1": "32d2fc529184d69f61412a867ccd24cdbc161a94", - "md5": "773609f5df921846200ffdadb8183fd2", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/INSTALL", - "type": "file", - "name": "INSTALL", - "base_name": "INSTALL", - "extension": "", - "date": "2017-05-25", - "size": 40589, - "sha1": "5a4fde3091417098b7fced2ff1eb3ea9030b703b", - "md5": "4d18b5b247ce005550413440c93bfb51", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/LICENSE", - "type": "file", - "name": "LICENSE", - "base_name": "LICENSE", - "extension": "", - "date": "2017-05-25", - "size": 6128, - "sha1": "c820a61003ed938baeef71c322ca306f874cbc71", - "md5": "cae6da10f4ffd9703214776d2aabce32", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "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": 100.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": 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": [] - }, - { - "path": "openssl-1.1.0f/Makefile.shared", - "type": "file", - "name": "Makefile.shared", - "base_name": "Makefile", - "extension": ".shared", - "date": "2017-05-25", - "size": 21571, - "sha1": "970a448b0bc854df2f60f66eaf385f439e842e00", - "md5": "29c0a2ffba2ede31df397806bcde57c3", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/NEWS", - "type": "file", - "name": "NEWS", - "base_name": "NEWS", - "extension": "", - "date": "2017-05-25", - "size": 37349, - "sha1": "2322ce0eeebc74c79fdd6724b5d3fce9bd98114c", - "md5": "fca2ae93771e79cc984f4b82c37dd425", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/NOTES.DJGPP", - "type": "file", - "name": "NOTES.DJGPP", - "base_name": "NOTES", - "extension": ".DJGPP", - "date": "2017-05-25", - "size": 2095, - "sha1": "d177279f8735c9ed8fe0a5455687e0e9e78ae758", - "md5": "66772d0e37175ba95536d98b3462dc7e", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/NOTES.PERL", - "type": "file", - "name": "NOTES.PERL", - "base_name": "NOTES", - "extension": ".PERL", - "date": "2017-05-25", - "size": 4580, - "sha1": "5780c5c910ff1579160b3a6edb6bbbc93ccf849b", - "md5": "c995e68aa7123d69a898b0e4ad8c769d", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/NOTES.UNIX", - "type": "file", - "name": "NOTES.UNIX", - "base_name": "NOTES", - "extension": ".UNIX", - "date": "2017-05-25", - "size": 1276, - "sha1": "e3dc4e3b6f241d26e51a374d9bf95000769708ed", - "md5": "6b25ca42c5490281c11c58d3444c1143", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/NOTES.VMS", - "type": "file", - "name": "NOTES.VMS", - "base_name": "NOTES", - "extension": ".VMS", - "date": "2017-05-25", - "size": 2738, - "sha1": "270fe58256ecc7f833b965df696c60d789076e97", - "md5": "c2f574dd15622555ee81eb52157f9ff9", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/NOTES.WIN", - "type": "file", - "name": "NOTES.WIN", - "base_name": "NOTES", - "extension": ".WIN", - "date": "2017-05-25", - "size": 5360, - "sha1": "ccaed26962b497e704c42301e3fc86d97c805e57", - "md5": "f09955767d513f0ff5e9cebfbcc3a5b0", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/README", - "type": "file", - "name": "README", - "base_name": "README", - "extension": "", - "date": "2017-05-25", - "size": 3210, - "sha1": "e777f9b531497698f8b2600ecc31a64154acc4bc", - "md5": "5d2569be68b984198b933865f1b87d13", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "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": [] - }, - { - "path": "openssl-1.1.0f/README.ECC", - "type": "file", - "name": "README.ECC", - "base_name": "README", - "extension": ".ECC", - "date": "2017-05-25", - "size": 3552, - "sha1": "e760e86209467611ecbc0c245f56d0e8167cab04", - "md5": "affbf4223d272900feb731d667546b65", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/README.ENGINE", - "type": "file", - "name": "README.ENGINE", - "base_name": "README", - "extension": ".ENGINE", - "date": "2017-05-25", - "size": 16087, - "sha1": "12ae93b1acd61b57d63245c61d165a3290cd6217", - "md5": "f5cd0f89b73fc6bb69733ecf1478a156", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/README.FIPS", - "type": "file", - "name": "README.FIPS", - "base_name": "README", - "extension": ".FIPS", - "date": "2017-05-25", - "size": 61, - "sha1": "a7dd1bdcb4958e172df0550192b4260737b572fe", - "md5": "d9843adb59eee61091dd34eecf34607f", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps", - "type": "directory", - "name": "apps", - "base_name": "apps", - "extension": "", - "date": null, - "size": 1401974, - "sha1": null, - "md5": null, - "files_count": 101, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/Configurations", - "type": "directory", - "name": "Configurations", - "base_name": "Configurations", - "extension": "", - "date": null, - "size": 278151, - "sha1": null, - "md5": null, - "files_count": 15, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto", - "type": "directory", - "name": "crypto", - "base_name": "crypto", - "extension": "", - "date": null, - "size": 11444950, - "sha1": null, - "md5": null, - "files_count": 962, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/demos", - "type": "directory", - "name": "demos", - "base_name": "demos", - "extension": "", - "date": null, - "size": 108021, - "sha1": null, - "md5": null, - "files_count": 66, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc", - "type": "directory", - "name": "doc", - "base_name": "doc", - "extension": "", - "date": null, - "size": 1960380, - "sha1": null, - "md5": null, - "files_count": 454, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/engines", - "type": "directory", - "name": "engines", - "base_name": "engines", - "extension": "", - "date": null, - "size": 272850, - "sha1": null, - "md5": null, - "files_count": 28, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/external", - "type": "directory", - "name": "external", - "base_name": "external", - "extension": "", - "date": null, - "size": 142908, - "sha1": null, - "md5": null, - "files_count": 27, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/fuzz", - "type": "directory", - "name": "fuzz", - "base_name": "fuzz", - "extension": "", - "date": null, - "size": 41619, - "sha1": null, - "md5": null, - "files_count": 16, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/include", - "type": "directory", - "name": "include", - "base_name": "include", - "extension": "", - "date": null, - "size": 1262425, - "sha1": null, - "md5": null, - "files_count": 87, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/ms", - "type": "directory", - "name": "ms", - "base_name": "ms", - "extension": "", - "date": null, - "size": 23281, - "sha1": null, - "md5": null, - "files_count": 10, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/os-dep", - "type": "directory", - "name": "os-dep", - "base_name": "os-dep", - "extension": "", - "date": null, - "size": 46, - "sha1": null, - "md5": null, - "files_count": 1, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/ssl", - "type": "directory", - "name": "ssl", - "base_name": "ssl", - "extension": "", - "date": null, - "size": 1414333, - "sha1": null, - "md5": null, - "files_count": 48, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test", - "type": "directory", - "name": "test", - "base_name": "test", - "extension": "", - "date": null, - "size": 3048327, - "sha1": null, - "md5": null, - "files_count": 563, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/tools", - "type": "directory", - "name": "tools", - "base_name": "tools", - "extension": "", - "date": null, - "size": 6422, - "sha1": null, - "md5": null, - "files_count": 2, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/util", - "type": "directory", - "name": "util", - "base_name": "util", - "extension": "", - "date": null, - "size": 532748, - "sha1": null, - "md5": null, - "files_count": 35, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/VMS", - "type": "directory", - "name": "VMS", - "base_name": "VMS", - "extension": "", - "date": null, - "size": 12345, - "sha1": null, - "md5": null, - "files_count": 8, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/apps.c", - "type": "file", - "name": "apps.c", - "base_name": "apps", - "extension": ".c", - "date": "2017-05-25", - "size": 71209, - "sha1": "6fd413f7717f70176d515fdc7711eabde42d7dee", - "md5": "44d9056f44ab405bf88aee89426f22ec", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/apps.h", - "type": "file", - "name": "apps.h", - "base_name": "apps", - "extension": ".h", - "date": "2017-05-25", - "size": 22618, - "sha1": "ca385c0f33ca6a7fdd088ec627e40f13c841364d", - "md5": "9dcc12672ed04dfd8356e7d2f29fb659", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/app_rand.c", - "type": "file", - "name": "app_rand.c", - "base_name": "app_rand", - "extension": ".c", - "date": "2017-05-25", - "size": 3135, - "sha1": "8e51d2ef18f692c0b33c841c1695879bc2a2fcde", - "md5": "45d0d55b31b723c7b1b56e7d49fd8cc4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/asn1pars.c", - "type": "file", - "name": "asn1pars.c", - "base_name": "asn1pars", - "extension": ".c", - "date": "2017-05-25", - "size": 9440, - "sha1": "8d103282b9983373a4bcf0ea2169798d832f8fd2", - "md5": "f5d12c06c74ac038a537244bd4a04ffc", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 886, - "sha1": "a7bbfb93c6632a368c9f14aa76812f8f9afe1a1b", - "md5": "36f5aa3911d58406bdf07e7dd1031d65", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/ca-cert.srl", - "type": "file", - "name": "ca-cert.srl", - "base_name": "ca-cert", - "extension": ".srl", - "date": "2017-05-25", - "size": 3, - "sha1": "478330af84ea74932db60e35533215de649a06c4", - "md5": "307e629e5c5c1c4d31a678949d81548e", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/ca-key.pem", - "type": "file", - "name": "ca-key.pem", - "base_name": "ca-key", - "extension": ".pem", - "date": "2017-05-25", - "size": 916, - "sha1": "b40639083bf05ec0941ef9b60ec3733bc5b3457c", - "md5": "a60da154baf6e9b0dc1edd91121ff45b", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/ca-req.pem", - "type": "file", - "name": "ca-req.pem", - "base_name": "ca-req", - "extension": ".pem", - "date": "2017-05-25", - "size": 635, - "sha1": "d7a0a2e420417c87e6044faa22a5273e9eeb6b2e", - "md5": "1ad1509a232d7a91ed07d392c3878bb4", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/ca.c", - "type": "file", - "name": "ca.c", - "base_name": "ca", - "extension": ".c", - "date": "2017-05-25", - "size": 84282, - "sha1": "f82b226f797ca1a87d65476ba4c617086152a255", - "md5": "b4bd34c6b0201ade2c6377bcf3b1d916", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "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": [] - }, - { - "path": "openssl-1.1.0f/apps/CA.pl.in", - "type": "file", - "name": "CA.pl.in", - "base_name": "CA.pl", - "extension": ".in", - "date": "2017-05-25", - "size": 6734, - "sha1": "9792bccba753cf82d2b5f6e025e379fa46c1ad13", - "md5": "c4951bf341673d578563499259ca018d", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/apps/cert.pem", - "type": "file", - "name": "cert.pem", - "base_name": "cert", - "extension": ".pem", - "date": "2017-05-25", - "size": 623, - "sha1": "492b05c1c55d013e578bfa20529c2bf17c1537ec", - "md5": "377334238578965de872e01690988532", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/ciphers.c", - "type": "file", - "name": "ciphers.c", - "base_name": "ciphers", - "extension": ".c", - "date": "2017-05-25", - "size": 6502, - "sha1": "6a87ca56b0d708a51c4453f4824dd8caac93e663", - "md5": "97e6a176bcca5d29cb3f8cdc7781b0c6", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/client.pem", - "type": "file", - "name": "client.pem", - "base_name": "client", - "extension": ".pem", - "date": "2017-05-25", - "size": 3285, - "sha1": "5ab9e4a7f5cdca32907a968291e17f0d5799fb4e", - "md5": "050da36823bcde31ce380012f51bce83", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/cms.c", - "type": "file", - "name": "cms.c", - "base_name": "cms", - "extension": ".c", - "date": "2017-05-25", - "size": 44640, - "sha1": "e9836a3e30da3534a41d7806c2a011fb67d6a796", - "md5": "aab5bfb76497d571a6f8c9c528067054", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/apps/crl.c", - "type": "file", - "name": "crl.c", - "base_name": "crl", - "extension": ".c", - "date": "2017-05-25", - "size": 11148, - "sha1": "f149edb0a5d36f87212fb312d61e650f1559c566", - "md5": "412deb99ec856162fefa061364b18c7d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/crl2p7.c", - "type": "file", - "name": "crl2p7.c", - "base_name": "crl2p7", - "extension": ".c", - "date": "2017-05-25", - "size": 6295, - "sha1": "c9a6f573d72d31340b321adc03c4381f3d3c4de1", - "md5": "356f2d2be82d59b0aa192a93e6350edd", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/ct_log_list.cnf", - "type": "file", - "name": "ct_log_list.cnf", - "base_name": "ct_log_list", - "extension": ".cnf", - "date": "2017-05-25", - "size": 1718, - "sha1": "ce97887e4da8e2eced6a2c3143bd505906f154c8", - "md5": "d0e24abd84cc5cbbd89af24b852080d9", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/dgst.c", - "type": "file", - "name": "dgst.c", - "base_name": "dgst", - "extension": ".c", - "date": "2017-05-25", - "size": 15020, - "sha1": "22ce92c7c5024544c79e67cad07bfe6bcb211927", - "md5": "eaab10b9f65d3b305ba67ea1573ea132", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/dh1024.pem", - "type": "file", - "name": "dh1024.pem", - "base_name": "dh1024", - "extension": ".pem", - "date": "2017-05-25", - "size": 447, - "sha1": "3b2b727f77bcf6919226ad0a66693254551c94b0", - "md5": "9ed8d235002fee23e2e442687388e920", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/dh2048.pem", - "type": "file", - "name": "dh2048.pem", - "base_name": "dh2048", - "extension": ".pem", - "date": "2017-05-25", - "size": 664, - "sha1": "a198447a3985ab3aeab09be3e615160d7e24276d", - "md5": "b00063fbd018f6dfd717c255a9c4d2a0", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/dh4096.pem", - "type": "file", - "name": "dh4096.pem", - "base_name": "dh4096", - "extension": ".pem", - "date": "2017-05-25", - "size": 1009, - "sha1": "9a18237d3b233e5d9e2309e209f53237fcd0abb8", - "md5": "531ca4e3f049fc8a11f0eb31cd7c47b1", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/dhparam.c", - "type": "file", - "name": "dhparam.c", - "base_name": "dhparam", - "extension": ".c", - "date": "2017-05-25", - "size": 12079, - "sha1": "c805525d2e2f2e27591e4c0ae3fc14556b0f53f2", - "md5": "093f70275bcaea34447b3cfb0398dbf4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/dsa-ca.pem", - "type": "file", - "name": "dsa-ca.pem", - "base_name": "dsa-ca", - "extension": ".pem", - "date": "2017-05-25", - "size": 2723, - "sha1": "aa512a1abbf6e49cbe7b9e44d15b523a535dd0f7", - "md5": "1506a8960400373d3dde003727a58c1a", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/dsa-pca.pem", - "type": "file", - "name": "dsa-pca.pem", - "base_name": "dsa-pca", - "extension": ".pem", - "date": "2017-05-25", - "size": 2731, - "sha1": "ccbf494607ef1f5c8eb06e2b1d6481c3d44dd4b1", - "md5": "4d19ab93482e58cd2a4cb888ba8cfae0", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/dsa.c", - "type": "file", - "name": "dsa.c", - "base_name": "dsa", - "extension": ".c", - "date": "2017-05-25", - "size": 7718, - "sha1": "551552addbd10c2f6415d1162efd8a9fd59b8dd5", - "md5": "b4f9aee48d57ee1176320efd6af43fdf", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/dsa1024.pem", - "type": "file", - "name": "dsa1024.pem", - "base_name": "dsa1024", - "extension": ".pem", - "date": "2017-05-25", - "size": 455, - "sha1": "6099c13e1f32e59f3d2ef646d94db129e902cff8", - "md5": "fa65f1be4d8c89c61e74143cd0b10c60", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/dsa512.pem", - "type": "file", - "name": "dsa512.pem", - "base_name": "dsa512", - "extension": ".pem", - "date": "2017-05-25", - "size": 280, - "sha1": "9c6c0494703a46beecae0881a0eeb50b55cda92a", - "md5": "9fb25b01f87ca6adb9547be842e63ae0", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/dsap.pem", - "type": "file", - "name": "dsap.pem", - "base_name": "dsap", - "extension": ".pem", - "date": "2017-05-25", - "size": 276, - "sha1": "43275eb6a34dd904b606ad8070bf5e0648d51185", - "md5": "9e7a855ed327b2423779801600a04344", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/dsaparam.c", - "type": "file", - "name": "dsaparam.c", - "base_name": "dsaparam", - "extension": ".c", - "date": "2017-05-25", - "size": 9141, - "sha1": "f8f353160dad10b72f57976b554ba7557232bffa", - "md5": "8244b2f3124158a2faca618f2822bf14", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/ec.c", - "type": "file", - "name": "ec.c", - "base_name": "ec", - "extension": ".c", - "date": "2017-05-25", - "size": 8346, - "sha1": "3e0f455523454914b4ed96664ee636ed57302b26", - "md5": "bc67000605d4c104be08d5e3d891556c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/apps/ecparam.c", - "type": "file", - "name": "ecparam.c", - "base_name": "ecparam", - "extension": ".c", - "date": "2017-05-25", - "size": 15776, - "sha1": "775d88e55933f16a05b605edde1d2dde9cd905b4", - "md5": "f9c54e53b01626af50cc8887307ca325", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 58.33, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 58.33, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 58.33, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [] - }, - { - "path": "openssl-1.1.0f/apps/enc.c", - "type": "file", - "name": "enc.c", - "base_name": "enc", - "extension": ".c", - "date": "2017-05-25", - "size": 18916, - "sha1": "16c61d81d45735e74c09df5b68fde77c67a8438e", - "md5": "20bb845ca1e99c460af602bd16417599", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_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": [] - }, - { - "path": "openssl-1.1.0f/apps/engine.c", - "type": "file", - "name": "engine.c", - "base_name": "engine", - "extension": ".c", - "date": "2017-05-25", - "size": 14728, - "sha1": "66bb79f4000994cc20de18a96c87e37d84c1b43f", - "md5": "27e18b71244c0e868ca6caea6b5b1694", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/apps/errstr.c", - "type": "file", - "name": "errstr.c", - "base_name": "errstr", - "extension": ".c", - "date": "2017-05-25", - "size": 1875, - "sha1": "292cd6ee916eac4d9c043402c1e1739a797ef601", - "md5": "7dc472044e8411c1fa44971a360521a9", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/gendsa.c", - "type": "file", - "name": "gendsa.c", - "base_name": "gendsa", - "extension": ".c", - "date": "2017-05-25", - "size": 4128, - "sha1": "c5ead848df17c6727a7ac723d9165c1ee3e5a205", - "md5": "b3cd57c625c7a152941d72545c22513a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/genpkey.c", - "type": "file", - "name": "genpkey.c", - "base_name": "genpkey", - "extension": ".c", - "date": "2017-05-25", - "size": 8409, - "sha1": "ad784592dc982618f9664615f7ebc0a9c581ce10", - "md5": "39c0d9b8bb594d2e1226dde44f0e4c02", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/apps/genrsa.c", - "type": "file", - "name": "genrsa.c", - "base_name": "genrsa", - "extension": ".c", - "date": "2017-05-25", - "size": 5231, - "sha1": "5d4d57d39ec1229487627120c6743feeaa120e30", - "md5": "c1961259170ce43b4d823bb8194a1f33", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/nseq.c", - "type": "file", - "name": "nseq.c", - "base_name": "nseq", - "extension": ".c", - "date": "2017-05-25", - "size": 3051, - "sha1": "0400486e0ae2b202f1aa4a51b4a14ad3b5b2304c", - "md5": "07fc9e63a2761da793dec9068cbb1264", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/apps/ocsp.c", - "type": "file", - "name": "ocsp.c", - "base_name": "ocsp", - "extension": ".c", - "date": "2017-05-25", - "size": 40859, - "sha1": "ecee6dec9052c63fb7521bb9aa9b682f3e96f859", - "md5": "c981d577bb923a5bfb064e4e0daa7568", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/apps/openssl-vms.cnf", - "type": "file", - "name": "openssl-vms.cnf", - "base_name": "openssl-vms", - "extension": ".cnf", - "date": "2017-05-25", - "size": 10798, - "sha1": "ec289eefe637c426c3760f6ca5285dbf92b587e9", - "md5": "27e586488d90091df01a50f9d9f96486", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/openssl.c", - "type": "file", - "name": "openssl.c", - "base_name": "openssl", - "extension": ".c", - "date": "2017-05-25", - "size": 17577, - "sha1": "3529f67218a94c98c441d9a1dd60223e99d0a734", - "md5": "008772f4862a794ab72f1c4c33ac343e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/openssl.cnf", - "type": "file", - "name": "openssl.cnf", - "base_name": "openssl", - "extension": ".cnf", - "date": "2017-05-25", - "size": 10771, - "sha1": "15659a84fdba7b60fbcc7892ebababf79dee0340", - "md5": "f697ef5df0d006882e6326606e8dbf4a", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/opt.c", - "type": "file", - "name": "opt.c", - "base_name": "opt", - "extension": ".c", - "date": "2017-05-25", - "size": 26690, - "sha1": "d753b8461f4a6254b4ad585ad85126b1d23663ca", - "md5": "b433d1701f7963597815d21d1e7a1ffe", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/apps/passwd.c", - "type": "file", - "name": "passwd.c", - "base_name": "passwd", - "extension": ".c", - "date": "2017-05-25", - "size": 15411, - "sha1": "1fa6d763196a58a7c4a52d76a48114d7297f166b", - "md5": "f1366455969039d324feb76243ec6720", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/apps/pca-cert.srl", - "type": "file", - "name": "pca-cert.srl", - "base_name": "pca-cert", - "extension": ".srl", - "date": "2017-05-25", - "size": 3, - "sha1": "478330af84ea74932db60e35533215de649a06c4", - "md5": "307e629e5c5c1c4d31a678949d81548e", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/pca-key.pem", - "type": "file", - "name": "pca-key.pem", - "base_name": "pca-key", - "extension": ".pem", - "date": "2017-05-25", - "size": 916, - "sha1": "a724ebfa8fc4e5b797bd90c143a933073fe9cea8", - "md5": "fc8b8ff65a482e3d5fd6f4546f408f30", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/pca-req.pem", - "type": "file", - "name": "pca-req.pem", - "base_name": "pca-req", - "extension": ".pem", - "date": "2017-05-25", - "size": 635, - "sha1": "6f1b190290b985330fd57bc50984449b3dd8a00d", - "md5": "98ef3edb85a9494d449817637acd7b0d", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/pkcs12.c", - "type": "file", - "name": "pkcs12.c", - "base_name": "pkcs12", - "extension": ".c", - "date": "2017-05-25", - "size": 30073, - "sha1": "4a1be8db707d146e1bf9245cd6c82cda5f6dba68", - "md5": "32bc471a066dc8a621b6cbbefeb440b2", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/apps/pkcs7.c", - "type": "file", - "name": "pkcs7.c", - "base_name": "pkcs7", - "extension": ".c", - "date": "2017-05-25", - "size": 5470, - "sha1": "a7d29c5440d54c4884f3647100276aed6b55b26a", - "md5": "7b55c461d9ff7645546c0adf27f73b5d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/pkcs8.c", - "type": "file", - "name": "pkcs8.c", - "base_name": "pkcs8", - "extension": ".c", - "date": "2017-05-25", - "size": 11320, - "sha1": "455b1540887f753de465a3563078e96d683da0e0", - "md5": "79d01257bf9a3e6011a62bda0e78df44", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/apps/pkey.c", - "type": "file", - "name": "pkey.c", - "base_name": "pkey", - "extension": ".c", - "date": "2017-05-25", - "size": 5765, - "sha1": "2eec2384c69d9b2e94d621085edb8a620592e7bd", - "md5": "4fa8a3888d6070a245eaa69dab8772ec", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/apps/pkeyparam.c", - "type": "file", - "name": "pkeyparam.c", - "base_name": "pkeyparam", - "extension": ".c", - "date": "2017-05-25", - "size": 2694, - "sha1": "940cd1d77ac9a1a4ad06c654ead4ca418493cd84", - "md5": "1be3ad04301887c29882c1db9ff03b8b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/apps/pkeyutl.c", - "type": "file", - "name": "pkeyutl.c", - "base_name": "pkeyutl", - "extension": ".c", - "date": "2017-05-25", - "size": 14754, - "sha1": "77cfe11c7375cbf41c803007739ed52f8c0efe0f", - "md5": "f1f01b22b6c061f5b6654b29236756f9", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/apps/prime.c", - "type": "file", - "name": "prime.c", - "base_name": "prime", - "extension": ".c", - "date": "2017-05-25", - "size": 3466, - "sha1": "0830bcab268be523556646e109d6f55967a0770e", - "md5": "e9f7af509d0adc11a616dd3fb4a455b4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/apps/privkey.pem", - "type": "file", - "name": "privkey.pem", - "base_name": "privkey", - "extension": ".pem", - "date": "2017-05-25", - "size": 916, - "sha1": "e65384f84101b9c5a55bdda539c1f1109e91a0db", - "md5": "b48659f594c9943ae292b16854de198a", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/progs.h", - "type": "file", - "name": "progs.h", - "base_name": "progs", - "extension": ".h", - "date": "2017-05-25", - "size": 13759, - "sha1": "af6dd89cd7f4762b7829725c7127a9616a947128", - "md5": "fe62a668c41c273ad056be08bbd0b52b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/apps/progs.pl", - "type": "file", - "name": "progs.pl", - "base_name": "progs", - "extension": ".pl", - "date": "2017-05-25", - "size": 4473, - "sha1": "97968583b1a621db25da3888163391c6ec3001f0", - "md5": "ae20c9becac999563b3c8da5ff7af7cc", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [] - }, - { - "path": "openssl-1.1.0f/apps/rand.c", - "type": "file", - "name": "rand.c", - "base_name": "rand", - "extension": ".c", - "date": "2017-05-25", - "size": 3544, - "sha1": "c54db5d432e66666721c6a61a9115dacb461c480", - "md5": "6bc3d87b949f5e0e9accfa1a30337182", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/apps/rehash.c", - "type": "file", - "name": "rehash.c", - "base_name": "rehash", - "extension": ".c", - "date": "2017-05-25", - "size": 15216, - "sha1": "8b341ec48d63f70f34ff0d04d18877a6a1e11ca6", - "md5": "5565a2184d1894fae176113601a4bebc", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/apps/req.c", - "type": "file", - "name": "req.c", - "base_name": "req", - "extension": ".c", - "date": "2017-05-25", - "size": 46733, - "sha1": "8a1f004fe3b3761d953de5344437684f4869e936", - "md5": "4f1a052e31cdd091781177c40ab62e05", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/req.pem", - "type": "file", - "name": "req.pem", - "base_name": "req", - "extension": ".pem", - "date": "2017-05-25", - "size": 627, - "sha1": "c89530c89aada9fe968861403021edb41255ebe0", - "md5": "bfc4e98e4d7a8da63925b3cdddd5ea7f", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/rsa.c", - "type": "file", - "name": "rsa.c", - "base_name": "rsa", - "extension": ".c", - "date": "2017-05-25", - "size": 9498, - "sha1": "52c3b7a4570a2d007fe2c2211b3569b80740cf90", - "md5": "aad97122f6fcc1247c817e20583742c6", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/rsa8192.pem", - "type": "file", - "name": "rsa8192.pem", - "base_name": "rsa8192", - "extension": ".pem", - "date": "2017-05-25", - "size": 6365, - "sha1": "9ffe5621f4a29c213dbc74847794fd19d1fd4289", - "md5": "dbc2b90b1bb8f58f19d1dd490dae29f0", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/rsautl.c", - "type": "file", - "name": "rsautl.c", - "base_name": "rsautl", - "extension": ".c", - "date": "2017-05-25", - "size": 7972, - "sha1": "93b331f4083db7cc3fa08ecaacd42b47aa43ca4b", - "md5": "61bdb65ac7be50c26c81636b98500c22", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/apps/s1024key.pem", - "type": "file", - "name": "s1024key.pem", - "base_name": "s1024key", - "extension": ".pem", - "date": "2017-05-25", - "size": 891, - "sha1": "7b9a68f7dd2d8095183534db1b415f6cee0a91a4", - "md5": "0aa2a65e6591a0ce3f3369b8009d7392", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/s1024req.pem", - "type": "file", - "name": "s1024req.pem", - "base_name": "s1024req", - "extension": ".pem", - "date": "2017-05-25", - "size": 643, - "sha1": "83ddb6c26151b23e653d7c36a2bdd5507bada013", - "md5": "12733faa195453ab93f484d6ee31a76f", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/s512-key.pem", - "type": "file", - "name": "s512-key.pem", - "base_name": "s512-key", - "extension": ".pem", - "date": "2017-05-25", - "size": 497, - "sha1": "39747ee060b3900a6d0456e41e8d7abb9efd8737", - "md5": "aee63204f63396c8d9be843828f0e7bb", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/s512-req.pem", - "type": "file", - "name": "s512-req.pem", - "base_name": "s512-req", - "extension": ".pem", - "date": "2017-05-25", - "size": 460, - "sha1": "48fb18b435648a13d540d9809ce58dbdfad4a2b6", - "md5": "8e23c9462e543c58573b5b9b041c1aee", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/server.pem", - "type": "file", - "name": "server.pem", - "base_name": "server", - "extension": ".pem", - "date": "2017-05-25", - "size": 3285, - "sha1": "e8b10dc1c9929bf674b95c34ba2de514bf336c04", - "md5": "effb83eee2d49f045628e6f54ba97012", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/server.srl", - "type": "file", - "name": "server.srl", - "base_name": "server", - "extension": ".srl", - "date": "2017-05-25", - "size": 3, - "sha1": "3351d58b1d3bf73122c431502fc94a77abba1edc", - "md5": "0ade138937c4b9cb36a28e2edb6485fc", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/server2.pem", - "type": "file", - "name": "server2.pem", - "base_name": "server2", - "extension": ".pem", - "date": "2017-05-25", - "size": 3288, - "sha1": "864394dd547ffd335591f5070e7a10bc5a8f4389", - "md5": "02a27ee3e67890da0f3e67b442941c32", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/sess_id.c", - "type": "file", - "name": "sess_id.c", - "base_name": "sess_id", - "extension": ".c", - "date": "2017-05-25", - "size": 5456, - "sha1": "048aa280616e12f592e3365d99d726d9eeb6ae62", - "md5": "3797a6d80c7e09bb2e550d75c8089564", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/smime.c", - "type": "file", - "name": "smime.c", - "base_name": "smime", - "extension": ".c", - "date": "2017-05-25", - "size": 21614, - "sha1": "b7df229eaa9d0ea1e58e52b0ca89a5e65b5f4e00", - "md5": "b84f3fa7e007c0db06e16f70f68f9c7e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/apps/speed.c", - "type": "file", - "name": "speed.c", - "base_name": "speed", - "extension": ".c", - "date": "2017-05-25", - "size": 100348, - "sha1": "95208d60fd838185a6cc73a3fc662f11aa01bd34", - "md5": "196f97ce2fb942451618dc5941167db6", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 58.33, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 58.33, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 58.33, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [] - }, - { - "path": "openssl-1.1.0f/apps/spkac.c", - "type": "file", - "name": "spkac.c", - "base_name": "spkac", - "extension": ".c", - "date": "2017-05-25", - "size": 5468, - "sha1": "7ef2fceeba0f3a8b9821f1a2655a1e1241d5ed0c", - "md5": "851d3804b1d37991f2573baa918363ac", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/apps/srp.c", - "type": "file", - "name": "srp.c", - "base_name": "srp", - "extension": ".c", - "date": "2017-05-25", - "size": 20659, - "sha1": "b2c09a71130b317adfc11265ed1eb215accd02af", - "md5": "9b732258c127c4a663a784f1f7939de3", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/apps/s_apps.h", - "type": "file", - "name": "s_apps.h", - "base_name": "s_apps", - "extension": ".h", - "date": "2017-05-25", - "size": 3921, - "sha1": "425d23a37d5edd4ed1745a7971c19d4fed51d11e", - "md5": "df782181f2d2c906d004ed014ca4c043", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/s_cb.c", - "type": "file", - "name": "s_cb.c", - "base_name": "s_cb", - "extension": ".c", - "date": "2017-05-25", - "size": 40145, - "sha1": "5b9358f237ca0fb31ac226e6b4bf268b888b7ffd", - "md5": "564579c62d3160f846c85bcfae0190d1", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/s_client.c", - "type": "file", - "name": "s_client.c", - "base_name": "s_client", - "extension": ".c", - "date": "2017-05-25", - "size": 90171, - "sha1": "1be3ec00fe50a37d8efb9460f51769a356eface8", - "md5": "6800de4267046dc6bdc279d13c62652b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 67.74, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 67.74, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 67.74, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [], - "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": [] - }, - { - "path": "openssl-1.1.0f/apps/s_server.c", - "type": "file", - "name": "s_server.c", - "base_name": "s_server", - "extension": ".c", - "date": "2017-05-25", - "size": 107571, - "sha1": "818df6c98f49064d90b8b2938f7b5ce93e19a32d", - "md5": "8e285ccf61e93364fd6c186ab73b78f7", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "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": [], - "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": [] - }, - { - "path": "openssl-1.1.0f/apps/s_socket.c", - "type": "file", - "name": "s_socket.c", - "base_name": "s_socket", - "extension": ".c", - "date": "2017-05-25", - "size": 6509, - "sha1": "b33a9421bad1e04484ccdc8164b5009194fba793", - "md5": "bf5c4e1c60bb2bfd8deb2d67e5a83911", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/s_time.c", - "type": "file", - "name": "s_time.c", - "base_name": "s_time", - "extension": ".c", - "date": "2017-05-25", - "size": 12066, - "sha1": "c5b5de4c28fb8b3f626f4b0623b2b94f5e21a285", - "md5": "e3a340af2d893ec1bf3ff9b31fd5037b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/testCA.pem", - "type": "file", - "name": "testCA.pem", - "base_name": "testCA", - "extension": ".pem", - "date": "2017-05-25", - "size": 432, - "sha1": "60c578c5079407152a62483e5128678592b7f999", - "md5": "6fc2d0242801cf234b1d046afac67c53", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/testdsa.h", - "type": "file", - "name": "testdsa.h", - "base_name": "testdsa", - "extension": ".h", - "date": "2017-05-25", - "size": 12945, - "sha1": "b59016b420597e2f6476b3ac09c9873086cd0269", - "md5": "b28f984f82f3c1fdc423624efcfd5082", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/apps/testrsa.h", - "type": "file", - "name": "testrsa.h", - "base_name": "testrsa", - "extension": ".h", - "date": "2017-05-25", - "size": 124026, - "sha1": "ee2e57efe247fbac43c862a0934c889e578878f9", - "md5": "f35272a4d5bf4d35b2bc788b1690e148", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/timeouts.h", - "type": "file", - "name": "timeouts.h", - "base_name": "timeouts", - "extension": ".h", - "date": "2017-05-25", - "size": 557, - "sha1": "4810ebd63d729d42b5f2ef13481605ed0011da0e", - "md5": "b9522e32f213e04d77be5e56b486a0ef", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/apps/ts.c", - "type": "file", - "name": "ts.c", - "base_name": "ts", - "extension": ".c", - "date": "2017-05-25", - "size": 31401, - "sha1": "ac811be3aa4ab26e5a535041b9166244a099d4a3", - "md5": "7a1792d6ae4d24df39d6477c6256849d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/apps/tsget.in", - "type": "file", - "name": "tsget.in", - "base_name": "tsget", - "extension": ".in", - "date": "2017-05-25", - "size": 6640, - "sha1": "3fd1905ca5114f1ae492ca4a385719a0b16a0c33", - "md5": "b368c50481e3409a601bad28474c5bae", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/apps/verify.c", - "type": "file", - "name": "verify.c", - "base_name": "verify", - "extension": ".c", - "date": "2017-05-25", - "size": 10268, - "sha1": "c50f189cef9dc46bd4e28cd327dc20b42998c43f", - "md5": "90dd4848c05c0ac8b77e3ec36c0f604c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/version.c", - "type": "file", - "name": "version.c", - "base_name": "version", - "extension": ".c", - "date": "2017-05-25", - "size": 3792, - "sha1": "66796026a9d0261b576756504e5f01123028ac15", - "md5": "7e11039c050da9280fd54e42f037f214", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/vms_decc_init.c", - "type": "file", - "name": "vms_decc_init.c", - "base_name": "vms_decc_init", - "extension": ".c", - "date": "2017-05-25", - "size": 6597, - "sha1": "c71de7b5c9032ba03da977947ae222d242ecb9af", - "md5": "7054a2643d7d3daa00d42f8b3c93c977", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/apps/vms_term_sock.c", - "type": "file", - "name": "vms_term_sock.c", - "base_name": "vms_term_sock", - "extension": ".c", - "date": "2017-05-25", - "size": 17704, - "sha1": "1433377f9372ffb2174615db1d0ba048a1452e35", - "md5": "4c67ceed208a4b1f6df155e94cb7e5ac", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/apps/vms_term_sock.h", - "type": "file", - "name": "vms_term_sock.h", - "base_name": "vms_term_sock", - "extension": ".h", - "date": "2017-05-25", - "size": 678, - "sha1": "0355d0b7b701fe149353902bc87a30a45049e6f7", - "md5": "2d35889e90bede89021a3bf4c69b3e40", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/apps/win32_init.c", - "type": "file", - "name": "win32_init.c", - "base_name": "win32_init", - "extension": ".c", - "date": "2017-05-25", - "size": 8602, - "sha1": "d5f8b5acc59cf6afca3c3beab1445980624364bd", - "md5": "41089ee2bd860dae262b509bfc1b50e9", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/apps/x509.c", - "type": "file", - "name": "x509.c", - "base_name": "x509", - "extension": ".c", - "date": "2017-05-25", - "size": 37181, - "sha1": "5795e080287ac2c7aa2ee0865d6a8fe426f114db", - "md5": "646152ca9b362fa67b4e8962ebe5c2a5", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/demoCA", - "type": "directory", - "name": "demoCA", - "base_name": "demoCA", - "extension": "", - "date": null, - "size": 4399, - "sha1": null, - "md5": null, - "files_count": 4, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/demoSRP", - "type": "directory", - "name": "demoSRP", - "base_name": "demoSRP", - "extension": "", - "date": null, - "size": 380, - "sha1": null, - "md5": null, - "files_count": 2, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/demoCA/cacert.pem", - "type": "file", - "name": "cacert.pem", - "base_name": "cacert", - "extension": ".pem", - "date": "2017-05-25", - "size": 716, - "sha1": "9715f0492b6bb9e210afe9c7b557f26fa01e8026", - "md5": "324371bf8fba00ebe5328d8c850f55b0", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/demoCA/index.txt", - "type": "file", - "name": "index.txt", - "base_name": "index", - "extension": ".txt", - "date": "2017-05-25", - "size": 2464, - "sha1": "cfb31c4c60a8eaca44a7076db375f5e5d7e06ced", - "md5": "aa58079bdcdc1009d0351291cc4f3a18", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/demoCA/serial", - "type": "file", - "name": "serial", - "base_name": "serial", - "extension": "", - "date": "2017-05-25", - "size": 5, - "sha1": "a5da428e2bd8988718a1f1ccd3192f342f4f5fc0", - "md5": "a9f5d1907387cad302fa25893fa042a3", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/demoCA/private", - "type": "directory", - "name": "private", - "base_name": "private", - "extension": "", - "date": null, - "size": 1214, - "sha1": null, - "md5": null, - "files_count": 1, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/demoCA/private/cakey.pem", - "type": "file", - "name": "cakey.pem", - "base_name": "cakey", - "extension": ".pem", - "date": "2017-05-25", - "size": 1214, - "sha1": "f9e2c932980077ecef7cb02f5dbbbdb3bd69c283", - "md5": "0397a7cb737beb364b5cfd86c17c3a75", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/apps/demoSRP/srp_verifier.txt", - "type": "file", - "name": "srp_verifier.txt", - "base_name": "srp_verifier", - "extension": ".txt", - "date": "2017-05-25", - "size": 359, - "sha1": "8c0dc4ff99213ad26699a88ec7fcb9290d253204", - "md5": "927245d80d8eb9e7c8edf55ec115dd5d", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 21, - "sha1": "8cf5465a17cdc7391f0f6bb01fa49399996c5217", - "md5": "ee8bd2ea88220c877a62e22e36a02d20", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/Configurations/00-base-templates.conf", - "type": "file", - "name": "00-base-templates.conf", - "base_name": "00-base-templates", - "extension": ".conf", - "date": "2017-05-25", - "size": 9470, - "sha1": "a8b02a3d43403297d3c3b52fa7480e4e4577a866", - "md5": "99e837648bdadd96ca4e3e99c9c35a6c", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/Configurations/10-main.conf", - "type": "file", - "name": "10-main.conf", - "base_name": "10-main", - "extension": ".conf", - "date": "2017-05-25", - "size": 86466, - "sha1": "a6b60a6e0557e16e8efef712d8ed45b1536f1de0", - "md5": "536182fd2985df41bb43854bec1bdfcf", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/Configurations/50-djgpp.conf", - "type": "file", - "name": "50-djgpp.conf", - "base_name": "50-djgpp", - "extension": ".conf", - "date": "2017-05-25", - "size": 554, - "sha1": "8f2fef543147f6156b0f0935a8cb35d7ffeb4d96", - "md5": "d5059c33e2a41516785f1cbf47f2975e", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/Configurations/50-haiku.conf", - "type": "file", - "name": "50-haiku.conf", - "base_name": "50-haiku", - "extension": ".conf", - "date": "2017-05-25", - "size": 1179, - "sha1": "d15dbe164e0085cd3131d037a0b9d787732dc739", - "md5": "ea363c78f189168c281da9bc84daadf8", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/Configurations/50-masm.conf", - "type": "file", - "name": "50-masm.conf", - "base_name": "50-masm", - "extension": ".conf", - "date": "2017-05-25", - "size": 711, - "sha1": "1b68c24f7411100cb3aca5ecb258e58a8b60197d", - "md5": "0f1a9f461d08fba45cd9b61ba7742b6f", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/Configurations/90-team.conf", - "type": "file", - "name": "90-team.conf", - "base_name": "90-team", - "extension": ".conf", - "date": "2017-05-25", - "size": 5319, - "sha1": "5f4b043fd39ef91e329aad554e621f0ed45f4316", - "md5": "2c74ee38b9b51a470d409fe2f8a23f9a", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/Configurations/common.tmpl", - "type": "file", - "name": "common.tmpl", - "base_name": "common", - "extension": ".tmpl", - "date": "2017-05-25", - "size": 8896, - "sha1": "c18f312587362c20707e39c96c80160cb04a0bb4", - "md5": "b0f115d99a252df7cef911b927d587d2", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/Configurations/descrip.mms.tmpl", - "type": "file", - "name": "descrip.mms.tmpl", - "base_name": "descrip.mms", - "extension": ".tmpl", - "date": "2017-05-25", - "size": 35178, - "sha1": "88767e7a51ef05a688c7e9214ca25fdd94e9efd3", - "md5": "becc04ada1408e02dacbdcc531ce6ef2", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/Configurations/INTERNALS.Configure", - "type": "file", - "name": "INTERNALS.Configure", - "base_name": "INTERNALS", - "extension": ".Configure", - "date": "2017-05-25", - "size": 7883, - "sha1": "f8f9e7ffd41c7059d98e7dd238f6b33466631607", - "md5": "b4a956536c3b3ceccf096d5748a7b21f", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/Configurations/README", - "type": "file", - "name": "README", - "base_name": "README", - "extension": "", - "date": "2017-05-25", - "size": 31196, - "sha1": "a39799a051733dbee7885d2ed82c66b7e4efa05d", - "md5": "17e6989c9323559f4340713224a8ad97", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/Configurations/README.design", - "type": "file", - "name": "README.design", - "base_name": "README", - "extension": ".design", - "date": "2017-05-25", - "size": 25777, - "sha1": "a91675e1bf3977b82477408862c90a88dcfd2cb3", - "md5": "a4674a0741d18bedb36bf3131075f533", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/Configurations/unix-checker.pm", - "type": "file", - "name": "unix-checker.pm", - "base_name": "unix-checker", - "extension": ".pm", - "date": "2017-05-25", - "size": 617, - "sha1": "b262501ab0d4e62ecce3de85a275cef04cfc0d01", - "md5": "cfbd4fa03a70f1f5c7c19bf49fb3f922", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/Configurations/unix-Makefile.tmpl", - "type": "file", - "name": "unix-Makefile.tmpl", - "base_name": "unix-Makefile", - "extension": ".tmpl", - "date": "2017-05-25", - "size": 40972, - "sha1": "745fa454acca7791aab9ac8d37b2a70b24554fde", - "md5": "9937c13a02015c7106840ef87fbeafea", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/Configurations/windows-checker.pm", - "type": "file", - "name": "windows-checker.pm", - "base_name": "windows-checker", - "extension": ".pm", - "date": "2017-05-25", - "size": 622, - "sha1": "025ac0de795714530bb3b1fb746dc6f5aae6903c", - "md5": "c8c909e3e3f85918d9261010306ee4e4", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/Configurations/windows-makefile.tmpl", - "type": "file", - "name": "windows-makefile.tmpl", - "base_name": "windows-makefile", - "extension": ".tmpl", - "date": "2017-05-25", - "size": 23311, - "sha1": "9fe33254bb0792663e6d5740a6c84bb5d4a5b75a", - "md5": "56ddb0d4f402a5e693be689ffb0d1c9c", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/alphacpuid.pl", - "type": "file", - "name": "alphacpuid.pl", - "base_name": "alphacpuid", - "extension": ".pl", - "date": "2017-05-25", - "size": 3950, - "sha1": "8d98dc1d809b8760e763b0e6a5041db9103cb5f4", - "md5": "890d8014de4d5d42b2b8fb27e45f3996", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/arm64cpuid.pl", - "type": "file", - "name": "arm64cpuid.pl", - "base_name": "arm64cpuid", - "extension": ".pl", - "date": "2017-05-25", - "size": 2502, - "sha1": "bea8f59c211ab22e03cd8c97929fcd0af50c0b9a", - "md5": "d11dc72a54f20038f9dff22a8f0db016", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/armcap.c", - "type": "file", - "name": "armcap.c", - "base_name": "armcap", - "extension": ".c", - "date": "2017-05-25", - "size": 5309, - "sha1": "a44a9598a91297c58331962755d0cbeea176c423", - "md5": "1565964735cfd787c210158956022632", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/armv4cpuid.pl", - "type": "file", - "name": "armv4cpuid.pl", - "base_name": "armv4cpuid", - "extension": ".pl", - "date": "2017-05-25", - "size": 5426, - "sha1": "826e058ec942b08ab2a3ff713c1e19ecd56db6cf", - "md5": "f95caaa906b8eb7e8fed4bb715451f32", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/arm_arch.h", - "type": "file", - "name": "arm_arch.h", - "base_name": "arm_arch", - "extension": ".h", - "date": "2017-05-25", - "size": 2578, - "sha1": "daca5e672a41af3b26ed4000da9760eb98150727", - "md5": "d4a979684ad12cb94f9a3f577fc5a2d5", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 1526, - "sha1": "9221a891031430d6012f0d74e17a5805c961789b", - "md5": "16e4f67b54e54c33f68c4d8c1e8723b5", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/c64xpluscpuid.pl", - "type": "file", - "name": "c64xpluscpuid.pl", - "base_name": "c64xpluscpuid", - "extension": ".pl", - "date": "2017-05-25", - "size": 5394, - "sha1": "76ff1f50b2c3b16992801f583166a98e98296170", - "md5": "a3b7d0a39fb73a93bb5f5c443ee8037a", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/cpt_err.c", - "type": "file", - "name": "cpt_err.c", - "base_name": "cpt_err", - "extension": ".c", - "date": "2017-05-25", - "size": 1948, - "sha1": "eb55b9c290c309b6965c97b75e87e2855c928c7a", - "md5": "5e53d3f6d16fdc643c6ffdf0b09c8203", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/crypto/cryptlib.c", - "type": "file", - "name": "cryptlib.c", - "base_name": "cryptlib", - "extension": ".c", - "date": "2017-05-25", - "size": 10213, - "sha1": "c4da3364e706915ec12dc1a78e3beea7ff63fc62", - "md5": "11d78b6800fb4617d656d1573943f249", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/cversion.c", - "type": "file", - "name": "cversion.c", - "base_name": "cversion", - "extension": ".c", - "date": "2017-05-25", - "size": 1492, - "sha1": "3a07b0ba50eba4a64f96ab13fec4734424c6d369", - "md5": "1af24b32b749af4cded0a538a0529cf6", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/dllmain.c", - "type": "file", - "name": "dllmain.c", - "base_name": "dllmain", - "extension": ".c", - "date": "2017-05-25", - "size": 1795, - "sha1": "5af891578dfb146dbddb2998af9048b0e3faf9df", - "md5": "631f3294efc6a24977abd6b1077963cc", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ebcdic.c", - "type": "file", - "name": "ebcdic.c", - "base_name": "ebcdic", - "extension": ".c", - "date": "2017-05-25", - "size": 15484, - "sha1": "7461e47d50125acb3a94cd6349fb3eb8197d729a", - "md5": "3f18b8290ba2d99267c3003bc3e7a26a", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ex_data.c", - "type": "file", - "name": "ex_data.c", - "base_name": "ex_data", - "extension": ".c", - "date": "2017-05-25", - "size": 11027, - "sha1": "23e3d3ae7450054b3a93e8e46816bffb8ea1a701", - "md5": "c534df354868b7bfb5446670115f99da", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/ia64cpuid.S", - "type": "file", - "name": "ia64cpuid.S", - "base_name": "ia64cpuid", - "extension": ".S", - "date": "2017-05-25", - "size": 6493, - "sha1": "1f373457c2d93adc8abeb357e4d3a83f6c77a9f9", - "md5": "9b0154013456fe6b0ba9cbc47d6801ac", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/crypto/init.c", - "type": "file", - "name": "init.c", - "base_name": "init", - "extension": ".c", - "date": "2017-05-25", - "size": 19290, - "sha1": "416205c3f21aa0fba2a1052dab44ae3ed84a1c39", - "md5": "7c985e316bbd73d97a9bc69a2bdf5a15", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/LPdir_nyi.c", - "type": "file", - "name": "LPdir_nyi.c", - "base_name": "LPdir_nyi", - "extension": ".c", - "date": "2017-05-25", - "size": 1989, - "sha1": "0122ae76db60f9dcb5f55c5d1b8c712f2015349b", - "md5": "1ddba15480b2b675357b2ed7a702ec05", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [] - }, - { - "path": "openssl-1.1.0f/crypto/LPdir_unix.c", - "type": "file", - "name": "LPdir_unix.c", - "base_name": "LPdir_unix", - "extension": ".c", - "date": "2017-05-25", - "size": 4087, - "sha1": "2f306c42855d7a719caf40b088a84c726541d572", - "md5": "ed801d3820556a552bcf56cd1d8c6120", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "bsd-simplified", - "score": 79.24, - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/LPdir_vms.c", - "type": "file", - "name": "LPdir_vms.c", - "base_name": "LPdir_vms", - "extension": ".c", - "date": "2017-05-25", - "size": 6246, - "sha1": "8a312160c2b269a2c430486271e18c7e3c856626", - "md5": "57f2525688e84a77ca66cb43b57a3489", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "bsd-simplified", - "score": 79.24, - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/LPdir_win.c", - "type": "file", - "name": "LPdir_win.c", - "base_name": "LPdir_win", - "extension": ".c", - "date": "2017-05-25", - "size": 6959, - "sha1": "404fe7be818429f9c17d8126fa826081ebaf831e", - "md5": "bdd69721341054b2b72064ab70581a88", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "bsd-simplified", - "score": 79.24, - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/LPdir_win32.c", - "type": "file", - "name": "LPdir_win32.c", - "base_name": "LPdir_win32", - "extension": ".c", - "date": "2017-05-25", - "size": 1808, - "sha1": "5db274f2ff0b1ca2781385d862988fcc5cf119a0", - "md5": "54bef4bf99adc7bc5e2a36d655f70d6d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "bsd-simplified", - "score": 79.24, - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/LPdir_wince.c", - "type": "file", - "name": "LPdir_wince.c", - "base_name": "LPdir_wince", - "extension": ".c", - "date": "2017-05-25", - "size": 1914, - "sha1": "763dff6dd8fd75be219033eba15b720b8c867f12", - "md5": "4adb8542a7f7d5f2ed0e0ba81accc730", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "bsd-simplified", - "score": 79.24, - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/mem.c", - "type": "file", - "name": "mem.c", - "base_name": "mem", - "extension": ".c", - "date": "2017-05-25", - "size": 4537, - "sha1": "fc73beb974463d4572cf26eccf73d9580037d736", - "md5": "bf6c0a8bcd8c215e25bd598b3c6b3341", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/mem_clr.c", - "type": "file", - "name": "mem_clr.c", - "base_name": "mem_clr", - "extension": ".c", - "date": "2017-05-25", - "size": 770, - "sha1": "fa4d0ce5846abe636e7de63ca9dc6bff68f042e5", - "md5": "20fc7f6044f3162b196ab3197531ed32", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 53.16, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 53.16, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 53.16, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [] - }, - { - "path": "openssl-1.1.0f/crypto/mem_dbg.c", - "type": "file", - "name": "mem_dbg.c", - "base_name": "mem_dbg", - "extension": ".c", - "date": "2017-05-25", - "size": 17179, - "sha1": "ee8efe123681b5f7068a27be822f8be92e35cf09", - "md5": "37769fa67f5aea56bda7bd6a4c898c17", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/mem_sec.c", - "type": "file", - "name": "mem_sec.c", - "base_name": "mem_sec", - "extension": ".c", - "date": "2017-05-25", - "size": 15481, - "sha1": "d9e09af583ec123bd23be4f7b93315a99b6e7382", - "md5": "4fd27bda19f3d9dd1f997f54df2a2c14", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [] - }, - { - "path": "openssl-1.1.0f/crypto/o_dir.c", - "type": "file", - "name": "o_dir.c", - "base_name": "o_dir", - "extension": ".c", - "date": "2017-05-25", - "size": 1080, - "sha1": "418fc1a140d0cda272245ba2ad1b082910e0bd2d", - "md5": "f130c0b50838bf5b1feb521a235eb711", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/o_fips.c", - "type": "file", - "name": "o_fips.c", - "base_name": "o_fips", - "extension": ".c", - "date": "2017-05-25", - "size": 742, - "sha1": "24d2b19d9eb25a6ea826a9e51e70cb81c5d1b938", - "md5": "9beb2dd01bc03f80ad830b4f06e5f787", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/o_fopen.c", - "type": "file", - "name": "o_fopen.c", - "base_name": "o_fopen", - "extension": ".c", - "date": "2017-05-25", - "size": 3324, - "sha1": "e08f5249ea0f8725e2e8bd2e58b88367e222a382", - "md5": "a4ef1d4dbbc9b2f37739ce706ed0e50b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/o_init.c", - "type": "file", - "name": "o_init.c", - "base_name": "o_init", - "extension": ".c", - "date": "2017-05-25", - "size": 898, - "sha1": "fb92cc985b4432d8aa85960c2d23666e1586c2ba", - "md5": "7228480ec5cade7a422240a8d8eb2c4b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/o_str.c", - "type": "file", - "name": "o_str.c", - "base_name": "o_str", - "extension": ".c", - "date": "2017-05-25", - "size": 5915, - "sha1": "a46ed4bf33a83435a3c8e8f756256914d019ecf9", - "md5": "f18c3e116a98ac8b9fda415a863ae85e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/o_time.c", - "type": "file", - "name": "o_time.c", - "base_name": "o_time", - "extension": ".c", - "date": "2017-05-25", - "size": 5475, - "sha1": "524cf2e94cc1d8bf5b3fefd592a419c5868e8ce4", - "md5": "8d69e039b70fe49df93b440c27a78f2c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/pariscid.pl", - "type": "file", - "name": "pariscid.pl", - "base_name": "pariscid", - "extension": ".pl", - "date": "2017-05-25", - "size": 4370, - "sha1": "5462045d72bd426d257999a675c7ab8ba68b9b4c", - "md5": "a76c4f49518e2253e458073ecf0a2a93", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ppccap.c", - "type": "file", - "name": "ppccap.c", - "base_name": "ppccap", - "extension": ".c", - "date": "2017-05-25", - "size": 10708, - "sha1": "663228c216b9623a069b7e64c95218d9f1fc8a92", - "md5": "ebce161f28769744eae5fde1d5776c0e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ppccpuid.pl", - "type": "file", - "name": "ppccpuid.pl", - "base_name": "ppccpuid", - "extension": ".pl", - "date": "2017-05-25", - "size": 5324, - "sha1": "cd1096b3ddb9c897ba2d3949ddb5a33ce0be1223", - "md5": "56c096ec7fb0a79799c49aa0a038989e", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ppc_arch.h", - "type": "file", - "name": "ppc_arch.h", - "base_name": "ppc_arch", - "extension": ".h", - "date": "2017-05-25", - "size": 753, - "sha1": "2d2718aca9d377732d2d691154866bfb7ef60b67", - "md5": "f300a403c6111f779a7d619189ef6c56", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/s390xcap.c", - "type": "file", - "name": "s390xcap.c", - "base_name": "s390xcap", - "extension": ".c", - "date": "2017-05-25", - "size": 1339, - "sha1": "1e5228bb083d7369b334caf71c27aa96ed187420", - "md5": "b95fdda7497d862ea9992c3c837976e6", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/s390xcpuid.S", - "type": "file", - "name": "s390xcpuid.S", - "base_name": "s390xcpuid", - "extension": ".S", - "date": "2017-05-25", - "size": 3455, - "sha1": "17fefc28824293363d3cd8e9cc910af9a669125a", - "md5": "b33892fa25d55173cba3e9330d81545d", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/sparccpuid.S", - "type": "file", - "name": "sparccpuid.S", - "base_name": "sparccpuid", - "extension": ".S", - "date": "2017-05-25", - "size": 12352, - "sha1": "928a6917d63432d699d48022affbcef54dafbd4b", - "md5": "368e0dccf3c36085fa2648a03deb6123", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/crypto/sparcv9cap.c", - "type": "file", - "name": "sparcv9cap.c", - "base_name": "sparcv9cap", - "extension": ".c", - "date": "2017-05-25", - "size": 10720, - "sha1": "88ffd523a729cb2b16722c79c5c22a92e9c9bfc6", - "md5": "a3e1222cba8adad88d42a8447e52b728", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/sparc_arch.h", - "type": "file", - "name": "sparc_arch.h", - "base_name": "sparc_arch", - "extension": ".h", - "date": "2017-05-25", - "size": 4319, - "sha1": "078c38503114cbaadb7b080515fcd0cfce8f84c4", - "md5": "acce134ab5dcc7ae4a536a86124a7baf", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/threads_none.c", - "type": "file", - "name": "threads_none.c", - "base_name": "threads_none", - "extension": ".c", - "date": "2017-05-25", - "size": 2510, - "sha1": "3147f6dc1f564ccb6f61bc3ea02de42ac190bd12", - "md5": "cab5a3ce094dd34580e5bdacae2611c0", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/threads_pthread.c", - "type": "file", - "name": "threads_pthread.c", - "base_name": "threads_pthread", - "extension": ".c", - "date": "2017-05-25", - "size": 3483, - "sha1": "afa9a860a396ef06436ef58f0adff1cef7b66acf", - "md5": "a8a11c3fe27f5164ff259115a57ea1f5", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/threads_win.c", - "type": "file", - "name": "threads_win.c", - "base_name": "threads_win", - "extension": ".c", - "date": "2017-05-25", - "size": 2866, - "sha1": "da9c558b595c0becf6c323502fa280ad97246457", - "md5": "1918ea028a4dd5e86c16a2cca6f87577", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/uid.c", - "type": "file", - "name": "uid.c", - "base_name": "uid", - "extension": ".c", - "date": "2017-05-25", - "size": 871, - "sha1": "8c4197981d92dc201b37125bb9f186d7c27a7dee", - "md5": "c165ad53430a7c4fd400888fab21f063", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/vms_rms.h", - "type": "file", - "name": "vms_rms.h", - "base_name": "vms_rms", - "extension": ".h", - "date": "2017-05-25", - "size": 2150, - "sha1": "fe659c54612f43f9b611fb3489e6f7a7211d9abc", - "md5": "c699e07ac696d67f6bd2d1f58c688a93", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/x86cpuid.pl", - "type": "file", - "name": "x86cpuid.pl", - "base_name": "x86cpuid", - "extension": ".pl", - "date": "2017-05-25", - "size": 13840, - "sha1": "b4b7fd0317528753776ff70106bd9d5fd7f19518", - "md5": "32c5b79a9ac4440086fa5a2b41b101af", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/x86_64cpuid.pl", - "type": "file", - "name": "x86_64cpuid.pl", - "base_name": "x86_64cpuid", - "extension": ".pl", - "date": "2017-05-25", - "size": 9108, - "sha1": "b78e2f7292269afd2443e0625302b868ad17f53c", - "md5": "319093100fb719c295d6d623bd1bc815", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/aes", - "type": "directory", - "name": "aes", - "base_name": "aes", - "extension": "", - "date": null, - "size": 1438062, - "sha1": null, - "md5": null, - "files_count": 36, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1", - "type": "directory", - "name": "asn1", - "base_name": "asn1", - "extension": "", - "date": null, - "size": 427087, - "sha1": null, - "md5": null, - "files_count": 67, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/async", - "type": "directory", - "name": "async", - "base_name": "async", - "extension": "", - "date": null, - "size": 26234, - "sha1": null, - "md5": null, - "files_count": 11, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bf", - "type": "directory", - "name": "bf", - "base_name": "bf", - "extension": "", - "date": null, - "size": 49996, - "sha1": null, - "md5": null, - "files_count": 10, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bio", - "type": "directory", - "name": "bio", - "base_name": "bio", - "extension": "", - "date": null, - "size": 281253, - "sha1": null, - "md5": null, - "files_count": 25, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/blake2", - "type": "directory", - "name": "blake2", - "base_name": "blake2", - "extension": "", - "date": null, - "size": 25212, - "sha1": null, - "md5": null, - "files_count": 7, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn", - "type": "directory", - "name": "bn", - "base_name": "bn", - "extension": "", - "date": null, - "size": 1381631, - "sha1": null, - "md5": null, - "files_count": 76, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/buffer", - "type": "directory", - "name": "buffer", - "base_name": "buffer", - "extension": "", - "date": null, - "size": 5340, - "sha1": null, - "md5": null, - "files_count": 3, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/camellia", - "type": "directory", - "name": "camellia", - "base_name": "camellia", - "extension": "", - "date": null, - "size": 118849, - "sha1": null, - "md5": null, - "files_count": 12, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/cast", - "type": "directory", - "name": "cast", - "base_name": "cast", - "extension": "", - "date": null, - "size": 53143, - "sha1": null, - "md5": null, - "files_count": 9, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/chacha", - "type": "directory", - "name": "chacha", - "base_name": "chacha", - "extension": "", - "date": null, - "size": 206534, - "sha1": null, - "md5": null, - "files_count": 9, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/cmac", - "type": "directory", - "name": "cmac", - "base_name": "cmac", - "extension": "", - "date": null, - "size": 11357, - "sha1": null, - "md5": null, - "files_count": 4, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/cms", - "type": "directory", - "name": "cms", - "base_name": "cms", - "extension": "", - "date": null, - "size": 185810, - "sha1": null, - "md5": null, - "files_count": 16, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/comp", - "type": "directory", - "name": "comp", - "base_name": "comp", - "extension": "", - "date": null, - "size": 21714, - "sha1": null, - "md5": null, - "files_count": 5, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/conf", - "type": "directory", - "name": "conf", - "base_name": "conf", - "extension": "", - "date": null, - "size": 62377, - "sha1": null, - "md5": null, - "files_count": 10, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/ct", - "type": "directory", - "name": "ct", - "base_name": "ct", - "extension": "", - "date": null, - "size": 64163, - "sha1": null, - "md5": null, - "files_count": 12, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/des", - "type": "directory", - "name": "des", - "base_name": "des", - "extension": "", - "date": null, - "size": 171134, - "sha1": null, - "md5": null, - "files_count": 30, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/dh", - "type": "directory", - "name": "dh", - "base_name": "dh", - "extension": "", - "date": null, - "size": 75289, - "sha1": null, - "md5": null, - "files_count": 20, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/dsa", - "type": "directory", - "name": "dsa", - "base_name": "dsa", - "extension": "", - "date": null, - "size": 76246, - "sha1": null, - "md5": null, - "files_count": 15, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/dso", - "type": "directory", - "name": "dso", - "base_name": "dso", - "extension": "", - "date": null, - "size": 68444, - "sha1": null, - "md5": null, - "files_count": 9, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/ec", - "type": "directory", - "name": "ec", - "base_name": "ec", - "extension": "", - "date": null, - "size": 1867147, - "sha1": null, - "md5": null, - "files_count": 42, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/engine", - "type": "directory", - "name": "engine", - "base_name": "engine", - "extension": "", - "date": null, - "size": 197994, - "sha1": null, - "md5": null, - "files_count": 26, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/err", - "type": "directory", - "name": "err", - "base_name": "err", - "extension": "", - "date": null, - "size": 31582, - "sha1": null, - "md5": null, - "files_count": 6, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp", - "type": "directory", - "name": "evp", - "base_name": "evp", - "extension": "", - "date": null, - "size": 485983, - "sha1": null, - "md5": null, - "files_count": 60, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/hmac", - "type": "directory", - "name": "hmac", - "base_name": "hmac", - "extension": "", - "date": null, - "size": 14663, - "sha1": null, - "md5": null, - "files_count": 5, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/idea", - "type": "directory", - "name": "idea", - "base_name": "idea", - "extension": "", - "date": null, - "size": 14699, - "sha1": null, - "md5": null, - "files_count": 7, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/include", - "type": "directory", - "name": "include", - "base_name": "include", - "extension": "", - "date": null, - "size": 55455, - "sha1": null, - "md5": null, - "files_count": 18, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/kdf", - "type": "directory", - "name": "kdf", - "base_name": "kdf", - "extension": "", - "date": null, - "size": 16272, - "sha1": null, - "md5": null, - "files_count": 4, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/lhash", - "type": "directory", - "name": "lhash", - "base_name": "lhash", - "extension": "", - "date": null, - "size": 14038, - "sha1": null, - "md5": null, - "files_count": 5, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/md2", - "type": "directory", - "name": "md2", - "base_name": "md2", - "extension": "", - "date": null, - "size": 6379, - "sha1": null, - "md5": null, - "files_count": 3, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/md4", - "type": "directory", - "name": "md4", - "base_name": "md4", - "extension": "", - "date": null, - "size": 7726, - "sha1": null, - "md5": null, - "files_count": 4, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/md5", - "type": "directory", - "name": "md5", - "base_name": "md5", - "extension": "", - "date": null, - "size": 62609, - "sha1": null, - "md5": null, - "files_count": 8, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/mdc2", - "type": "directory", - "name": "mdc2", - "base_name": "mdc2", - "extension": "", - "date": null, - "size": 4535, - "sha1": null, - "md5": null, - "files_count": 3, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/modes", - "type": "directory", - "name": "modes", - "base_name": "modes", - "extension": "", - "date": null, - "size": 385188, - "sha1": null, - "md5": null, - "files_count": 24, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/objects", - "type": "directory", - "name": "objects", - "base_name": "objects", - "extension": "", - "date": null, - "size": 449249, - "sha1": null, - "md5": null, - "files_count": 16, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/ocsp", - "type": "directory", - "name": "ocsp", - "base_name": "ocsp", - "extension": "", - "date": null, - "size": 95294, - "sha1": null, - "md5": null, - "files_count": 12, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/pem", - "type": "directory", - "name": "pem", - "base_name": "pem", - "extension": "", - "date": null, - "size": 85816, - "sha1": null, - "md5": null, - "files_count": 12, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/perlasm", - "type": "directory", - "name": "perlasm", - "base_name": "perlasm", - "extension": "", - "date": null, - "size": 124286, - "sha1": null, - "md5": null, - "files_count": 10, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/pkcs12", - "type": "directory", - "name": "pkcs12", - "base_name": "pkcs12", - "extension": "", - "date": null, - "size": 73331, - "sha1": null, - "md5": null, - "files_count": 18, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/pkcs7", - "type": "directory", - "name": "pkcs7", - "base_name": "pkcs7", - "extension": "", - "date": null, - "size": 87587, - "sha1": null, - "md5": null, - "files_count": 11, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/poly1305", - "type": "directory", - "name": "poly1305", - "base_name": "poly1305", - "extension": "", - "date": null, - "size": 284689, - "sha1": null, - "md5": null, - "files_count": 13, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/rand", - "type": "directory", - "name": "rand", - "base_name": "rand", - "extension": "", - "date": null, - "size": 60919, - "sha1": null, - "md5": null, - "files_count": 10, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/rc2", - "type": "directory", - "name": "rc2", - "base_name": "rc2", - "extension": "", - "date": null, - "size": 22542, - "sha1": null, - "md5": null, - "files_count": 8, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/rc4", - "type": "directory", - "name": "rc4", - "base_name": "rc4", - "extension": "", - "date": null, - "size": 89169, - "sha1": null, - "md5": null, - "files_count": 11, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/rc5", - "type": "directory", - "name": "rc5", - "base_name": "rc5", - "extension": "", - "date": null, - "size": 20120, - "sha1": null, - "md5": null, - "files_count": 8, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/ripemd", - "type": "directory", - "name": "ripemd", - "base_name": "ripemd", - "extension": "", - "date": null, - "size": 36056, - "sha1": null, - "md5": null, - "files_count": 6, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/rsa", - "type": "directory", - "name": "rsa", - "base_name": "rsa", - "extension": "", - "date": null, - "size": 160887, - "sha1": null, - "md5": null, - "files_count": 24, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/seed", - "type": "directory", - "name": "seed", - "base_name": "seed", - "extension": "", - "date": null, - "size": 33499, - "sha1": null, - "md5": null, - "files_count": 7, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/sha", - "type": "directory", - "name": "sha", - "base_name": "sha", - "extension": "", - "date": null, - "size": 658346, - "sha1": null, - "md5": null, - "files_count": 37, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/srp", - "type": "directory", - "name": "srp", - "base_name": "srp", - "extension": "", - "date": null, - "size": 24847, - "sha1": null, - "md5": null, - "files_count": 3, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/stack", - "type": "directory", - "name": "stack", - "base_name": "stack", - "extension": "", - "date": null, - "size": 7288, - "sha1": null, - "md5": null, - "files_count": 2, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/ts", - "type": "directory", - "name": "ts", - "base_name": "ts", - "extension": "", - "date": null, - "size": 108598, - "sha1": null, - "md5": null, - "files_count": 13, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/txt_db", - "type": "directory", - "name": "txt_db", - "base_name": "txt_db", - "extension": "", - "date": null, - "size": 8737, - "sha1": null, - "md5": null, - "files_count": 2, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/ui", - "type": "directory", - "name": "ui", - "base_name": "ui", - "extension": "", - "date": null, - "size": 49276, - "sha1": null, - "md5": null, - "files_count": 6, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/whrlpool", - "type": "directory", - "name": "whrlpool", - "base_name": "whrlpool", - "extension": "", - "date": null, - "size": 85866, - "sha1": null, - "md5": null, - "files_count": 6, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509", - "type": "directory", - "name": "x509", - "base_name": "x509", - "extension": "", - "date": null, - "size": 353431, - "sha1": null, - "md5": null, - "files_count": 37, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509v3", - "type": "directory", - "name": "x509v3", - "base_name": "x509v3", - "extension": "", - "date": null, - "size": 349973, - "sha1": null, - "md5": null, - "files_count": 42, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/aes/aes_cbc.c", - "type": "file", - "name": "aes_cbc.c", - "base_name": "aes_cbc", - "extension": ".c", - "date": "2017-05-25", - "size": 814, - "sha1": "12155b69ed8410fd4f5a90d757528b7a00467978", - "md5": "55245247dc7740c515765821d0897202", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/aes/aes_cfb.c", - "type": "file", - "name": "aes_cfb.c", - "base_name": "aes_cfb", - "extension": ".c", - "date": "2017-05-25", - "size": 1595, - "sha1": "a558bcf9ab2d58a39079bca421bcb0bc4d3023cc", - "md5": "359bd18db0269b16a54c49ccecd1a1f3", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/aes/aes_core.c", - "type": "file", - "name": "aes_core.c", - "base_name": "aes_core", - "extension": ".c", - "date": "2017-05-25", - "size": 62847, - "sha1": "3bd52d5563d81b7f0eab5c93ae9850f9c0fbdd4c", - "md5": "9f35e1c65a88d33e57671169ba556266", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [] - }, - { - "path": "openssl-1.1.0f/crypto/aes/aes_ecb.c", - "type": "file", - "name": "aes_ecb.c", - "base_name": "aes_ecb", - "extension": ".c", - "date": "2017-05-25", - "size": 726, - "sha1": "2fccfabbcfb6e13ed3870fc0fed9b9499a763f79", - "md5": "47bf38a94700329787c82e637440c92c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/aes/aes_ige.c", - "type": "file", - "name": "aes_ige.c", - "base_name": "aes_ige", - "extension": ".c", - "date": "2017-05-25", - "size": 9586, - "sha1": "187221286eebed0231d334a6aaca79429296ac9b", - "md5": "0d8cf6acffa228bf4d4a7a01017b4aca", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/aes/aes_locl.h", - "type": "file", - "name": "aes_locl.h", - "base_name": "aes_locl", - "extension": ".h", - "date": "2017-05-25", - "size": 1331, - "sha1": "0e9869b8bde0ffb4aa1b86abee3c16a181d4ef24", - "md5": "7ebb0eb35adacf998b9892693c4af583", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/aes/aes_misc.c", - "type": "file", - "name": "aes_misc.c", - "base_name": "aes_misc", - "extension": ".c", - "date": "2017-05-25", - "size": 529, - "sha1": "29be7c3034116d12552880e984a37ebe3bc44816", - "md5": "f9c998e9d69c9e9a595ac78208f0b0eb", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/aes/aes_ofb.c", - "type": "file", - "name": "aes_ofb.c", - "base_name": "aes_ofb", - "extension": ".c", - "date": "2017-05-25", - "size": 686, - "sha1": "cd734afa6257d291cca006f855521650728e08e7", - "md5": "2197b18526b6ddc6e6673916c893031d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/aes/aes_wrap.c", - "type": "file", - "name": "aes_wrap.c", - "base_name": "aes_wrap", - "extension": ".c", - "date": "2017-05-25", - "size": 932, - "sha1": "02252ea88a5f8e89f97e66fb5cacd409f12e94b5", - "md5": "0e66d7bf6afa7ca2a1ae2d555dcaf236", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/aes/aes_x86core.c", - "type": "file", - "name": "aes_x86core.c", - "base_name": "aes_x86core", - "extension": ".c", - "date": "2017-05-25", - "size": 41413, - "sha1": "8c5c12031c0d73b706e0d946328ed88ee5222057", - "md5": "13a76e3190a6cef9f211e1412b4d8069", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [] - }, - { - "path": "openssl-1.1.0f/crypto/aes/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 2284, - "sha1": "7bee7f22993e359017cf77b754880f2b4333fee6", - "md5": "629b47cad52f6cdc7680bb751ce98443", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/aes/asm", - "type": "directory", - "name": "asm", - "base_name": "asm", - "extension": "", - "date": null, - "size": 1315319, - "sha1": null, - "md5": null, - "files_count": 25, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/aes/asm/aes-586.pl", - "type": "file", - "name": "aes-586.pl", - "base_name": "aes-586", - "extension": ".pl", - "date": "2017-05-25", - "size": 103999, - "sha1": "f4bf9e1fd9c88b56ee84f6366bf14998db734cc5", - "md5": "c5ff2e33c5a9ab503df12ec397b252fe", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 96.1, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 96.1, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 96.1, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Dean Gaudet " - ], - "start_line": 42, - "end_line": 45 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/aes/asm/aes-armv4.pl", - "type": "file", - "name": "aes-armv4.pl", - "base_name": "aes-armv4", - "extension": ".pl", - "date": "2017-05-25", - "size": 33604, - "sha1": "06589d8925cfe9fc59538c92cf91595f440b59f5", - "md5": "b6a6cd855969552d8e934ce0be3ca7ed", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/aes/asm/aes-c64xplus.pl", - "type": "file", - "name": "aes-c64xplus.pl", - "base_name": "aes-c64xplus", - "extension": ".pl", - "date": "2017-05-25", - "size": 44253, - "sha1": "a3411164b45932d230bdc493d54b362dd9d9f023", - "md5": "f3ab7a3b99545d80a91f103083e9a6d3", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/aes/asm/aes-ia64.S", - "type": "file", - "name": "aes-ia64.S", - "base_name": "aes-ia64", - "extension": ".S", - "date": "2017-05-25", - "size": 41622, - "sha1": "602927926eafe2d36dd9f21c86f7b71d8c344040", - "md5": "fd9eef2514a1cf5f1ecfb236cee944ab", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 70.97, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 70.97, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.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": 70.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": 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 " - ], - "start_line": 9, - "end_line": 11 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Andy Polyakov " - ], - "start_line": 35, - "end_line": 38 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/aes/asm/aes-mips.pl", - "type": "file", - "name": "aes-mips.pl", - "base_name": "aes-mips", - "extension": ".pl", - "date": "2017-05-25", - "size": 52593, - "sha1": "ecd4a022e3a014a78eb57804c6daab34a4eccd3f", - "md5": "ba8320449a5aa9ba42c869648b943e4f", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/aes/asm/aes-parisc.pl", - "type": "file", - "name": "aes-parisc.pl", - "base_name": "aes-parisc", - "extension": ".pl", - "date": "2017-05-25", - "size": 29154, - "sha1": "7d27a476fefdc43d4bd6b060fc599fdd8265445f", - "md5": "930a6a22950a17038216d48844120e6c", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 96.1, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 96.1, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 96.1, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/aes/asm/aes-ppc.pl", - "type": "file", - "name": "aes-ppc.pl", - "base_name": "aes-ppc", - "extension": ".pl", - "date": "2017-05-25", - "size": 39969, - "sha1": "7c68ce37b5fe6ec2504379a22f98d1a647618193", - "md5": "2e1db26bc24b092bdd26226129edd7ea", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 96.1, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 96.1, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 96.1, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/aes/asm/aes-s390x.pl", - "type": "file", - "name": "aes-s390x.pl", - "base_name": "aes-s390x", - "extension": ".pl", - "date": "2017-05-25", - "size": 53315, - "sha1": "4d58fbf1f4997c190a6ec0e6351008f8e093a55e", - "md5": "ebd043e054f99651f202bae1f31bf146", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 96.1, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 96.1, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 96.1, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/aes/asm/aes-sparcv9.pl", - "type": "file", - "name": "aes-sparcv9.pl", - "base_name": "aes-sparcv9", - "extension": ".pl", - "date": "2017-05-25", - "size": 30300, - "sha1": "444d157f24d6f8d22eb12c713e1402d127c2139e", - "md5": "20944d5c516df04ef767f325705c5be9", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 70.97, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 70.97, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 70.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": 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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 75122, - "sha1": "5746bfe92222bfd67c1c5daafe165e7aa3a8308d", - "md5": "d168566feabb90741801e3a3b7feda6b", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 96.1, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 96.1, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 96.1, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/aes/asm/aesfx-sparcv9.pl", - "type": "file", - "name": "aesfx-sparcv9.pl", - "base_name": "aesfx-sparcv9", - "extension": ".pl", - "date": "2017-05-25", - "size": 28158, - "sha1": "8aff2ac1d4f2d72d740b710b2b7016e347db74e2", - "md5": "94c6a94fb3676fb3307b20ddc4fdde41", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 36301, - "sha1": "f162ea14fef91ad3650dd2e523c133382b9c61c1", - "md5": "6ffa98a3c2fc846d9e56c7c2a2d05315", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 53064, - "sha1": "78ce9e31e5c3adf057fd5b758377e52aad87acb0", - "md5": "e1aa5305b2c72d797d29b2c42113aff2", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 42221, - "sha1": "c3057b445741556427b94102ccbceae9f9f0a08b", - "md5": "294f2d1e3fcdf343a17fe16215cf8245", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/aes/asm/aesni-x86.pl", - "type": "file", - "name": "aesni-x86.pl", - "base_name": "aesni-x86", - "extension": ".pl", - "date": "2017-05-25", - "size": 102049, - "sha1": "e54cbcc9a23b691560a820a634efca517c0ba5c9", - "md5": "0ba38fd4086789549fbecfca17e3d3c1", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 127843, - "sha1": "ee4d1b6e2fc2cb561e5cac92e33b91d0cdd5893f", - "md5": "bf855df3539ff4290c151938052c4fbb", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/aes/asm/aesp8-ppc.pl", - "type": "file", - "name": "aesp8-ppc.pl", - "base_name": "aesp8-ppc", - "extension": ".pl", - "date": "2017-05-25", - "size": 93271, - "sha1": "626d1a5009629d344d525dd8c9aa1cabe39ece06", - "md5": "3b223ead172d4fba7cd548fb8fc725cf", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/aes/asm/aest4-sparcv9.pl", - "type": "file", - "name": "aest4-sparcv9.pl", - "base_name": "aest4-sparcv9", - "extension": ".pl", - "date": "2017-05-25", - "size": 23246, - "sha1": "82c7e744e336971fc3d64c2a4e087c38f0a983c0", - "md5": "7e4bea2ecc99fac11900bbd8ce8f7b59", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 78.95, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 78.95, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 78.95, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [] - }, - { - "path": "openssl-1.1.0f/crypto/aes/asm/aesv8-armx.pl", - "type": "file", - "name": "aesv8-armx.pl", - "base_name": "aesv8-armx", - "extension": ".pl", - "date": "2017-05-25", - "size": 22124, - "sha1": "c3cf1574c14ab44bc719f19261000818f8881e39", - "md5": "74a5aa944aa872ad8a82113494398c95", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/aes/asm/bsaes-armv7.pl", - "type": "file", - "name": "bsaes-armv7.pl", - "base_name": "bsaes-armv7", - "extension": ".pl", - "date": "2017-05-25", - "size": 63775, - "sha1": "61cab262a076ba94772a471ea6413edbe870d1ae", - "md5": "81cbef80fe5c0caf9a398d929051a0bf", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 80.21, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 80.21, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 80.21, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": "gpl-1.0-plus", - "score": 55.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": 17, - "end_line": 18, - "matched_rule": { - "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0.RULE", - "license_choice": true, - "licenses": [ - "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 " - ], - "start_line": 11, - "end_line": 13 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Ard Biesheuvel " - ], - "start_line": 16, - "end_line": 18 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 73427, - "sha1": "9494da07f9054e31eb953b6eaafcac6933f98bbf", - "md5": "b4071698e72983c1e773bbd2acf5d500", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 59.72, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 59.72, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 59.72, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [] - }, - { - "path": "openssl-1.1.0f/crypto/aes/asm/vpaes-armv8.pl", - "type": "file", - "name": "vpaes-armv8.pl", - "base_name": "vpaes-armv8", - "extension": ".pl", - "date": "2017-05-25", - "size": 44096, - "sha1": "b8895f07cc129322dfab97837376f7a57358f647", - "md5": "478102600747c7af62e5777131cd0efe", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [] - }, - { - "path": "openssl-1.1.0f/crypto/aes/asm/vpaes-ppc.pl", - "type": "file", - "name": "vpaes-ppc.pl", - "base_name": "vpaes-ppc", - "extension": ".pl", - "date": "2017-05-25", - "size": 42759, - "sha1": "f0b5338fbd0870ca7f08a5ecde0d2358db167d17", - "md5": "ea98e2b72361bb85b759de8e3df2d858", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [] - }, - { - "path": "openssl-1.1.0f/crypto/aes/asm/vpaes-x86.pl", - "type": "file", - "name": "vpaes-x86.pl", - "base_name": "vpaes-x86", - "extension": ".pl", - "date": "2017-05-25", - "size": 28094, - "sha1": "6454951009d36e1a5a5734428356db8ce9283580", - "md5": "1355c6dd2eb58b830f41d90e63b4a595", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 30960, - "sha1": "cbc18ff14f042719e0f33a62733d947c191203fc", - "md5": "07d1b45708c38b48338ceee32c8543ac", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/ameth_lib.c", - "type": "file", - "name": "ameth_lib.c", - "base_name": "ameth_lib", - "extension": ".c", - "date": "2017-05-25", - "size": 12483, - "sha1": "28ee8d400d6c319c886bce2dbc94c1e8a58db366", - "md5": "b7e46e0ae0ff47bbf180dc7418f2349e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/asn1_err.c", - "type": "file", - "name": "asn1_err.c", - "base_name": "asn1_err", - "extension": ".c", - "date": "2017-05-25", - "size": 14617, - "sha1": "1a955a90c1e2993c63a03ac24ddf5f6e525a292a", - "md5": "05db342eda8dcae6b27efffbec9c9cd1", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/asn1_gen.c", - "type": "file", - "name": "asn1_gen.c", - "base_name": "asn1_gen", - "extension": ".c", - "date": "2017-05-25", - "size": 23172, - "sha1": "4fbfc2f2eb4158fe216f8b11ab95490ae687b02a", - "md5": "aa0918fbf57e0027347d4e615fb3e073", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/asn1_lib.c", - "type": "file", - "name": "asn1_lib.c", - "base_name": "asn1_lib", - "extension": ".c", - "date": "2017-05-25", - "size": 8670, - "sha1": "83f2a835108ea2ff68d6d43d86b8678df7d76b36", - "md5": "5df1b3485c737ccd43057049c7310056", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/asn1_locl.h", - "type": "file", - "name": "asn1_locl.h", - "base_name": "asn1_locl", - "extension": ".h", - "date": "2017-05-25", - "size": 3218, - "sha1": "95b941e8a40f08a521c98165fd081c81cddb3a34", - "md5": "312b2bb2a8fd6a5c143e433105692992", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/asn1_par.c", - "type": "file", - "name": "asn1_par.c", - "base_name": "asn1_par", - "extension": ".c", - "date": "2017-05-25", - "size": 13188, - "sha1": "669e665f63dc3664b744cf7f67d35e2ab7ba6998", - "md5": "f71e2a9d517a824bb8af46954a9681f0", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/asn_mime.c", - "type": "file", - "name": "asn_mime.c", - "base_name": "asn_mime", - "extension": ".c", - "date": "2017-05-25", - "size": 28723, - "sha1": "3bc472c942aba6a29490e6d0f9469ae55d2a9553", - "md5": "00e40a612e3d7d0d3f2530b92c9ca59f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/asn_moid.c", - "type": "file", - "name": "asn_moid.c", - "base_name": "asn_moid", - "extension": ".c", - "date": "2017-05-25", - "size": 2567, - "sha1": "9fcaa5da8d6b3f4e888e8e7c554d6b0740eea331", - "md5": "75f8ee89fe351f63f538ebc70c192422", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/asn_mstbl.c", - "type": "file", - "name": "asn_mstbl.c", - "base_name": "asn_mstbl", - "extension": ".c", - "date": "2017-05-25", - "size": 3536, - "sha1": "77708743b32d543e00c42e73511c3af7e8df66f4", - "md5": "11b2d78bdac7c32c88507d76858e0cb5", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/asn_pack.c", - "type": "file", - "name": "asn_pack.c", - "base_name": "asn_pack", - "extension": ".c", - "date": "2017-05-25", - "size": 1629, - "sha1": "7b773827d6917da6d65af2b3bb604558ce892fcf", - "md5": "d778114d08f304895c7107b37265114e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/a_bitstr.c", - "type": "file", - "name": "a_bitstr.c", - "base_name": "a_bitstr", - "extension": ".c", - "date": "2017-05-25", - "size": 5403, - "sha1": "7f6615d919923b9805e8bf7973c16dffa2a9d484", - "md5": "d0b438765c850f2fac386b6e6c167f96", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 6533, - "sha1": "72942a58aa64feedc14eb986f05237bf2cc68067", - "md5": "7e5af1aa5351ca36e0f3be30910a6bd7", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/a_digest.c", - "type": "file", - "name": "a_digest.c", - "base_name": "a_digest", - "extension": ".c", - "date": "2017-05-25", - "size": 1482, - "sha1": "1221306c39e52f72754c18c4b0bedee143b4ec07", - "md5": "d426c54542da9c11ae297c5ae8323476", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/a_dup.c", - "type": "file", - "name": "a_dup.c", - "base_name": "a_dup", - "extension": ".c", - "date": "2017-05-25", - "size": 1559, - "sha1": "e853acde6e30b16a31ba115d3a858a5d20ac0c02", - "md5": "d0a0c7932e8ff80f555bf3fe3b4837d4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/a_gentm.c", - "type": "file", - "name": "a_gentm.c", - "base_name": "a_gentm", - "extension": ".c", - "date": "2017-05-25", - "size": 7425, - "sha1": "138be98ac65c727c33766df45cc18429593f4dfd", - "md5": "15034fcd46550e8598ac271709944b88", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2280, - "sha1": "3b998eae8a4d76acf8d6fc721a05d96150f4dde6", - "md5": "d15e37bea3d18f18e15d25e4c84725e9", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/a_int.c", - "type": "file", - "name": "a_int.c", - "base_name": "a_int", - "extension": ".c", - "date": "2017-05-25", - "size": 16959, - "sha1": "7ebaf4b2154df8083dacc4141f8f5acbb1be3a77", - "md5": "6839e126ca592ffad067d866887c1f27", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/a_mbstr.c", - "type": "file", - "name": "a_mbstr.c", - "base_name": "a_mbstr", - "extension": ".c", - "date": "2017-05-25", - "size": 11141, - "sha1": "1fa221ca8b618482edb5c4eb6faf8d052983d571", - "md5": "5442c7037f7bae58c8956694aab6af2f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/a_object.c", - "type": "file", - "name": "a_object.c", - "base_name": "a_object", - "extension": ".c", - "date": "2017-05-25", - "size": 9960, - "sha1": "bc6c329d7b77d24ab5bc4c5236478e36580db275", - "md5": "dc583556c69851e0ad8a9eb3414a2052", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/a_octet.c", - "type": "file", - "name": "a_octet.c", - "base_name": "a_octet", - "extension": ".c", - "date": "2017-05-25", - "size": 813, - "sha1": "5a315c2176641a3b1736d71116cd56dd99ee9b08", - "md5": "1209f8eae31742c3f6e3db85727db2ab", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/a_print.c", - "type": "file", - "name": "a_print.c", - "base_name": "a_print", - "extension": ".c", - "date": "2017-05-25", - "size": 2727, - "sha1": "5ffb71afd1f3bb0d95d16db44f63444f4a29db4a", - "md5": "d743df76b068f22ca00cf9641d5bc4e1", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/a_sign.c", - "type": "file", - "name": "a_sign.c", - "base_name": "a_sign", - "extension": ".c", - "date": "2017-05-25", - "size": 6972, - "sha1": "16ebeaf5794bb43b365560b22b8551a11b319c2f", - "md5": "c455611575bf2943e6c1240c5242f10d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/a_strex.c", - "type": "file", - "name": "a_strex.c", - "base_name": "a_strex", - "extension": ".c", - "date": "2017-05-25", - "size": 18509, - "sha1": "6663948875b6b9593f7b76c5bf460e142f582a48", - "md5": "661b34a10d87cb6260409f327f2d9a4d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/a_strnid.c", - "type": "file", - "name": "a_strnid.c", - "base_name": "a_strnid", - "extension": ".c", - "date": "2017-05-25", - "size": 8748, - "sha1": "b447c94d2d7fcb9ff0e78f9def8728f8acbf107e", - "md5": "e4eb54845e7153729cb592413e70e348", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/a_time.c", - "type": "file", - "name": "a_time.c", - "base_name": "a_time", - "extension": ".c", - "date": "2017-05-25", - "size": 4379, - "sha1": "9b822b37eb5784f926321bcd9fd4d1ff187fe2d6", - "md5": "e7c8cf1a61de03066f0de0bae3b8afef", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/a_type.c", - "type": "file", - "name": "a_type.c", - "base_name": "a_type", - "extension": ".c", - "date": "2017-05-25", - "size": 3473, - "sha1": "185084d182c6ee983cd2a1ad73abeb0020d5127a", - "md5": "59a535263d1c0746969024c6de4b31f6", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/a_utctm.c", - "type": "file", - "name": "a_utctm.c", - "base_name": "a_utctm", - "extension": ".c", - "date": "2017-05-25", - "size": 6278, - "sha1": "e6bf76105ea75a96d54da7ded0eff0857a6a26b5", - "md5": "26334b2d1777fe570ab4c823679ee672", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/a_utf8.c", - "type": "file", - "name": "a_utf8.c", - "base_name": "a_utf8", - "extension": ".c", - "date": "2017-05-25", - "size": 6028, - "sha1": "4578b9fae3c90e15003bc3aa0ed3f1885d6dcf38", - "md5": "43df20c45b9b9fefc6b8b94b82d05cdd", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/a_verify.c", - "type": "file", - "name": "a_verify.c", - "base_name": "a_verify", - "extension": ".c", - "date": "2017-05-25", - "size": 5023, - "sha1": "22eb79d3a169b2e04fddecb3135c538107a7133d", - "md5": "bdb999a0200ccf65c782d0a241d27d94", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/bio_asn1.c", - "type": "file", - "name": "bio_asn1.c", - "base_name": "bio_asn1", - "extension": ".c", - "date": "2017-05-25", - "size": 11057, - "sha1": "6fc01fd045030e4c344a6b1829e622a2657528c0", - "md5": "f30aa57177e7e4422fb68430b9a192e5", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/bio_ndef.c", - "type": "file", - "name": "bio_ndef.c", - "base_name": "bio_ndef", - "extension": ".c", - "date": "2017-05-25", - "size": 5252, - "sha1": "79ea65d5d3fb01c86ef554d6817746dde5775706", - "md5": "73aea3cfdcef46dcd0b8a550f572cf55", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 820, - "sha1": "b34533d72c1e8177bc519156f5056e9990e0a62a", - "md5": "5da5c936322c4f5472cb07eb82ec10e0", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/charmap.h", - "type": "file", - "name": "charmap.h", - "base_name": "charmap", - "extension": ".h", - "date": "2017-05-25", - "size": 1440, - "sha1": "035b7c0da78b377839cf61df08e01bf4b739d8f8", - "md5": "db6777624d421f78c2e3f05854d32f2c", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/charmap.pl", - "type": "file", - "name": "charmap.pl", - "base_name": "charmap", - "extension": ".pl", - "date": "2017-05-25", - "size": 3564, - "sha1": "1570e0b6e93f032a9da0c6769e95ffc860a59d34", - "md5": "594769b2fc4bf4135444b94abdc110f9", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/d2i_pr.c", - "type": "file", - "name": "d2i_pr.c", - "base_name": "d2i_pr", - "extension": ".c", - "date": "2017-05-25", - "size": 3661, - "sha1": "eeb9cb5a4b61a55786113a7a8d3a7f978dcd9321", - "md5": "c515232ef9707570945217365600e485", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/d2i_pu.c", - "type": "file", - "name": "d2i_pu.c", - "base_name": "d2i_pu", - "extension": ".c", - "date": "2017-05-25", - "size": 2061, - "sha1": "229b48d670acd6d8ba9441e77933a5fd7c9e78a5", - "md5": "72380b573dbe0af61d760d8731e6d11a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/evp_asn1.c", - "type": "file", - "name": "evp_asn1.c", - "base_name": "evp_asn1", - "extension": ".c", - "date": "2017-05-25", - "size": 2961, - "sha1": "b1576b1e27823b50cc0b6239ecbfc95a11151aa6", - "md5": "d7c846e1d78032cb4172a61c6f69b9ad", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/f_int.c", - "type": "file", - "name": "f_int.c", - "base_name": "f_int", - "extension": ".c", - "date": "2017-05-25", - "size": 4494, - "sha1": "d8b4777f7a07fef3e5af8ed9ad91036dfa7b7fc7", - "md5": "2a2078d12c394a692d4c2c1a2c338470", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/f_string.c", - "type": "file", - "name": "f_string.c", - "base_name": "f_string", - "extension": ".c", - "date": "2017-05-25", - "size": 4038, - "sha1": "c4027932516b5a89fb47e71e8eda130e05031eaf", - "md5": "6ea8ac5e52a4f34ef0cda1fb3eeb237f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/i2d_pr.c", - "type": "file", - "name": "i2d_pr.c", - "base_name": "i2d_pr", - "extension": ".c", - "date": "2017-05-25", - "size": 1018, - "sha1": "64c0206ae1a45720d78fb11e367bd987e8302f28", - "md5": "9d6fd5927ba5ce9ab49c936370e0a01b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/i2d_pu.c", - "type": "file", - "name": "i2d_pu.c", - "base_name": "i2d_pu", - "extension": ".c", - "date": "2017-05-25", - "size": 1071, - "sha1": "dca5661c44848edb7c17f9be558dbafac09a2818", - "md5": "7c0461f76411c5214845700c2423faec", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/nsseq.c", - "type": "file", - "name": "nsseq.c", - "base_name": "nsseq", - "extension": ".c", - "date": "2017-05-25", - "size": 1141, - "sha1": "95ced7105d1807c79832ec08edfe4f7c0491c07c", - "md5": "1b2412f8675c9392c370fc81db46131e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/n_pkey.c", - "type": "file", - "name": "n_pkey.c", - "base_name": "n_pkey", - "extension": ".c", - "date": "2017-05-25", - "size": 1930, - "sha1": "cfef56857e49111f348bdd7242ac2951428c628b", - "md5": "62827a94cecdc47a93b03e3dae930e6d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/p5_pbe.c", - "type": "file", - "name": "p5_pbe.c", - "base_name": "p5_pbe", - "extension": ".c", - "date": "2017-05-25", - "size": 2583, - "sha1": "6839e8c2106edbbb0ba011e08d71c37ba8a0bf55", - "md5": "4ec8445fdf497facf93c7c50643a8b01", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/p5_pbev2.c", - "type": "file", - "name": "p5_pbev2.c", - "base_name": "p5_pbev2", - "extension": ".c", - "date": "2017-05-25", - "size": 6138, - "sha1": "bb5480ee98e4043042b18c08bc5f24f1a1c913f0", - "md5": "461100c6f0a653c85119504eb1b6b271", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/p5_scrypt.c", - "type": "file", - "name": "p5_scrypt.c", - "base_name": "p5_scrypt", - "extension": ".c", - "date": "2017-05-25", - "size": 8199, - "sha1": "00091a259e9543a7a7866381266ce644979e7a5b", - "md5": "9aa61b1fdab7e1567262075e08daeacc", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/p8_pkey.c", - "type": "file", - "name": "p8_pkey.c", - "base_name": "p8_pkey", - "extension": ".c", - "date": "2017-05-25", - "size": 2597, - "sha1": "f8bdbe4a2498329d67046600db22e5cc1309bfa2", - "md5": "25fe6ebe4682a992a5c77a668f6d4d91", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/tasn_dec.c", - "type": "file", - "name": "tasn_dec.c", - "base_name": "tasn_dec", - "extension": ".c", - "date": "2017-05-25", - "size": 36533, - "sha1": "fbbc78b5836707d8f1d95370df5ecacd0fa581fd", - "md5": "f03d6ee8f931525dbe39e9ce5a61a804", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/tasn_enc.c", - "type": "file", - "name": "tasn_enc.c", - "base_name": "tasn_enc", - "extension": ".c", - "date": "2017-05-25", - "size": 18584, - "sha1": "72898c8cd9266a38d877ec399839fd4b556fa2b2", - "md5": "7453093cac3debb57e4460f94df544dd", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/tasn_fre.c", - "type": "file", - "name": "tasn_fre.c", - "base_name": "tasn_fre", - "extension": ".c", - "date": "2017-05-25", - "size": 5624, - "sha1": "3157eaca7eff1e3a50e777a63c62e3be57b262d1", - "md5": "5ad9a38745d36692d97c41d57ae235d6", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/tasn_new.c", - "type": "file", - "name": "tasn_new.c", - "base_name": "tasn_new", - "extension": ".c", - "date": "2017-05-25", - "size": 8959, - "sha1": "fcf8b069746e8786e8a04252c02ed805d056a1ea", - "md5": "281053a9c8b60f4ff8574b435e8a54e3", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/tasn_prn.c", - "type": "file", - "name": "tasn_prn.c", - "base_name": "tasn_prn", - "extension": ".c", - "date": "2017-05-25", - "size": 14912, - "sha1": "ff56710953118eeccca1a5521a5eb67905c59c8e", - "md5": "3293ca2b955ba10a081fa2866a7a53d5", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/tasn_scn.c", - "type": "file", - "name": "tasn_scn.c", - "base_name": "tasn_scn", - "extension": ".c", - "date": "2017-05-25", - "size": 1398, - "sha1": "802ff8c2507eae675178f5d1e55541769bc6e71c", - "md5": "566148a56b75ef1adb958878c60b6bbc", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/tasn_typ.c", - "type": "file", - "name": "tasn_typ.c", - "base_name": "tasn_typ", - "extension": ".c", - "date": "2017-05-25", - "size": 3007, - "sha1": "6bac8c7d1512624d3a0b6a2e761e23ec972b2b77", - "md5": "cf88616bc9bd8965a081dd2408dea33a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/tasn_utl.c", - "type": "file", - "name": "tasn_utl.c", - "base_name": "tasn_utl", - "extension": ".c", - "date": "2017-05-25", - "size": 6523, - "sha1": "dbff0e124718888f4242136a1234ec898a64f041", - "md5": "8e1b45796d654fc6d16f7df53d6e020b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/t_bitst.c", - "type": "file", - "name": "t_bitst.c", - "base_name": "t_bitst", - "extension": ".c", - "date": "2017-05-25", - "size": 1593, - "sha1": "87a3d446b6a23de7c71a1f657973b94bf7a8fd22", - "md5": "3b92f0b561a8c3b9bb0d0f61e747666c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/t_pkey.c", - "type": "file", - "name": "t_pkey.c", - "base_name": "t_pkey", - "extension": ".c", - "date": "2017-05-25", - "size": 2587, - "sha1": "4c4866558feefadebdbeb7835a419a2e7a71f382", - "md5": "b06562070158cb3bc3e1b73418e1f92b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/t_spki.c", - "type": "file", - "name": "t_spki.c", - "base_name": "t_spki", - "extension": ".c", - "date": "2017-05-25", - "size": 1780, - "sha1": "175780eb584ea4cae797b4fc9e02dfd4d41d6706", - "md5": "86016cfe105e45227d320fb6815b66ee", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/x_algor.c", - "type": "file", - "name": "x_algor.c", - "base_name": "x_algor", - "extension": ".c", - "date": "2017-05-25", - "size": 2602, - "sha1": "9b56445241cb7bb40c891ad3fd01d63c68ad2292", - "md5": "09e67067441a44c6fb40cf2150d05f44", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/x_bignum.c", - "type": "file", - "name": "x_bignum.c", - "base_name": "x_bignum", - "extension": ".c", - "date": "2017-05-25", - "size": 3915, - "sha1": "d3b78147ad71bd2d66e7ef9c9a8dede6d800cbae", - "md5": "8bc0f3419780bd0dc512647ef09720dd", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/x_info.c", - "type": "file", - "name": "x_info.c", - "base_name": "x_info", - "extension": ".c", - "date": "2017-05-25", - "size": 895, - "sha1": "013c14c97fba8fb6f98895d73e267224ddafaa4e", - "md5": "fc325fdb8d24226d13a427a4d295bbbc", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/x_int64.c", - "type": "file", - "name": "x_int64.c", - "base_name": "x_int64", - "extension": ".c", - "date": "2017-05-25", - "size": 7246, - "sha1": "4f5bf45f62d1f1dfc19fd7560b37d0d37eb1286d", - "md5": "bd3570f6645d7346b81a1cf72bc9300b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/x_long.c", - "type": "file", - "name": "x_long.c", - "base_name": "x_long", - "extension": ".c", - "date": "2017-05-25", - "size": 5446, - "sha1": "ceeb928b8e3f8847245556b6a517a28534aa1f3f", - "md5": "517724cb901828925c7343ab8a7043f9", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/x_pkey.c", - "type": "file", - "name": "x_pkey.c", - "base_name": "x_pkey", - "extension": ".c", - "date": "2017-05-25", - "size": 1148, - "sha1": "b75002e184724adfb711db2f9d668548c1a466df", - "md5": "602134f3fec065af5f839b5a3f1d96dd", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/x_sig.c", - "type": "file", - "name": "x_sig.c", - "base_name": "x_sig", - "extension": ".c", - "date": "2017-05-25", - "size": 1082, - "sha1": "4a385bf1d61e3483cb432c14a12c8c5aee238714", - "md5": "85757629a1d3b6592e67e24cc3fcb274", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/x_spki.c", - "type": "file", - "name": "x_spki.c", - "base_name": "x_spki", - "extension": ".c", - "date": "2017-05-25", - "size": 1097, - "sha1": "5ac6191626692285d3d796b19eed18aa443a2066", - "md5": "e3b2913e8f5ac16e78821350a93be633", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/asn1/x_val.c", - "type": "file", - "name": "x_val.c", - "base_name": "x_val", - "extension": ".c", - "date": "2017-05-25", - "size": 636, - "sha1": "856fb836170223205ffc3d2e94b82e6e0c6df7a4", - "md5": "a1aaafddc20f3065bfd88ac00d10be3b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/async/async.c", - "type": "file", - "name": "async.c", - "base_name": "async", - "extension": ".c", - "date": "2017-05-25", - "size": 10727, - "sha1": "ace75774c0c707cfca62633ad2218f2f52482647", - "md5": "bffff8b1839fbc4006152087406fdae1", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/async/async_err.c", - "type": "file", - "name": "async_err.c", - "base_name": "async_err", - "extension": ".c", - "date": "2017-05-25", - "size": 1623, - "sha1": "078e428b8194978258088ee332194c98b25fa26b", - "md5": "247441ff682d9d9b44d015cb17846512", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/crypto/async/async_locl.h", - "type": "file", - "name": "async_locl.h", - "base_name": "async_locl", - "extension": ".h", - "date": "2017-05-25", - "size": 1830, - "sha1": "782a0cc6cae81b1a5bdfd7cf15075942d5312b6e", - "md5": "35b0c9564bebd40785d7783fc8cad79a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/async/async_wait.c", - "type": "file", - "name": "async_wait.c", - "base_name": "async_wait", - "extension": ".c", - "date": "2017-05-25", - "size": 5508, - "sha1": "49a2e7d100bd8f6842ed97fb664b31c433c58dc5", - "md5": "0ddd26e8d8c4c3854591a38beed83376", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/async/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 152, - "sha1": "ed6c8da2ed5b93085310e960dee235ffffed9fb5", - "md5": "efc659cd7c62d16ebc31ee7e40f6768c", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/async/arch", - "type": "directory", - "name": "arch", - "base_name": "arch", - "extension": "", - "date": null, - "size": 6394, - "sha1": null, - "md5": null, - "files_count": 6, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/async/arch/async_null.c", - "type": "file", - "name": "async_null.c", - "base_name": "async_null", - "extension": ".c", - "date": "2017-05-25", - "size": 512, - "sha1": "c737c7eec1f595282ccf168ed339c3eec5e5790d", - "md5": "da5f80ac3339fbdb90fc9b514fc97b91", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/async/arch/async_null.h", - "type": "file", - "name": "async_null.h", - "base_name": "async_null", - "extension": ".h", - "date": "2017-05-25", - "size": 762, - "sha1": "a30fb2d06acb36c11280e351a15b76b650fbaf29", - "md5": "5c4c1038393988b72e0e6983afac0ee0", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/async/arch/async_posix.c", - "type": "file", - "name": "async_posix.c", - "base_name": "async_posix", - "extension": ".c", - "date": "2017-05-25", - "size": 1409, - "sha1": "304034e2fd570e005c80b9820c523d3044d5e991", - "md5": "63ae681bf4b7e3813e0d79573b9d0d7d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/async/arch/async_posix.h", - "type": "file", - "name": "async_posix.h", - "base_name": "async_posix", - "extension": ".h", - "date": "2017-05-25", - "size": 1391, - "sha1": "fffe1ddceea0ae25b8b050811a84c51f2122f816", - "md5": "e456b1409bc429da3dc4c6d66fc597ea", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/async/arch/async_win.c", - "type": "file", - "name": "async_win.c", - "base_name": "async_win", - "extension": ".c", - "date": "2017-05-25", - "size": 1239, - "sha1": "69f5de7eb859a0cb256bc7698ffbd2532143087f", - "md5": "6b4ab21c7b3a604980d645e9ba877224", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/async/arch/async_win.h", - "type": "file", - "name": "async_win.h", - "base_name": "async_win", - "extension": ".h", - "date": "2017-05-25", - "size": 1081, - "sha1": "2e00ac305a13c7eadf5d1f9a4eb01ac89a507ac9", - "md5": "68043e4216617081647c465c8128aae4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/bf/bf_cbc.c", - "type": "file", - "name": "bf_cbc.c", - "base_name": "bf_cbc", - "extension": ".c", - "date": "2017-05-25", - "size": 2450, - "sha1": "f4c1a386748c990b582269d832c08f628c7565a0", - "md5": "48dc37d7a43ca1ccaa55264f5cacd7af", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bf/bf_cfb64.c", - "type": "file", - "name": "bf_cfb64.c", - "base_name": "bf_cfb64", - "extension": ".c", - "date": "2017-05-25", - "size": 2164, - "sha1": "e04069c9b2828bd4d79ec2153da0a95fd03454fb", - "md5": "e41eb4d8b2b9be6cdbd05b8c2d85f047", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bf/bf_ecb.c", - "type": "file", - "name": "bf_ecb.c", - "base_name": "bf_ecb", - "extension": ".c", - "date": "2017-05-25", - "size": 1070, - "sha1": "415645eed425e20960e1b1643fcff469a9b1c6c2", - "md5": "84e8b9dd893703250acd0eba8cb4b2fc", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bf/bf_enc.c", - "type": "file", - "name": "bf_enc.c", - "base_name": "bf_enc", - "extension": ".c", - "date": "2017-05-25", - "size": 4609, - "sha1": "140c2a951235fbf78a44b10048240aed04fdd13b", - "md5": "e955c9deb81f3655a102161715862e34", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bf/bf_locl.h", - "type": "file", - "name": "bf_locl.h", - "base_name": "bf_locl", - "extension": ".h", - "date": "2017-05-25", - "size": 2973, - "sha1": "4c964fec9ada9791b975d65bbde4dd3f23e67a82", - "md5": "06ca3517e40cd7188c1504a83dbf6557", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bf/bf_ofb64.c", - "type": "file", - "name": "bf_ofb64.c", - "base_name": "bf_ofb64", - "extension": ".c", - "date": "2017-05-25", - "size": 1607, - "sha1": "53272e9f884c1af2e163c163e99b5a8c3fb88604", - "md5": "943e09d8a2071b8cba6ac58d612c7975", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bf/bf_pi.h", - "type": "file", - "name": "bf_pi.h", - "base_name": "bf_pi", - "extension": ".h", - "date": "2017-05-25", - "size": 30366, - "sha1": "51a231520e4d8118f6413596d11f29b4c9bb26e7", - "md5": "02e7d8de8e495e90d0233edd60c7a26c", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bf/bf_skey.c", - "type": "file", - "name": "bf_skey.c", - "base_name": "bf_skey", - "extension": ".c", - "date": "2017-05-25", - "size": 1450, - "sha1": "654d1fa06fdbfb27c07b7b4a8b2ccccc09f14413", - "md5": "43927df1bf6961081504cd60d8ffbe89", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bf/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 267, - "sha1": "77f759327696fd3f30e37ccacf11980314df05aa", - "md5": "0f48a6df715e52f10595df3211aebb56", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bf/asm", - "type": "directory", - "name": "asm", - "base_name": "asm", - "extension": "", - "date": null, - "size": 3040, - "sha1": null, - "md5": null, - "files_count": 1, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bf/asm/bf-586.pl", - "type": "file", - "name": "bf-586.pl", - "base_name": "bf-586", - "extension": ".pl", - "date": "2017-05-25", - "size": 3040, - "sha1": "d3b1b8f68a814a8034d53e01c74fd5a6c1aef03b", - "md5": "cd46f42258d0059caa2d93e9d35097d4", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/bio/bf_buff.c", - "type": "file", - "name": "bf_buff.c", - "base_name": "bf_buff", - "extension": ".c", - "date": "2017-05-25", - "size": 12065, - "sha1": "4abf62addc675fb8fa7713b70311845ac248af18", - "md5": "1004117f46cf93dbe53635b6e97a3b8e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bio/bf_lbuf.c", - "type": "file", - "name": "bf_lbuf.c", - "base_name": "bf_lbuf", - "extension": ".c", - "date": "2017-05-25", - "size": 8642, - "sha1": "de06167d769455b9c354a1aaafcbce6c737cbe19", - "md5": "7ac022b139f057511de2f3757a14978e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bio/bf_nbio.c", - "type": "file", - "name": "bf_nbio.c", - "base_name": "bf_nbio", - "extension": ".c", - "date": "2017-05-25", - "size": 4122, - "sha1": "1a7024191c98690a5bedbf04333b2de4b8b5ecef", - "md5": "a3dad01bc784528d771d97a88d45f4f3", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bio/bf_null.c", - "type": "file", - "name": "bf_null.c", - "base_name": "bf_null", - "extension": ".c", - "date": "2017-05-25", - "size": 3082, - "sha1": "35a7bf0e14328dad6c21f522fa32cf00afb065a0", - "md5": "7bc1a4ca380dae0e92cd4501e2976ead", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bio/bio_cb.c", - "type": "file", - "name": "bio_cb.c", - "base_name": "bio_cb", - "extension": ".c", - "date": "2017-05-25", - "size": 3199, - "sha1": "531fe3a06496cbd90fdb73b0541224ce08d049a4", - "md5": "9d05f0242e270f7744561c9084959a21", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bio/bio_err.c", - "type": "file", - "name": "bio_err.c", - "base_name": "bio_err", - "extension": ".c", - "date": "2017-05-25", - "size": 5521, - "sha1": "08dce1bfeeaa923c865c4eb62a5b80a6c3ecbc63", - "md5": "7a481d7c3d70fd14f96c3783b2d70294", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/crypto/bio/bio_lcl.h", - "type": "file", - "name": "bio_lcl.h", - "base_name": "bio_lcl", - "extension": ".h", - "date": "2017-05-25", - "size": 5586, - "sha1": "2b67a73ef440f10ad2300f9338408a2f21f160cb", - "md5": "0909e3c6168450e6c92353bac5431001", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/bio/bio_lib.c", - "type": "file", - "name": "bio_lib.c", - "base_name": "bio_lib", - "extension": ".c", - "date": "2017-05-25", - "size": 12674, - "sha1": "0b38356923a229941c0fad45110dd9ec849f77ad", - "md5": "f93aa152226a3de0f3dbf26f9399fc47", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bio/bio_meth.c", - "type": "file", - "name": "bio_meth.c", - "base_name": "bio_meth", - "extension": ".c", - "date": "2017-05-25", - "size": 3188, - "sha1": "c5d0e568a6057123468a96a89892d6ca1c0a689a", - "md5": "a35669c76f3e133dc3d57dcf6bd93c99", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/bio/bss_acpt.c", - "type": "file", - "name": "bss_acpt.c", - "base_name": "bss_acpt", - "extension": ".c", - "date": "2017-05-25", - "size": 16099, - "sha1": "b7410404b4fec5bb3cca9034ed30b5de1cc7d7e7", - "md5": "118ceff0162a72ae17a7fe0e903e7333", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bio/bss_bio.c", - "type": "file", - "name": "bss_bio.c", - "base_name": "bss_bio", - "extension": ".c", - "date": "2017-05-25", - "size": 18874, - "sha1": "39beac44957068ce1ce9afb51bd031cabab20c49", - "md5": "36bd6a9a35439053e5ad89dd929e6737", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/bio/bss_conn.c", - "type": "file", - "name": "bss_conn.c", - "base_name": "bss_conn", - "extension": ".c", - "date": "2017-05-25", - "size": 15911, - "sha1": "3d402f9b968a5be5a862f848eb2b90c1d7fc427d", - "md5": "05163f1735a4512492f3ae19a13f3b2b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bio/bss_dgram.c", - "type": "file", - "name": "bss_dgram.c", - "base_name": "bss_dgram", - "extension": ".c", - "date": "2017-05-25", - "size": 56956, - "sha1": "b9efb7bf22801eef6d2c948800d43b8d474b401e", - "md5": "60ef8505415e98c8d61b461badd7d50d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/bio/bss_fd.c", - "type": "file", - "name": "bss_fd.c", - "base_name": "bss_fd", - "extension": ".c", - "date": "2017-05-25", - "size": 5482, - "sha1": "324d6850f3c915a2d8c2aa8198b80e8775f42db2", - "md5": "6b35fe0967b80d63ef650dc9aadc0c30", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bio/bss_file.c", - "type": "file", - "name": "bss_file.c", - "base_name": "bss_file", - "extension": ".c", - "date": "2017-05-25", - "size": 11474, - "sha1": "3806cdc73c299c8721f7402faf9a07bc2bf76a20", - "md5": "ccfe33bf0f029d3b5dbd65e95862c780", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bio/bss_log.c", - "type": "file", - "name": "bss_log.c", - "base_name": "bss_log", - "extension": ".c", - "date": "2017-05-25", - "size": 9347, - "sha1": "cf1f04c0102a1637e337ee80193320f5339a54d3", - "md5": "c2ac9036181429fbbbf5575d596747fe", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/bio/bss_mem.c", - "type": "file", - "name": "bss_mem.c", - "base_name": "bss_mem", - "extension": ".c", - "date": "2017-05-25", - "size": 8145, - "sha1": "2e9d27c22589cf5fd98326efea78db2a052c4266", - "md5": "6cda5f8e4f9fef2974d10c02a8e98f0a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bio/bss_null.c", - "type": "file", - "name": "bss_null.c", - "base_name": "bss_null", - "extension": ".c", - "date": "2017-05-25", - "size": 2031, - "sha1": "5aad88c5bd4d493e5d9e25fe5326d9fe680a4035", - "md5": "2e81c3625960cc749f5cf77ea6da1198", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bio/bss_sock.c", - "type": "file", - "name": "bss_sock.c", - "base_name": "bss_sock", - "extension": ".c", - "date": "2017-05-25", - "size": 4397, - "sha1": "f70ec602396df9044728410ea1bc2820eb2d4506", - "md5": "ea7f62c666b55c8ad69c383a7cb5be51", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bio/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 338, - "sha1": "10536129d1a6c1d192c2d4eec85938d19cd2bb3f", - "md5": "d4713215727ec27f6ec941e0d599912f", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bio/b_addr.c", - "type": "file", - "name": "b_addr.c", - "base_name": "b_addr", - "extension": ".c", - "date": "2017-05-25", - "size": 24754, - "sha1": "0d0034b5b5cff372160c4d716d11f3b12fc981b5", - "md5": "d068c91ce161a51e2bec0ee7528f902e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/bio/b_dump.c", - "type": "file", - "name": "b_dump.c", - "base_name": "b_dump", - "extension": ".c", - "date": "2017-05-25", - "size": 4430, - "sha1": "4ae88b01e9d0f1bc7d09c942ad0ea86f58034b40", - "md5": "19f1faf5bfe3217a96b2eae5ecfdf677", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bio/b_print.c", - "type": "file", - "name": "b_print.c", - "base_name": "b_print", - "extension": ".c", - "date": "2017-05-25", - "size": 26062, - "sha1": "6e9a44540b278c773875b46e500f0b44f9fde8dc", - "md5": "22f8926259bfb724a63773009ec7be73", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": 100.0, - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/bio/b_sock.c", - "type": "file", - "name": "b_sock.c", - "base_name": "b_sock", - "extension": ".c", - "date": "2017-05-25", - "size": 10112, - "sha1": "ee4547bc44090e1243cf0b9712159e304e65265b", - "md5": "cacf6c5b6852337a1a0fd0c61e4d5c67", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bio/b_sock2.c", - "type": "file", - "name": "b_sock2.c", - "base_name": "b_sock2", - "extension": ".c", - "date": "2017-05-25", - "size": 8762, - "sha1": "fa41c5f87f7d3d42cb4028bbd90c5a3682b37d3d", - "md5": "8f2d99c0174a8cbb4b38b9987fca9d6b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/blake2/blake2b.c", - "type": "file", - "name": "blake2b.c", - "base_name": "blake2b", - "extension": ".c", - "date": "2017-05-25", - "size": 8359, - "sha1": "73ef5dfd6e5369940a8423a27cd0fd33558d80df", - "md5": "4e1a8c6d8fdc41b4d27350b8630f5ba8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/blake2/blake2s.c", - "type": "file", - "name": "blake2s.c", - "base_name": "blake2s", - "extension": ".c", - "date": "2017-05-25", - "size": 8038, - "sha1": "a3f80886f34f61200a8741e3b4e15424312ac5df", - "md5": "a06b7fb467e6102232dc6746895ecec9", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/blake2/blake2_impl.h", - "type": "file", - "name": "blake2_impl.h", - "base_name": "blake2_impl", - "extension": ".h", - "date": "2017-05-25", - "size": 3261, - "sha1": "b9d35f48c6e634b489e1b11386f663d9981660f4", - "md5": "015e80d32099f9ac193c5a6530490afa", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/blake2/blake2_locl.h", - "type": "file", - "name": "blake2_locl.h", - "base_name": "blake2_locl", - "extension": ".h", - "date": "2017-05-25", - "size": 2689, - "sha1": "a8ebaceecc4584dd23336b171b228be33cf3f7be", - "md5": "5030367932b68825159b209f5ba81540", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/blake2/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 99, - "sha1": "333eae26cbf7fa77ab86e9142530d5288db10227", - "md5": "dc148256d83ec9ac109a80316ce0a4c3", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/blake2/m_blake2b.c", - "type": "file", - "name": "m_blake2b.c", - "base_name": "m_blake2b", - "extension": ".c", - "date": "2017-05-25", - "size": 1383, - "sha1": "63d562d15c39f060adf41db3f55112a03a964699", - "md5": "a7ef3c66fd4dd9f3003de98c56f73723", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/blake2/m_blake2s.c", - "type": "file", - "name": "m_blake2s.c", - "base_name": "m_blake2s", - "extension": ".c", - "date": "2017-05-25", - "size": 1383, - "sha1": "ed789ae4e4ea9f6fb54bf73841f301527216aa70", - "md5": "9945a02af93e7ec083e8168fedc4e6ff", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/bn_add.c", - "type": "file", - "name": "bn_add.c", - "base_name": "bn_add", - "extension": ".c", - "date": "2017-05-25", - "size": 3938, - "sha1": "58dab109a112aee2713a034cf6342f7f2cd08e5e", - "md5": "7ac65a81391358a2b1f98a32f6b0d658", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/bn_asm.c", - "type": "file", - "name": "bn_asm.c", - "base_name": "bn_asm", - "extension": ".c", - "date": "2017-05-25", - "size": 27575, - "sha1": "97af54bc5ec7df47cdfdf71d30c6c54b60aef6c1", - "md5": "2b12f160bdf63029be3340028eaaa276", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/bn_blind.c", - "type": "file", - "name": "bn_blind.c", - "base_name": "bn_blind", - "extension": ".c", - "date": "2017-05-25", - "size": 7128, - "sha1": "454fd456c79b326c3b4220d869200f9bbf561b42", - "md5": "0eb7702d50f82ac522c5c0d32c2556b0", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/bn_const.c", - "type": "file", - "name": "bn_const.c", - "base_name": "bn_const", - "extension": ".c", - "date": "2017-05-25", - "size": 26919, - "sha1": "2d452f296e43a1bfc926e42947f1eb7da37204be", - "md5": "55d9ea7f42163abdd0da54d71dda9338", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/bn_ctx.c", - "type": "file", - "name": "bn_ctx.c", - "base_name": "bn_ctx", - "extension": ".c", - "date": "2017-05-25", - "size": 9510, - "sha1": "b9679a59b1e8af3f0556b963d88b120c5b3381e3", - "md5": "66dd5c0075f5b2b911784eca79e0818a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/bn_depr.c", - "type": "file", - "name": "bn_depr.c", - "base_name": "bn_depr", - "extension": ".c", - "date": "2017-05-25", - "size": 1932, - "sha1": "db3bc4983c2181dea326904198fe69a205f7d043", - "md5": "5f228bdd6ec9f38fd3519dfb7c9860b5", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/bn_dh.c", - "type": "file", - "name": "bn_dh.c", - "base_name": "bn_dh", - "extension": ".c", - "date": "2017-05-25", - "size": 10404, - "sha1": "5eefe90dcef56035b57ca8107a237b7d35ba83a6", - "md5": "c65f1e0671bf289800cb35231b9065a1", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/bn_div.c", - "type": "file", - "name": "bn_div.c", - "base_name": "bn_div", - "extension": ".c", - "date": "2017-05-25", - "size": 12412, - "sha1": "7a29d9a7b59aa507473180c9b018bc2cd5055b5e", - "md5": "a7bd8952264362b50ddc4df9c7305fad", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/bn_err.c", - "type": "file", - "name": "bn_err.c", - "base_name": "bn_err", - "extension": ".c", - "date": "2017-05-25", - "size": 4656, - "sha1": "7072d9005806d379d60b52d0d8afe69a4a62b088", - "md5": "467863744520a2c5fcf9a8d8794f4358", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/bn_exp.c", - "type": "file", - "name": "bn_exp.c", - "base_name": "bn_exp", - "extension": ".c", - "date": "2017-05-25", - "size": 43618, - "sha1": "bdd40816afb5921fd931b4170c91f38b75cbeacd", - "md5": "2919cec82c9ba3e521861bcfea51ed07", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/bn_exp2.c", - "type": "file", - "name": "bn_exp2.c", - "base_name": "bn_exp2", - "extension": ".c", - "date": "2017-05-25", - "size": 5961, - "sha1": "0f8b6bcc4d1b782d7cade4bc71de7f1c8bec8a68", - "md5": "edf5606c79e162c002ee8289b19e1f1d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/bn_gcd.c", - "type": "file", - "name": "bn_gcd.c", - "base_name": "bn_gcd", - "extension": ".c", - "date": "2017-05-25", - "size": 17151, - "sha1": "40b9961d88026cc00a2471d78ff7d2be391a3e7e", - "md5": "3963a5946203235ff2c7adaedee99600", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/bn_gf2m.c", - "type": "file", - "name": "bn_gf2m.c", - "base_name": "bn_gf2m", - "extension": ".c", - "date": "2017-05-25", - "size": 31344, - "sha1": "1fef9c3048e8f3311cb1c084d565d534459da381", - "md5": "33ccbb33f6720800a9d86eb60f0aae64", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 56.76, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 56.76, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 56.76, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/bn_intern.c", - "type": "file", - "name": "bn_intern.c", - "base_name": "bn_intern", - "extension": ".c", - "date": "2017-05-25", - "size": 5625, - "sha1": "203171316bbee23bf8b9fb9bbddf1f6ac21702cd", - "md5": "b3c0cb046f0c7beb70e631ec44b6abb7", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/bn_kron.c", - "type": "file", - "name": "bn_kron.c", - "base_name": "bn_kron", - "extension": ".c", - "date": "2017-05-25", - "size": 3294, - "sha1": "b55d08c2f95c9c531c8fc237c99201d0cb7b8d08", - "md5": "fc6290a2e7439f2d5d5e068284486025", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/bn_lcl.h", - "type": "file", - "name": "bn_lcl.h", - "base_name": "bn_lcl", - "extension": ".h", - "date": "2017-05-25", - "size": 25390, - "sha1": "84dac987fe5b910f162a53906e95ce6cd3f1ea01", - "md5": "817861adf11b6ff9c5c8491c556eef33", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/bn_lib.c", - "type": "file", - "name": "bn_lib.c", - "base_name": "bn_lib", - "extension": ".c", - "date": "2017-05-25", - "size": 23462, - "sha1": "57e08e25051162345cf6a09acd3d9ff81c5186e2", - "md5": "1a47bdc39688eb0a87f710ed87aa4f29", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/bn_mod.c", - "type": "file", - "name": "bn_mod.c", - "base_name": "bn_mod", - "extension": ".c", - "date": "2017-05-25", - "size": 4525, - "sha1": "c16bf0579e3aca22ee4ba56c9dc12ab1e2c71959", - "md5": "54a3b2e1d49dd2a2a2f29a0490167f2e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/bn_mont.c", - "type": "file", - "name": "bn_mont.c", - "base_name": "bn_mont", - "extension": ".c", - "date": "2017-05-25", - "size": 11375, - "sha1": "94b6e0e3f172a2e2f670d9256d18d1beddf0a85a", - "md5": "bfa80679f1f9efaa9e1d562f7e80e8eb", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/bn_mpi.c", - "type": "file", - "name": "bn_mpi.c", - "base_name": "bn_mpi", - "extension": ".c", - "date": "2017-05-25", - "size": 1909, - "sha1": "15a17548aa479599c84f5ee836bab39fab9f0fff", - "md5": "c8a451ddbf8290fa93413d419010a61f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/bn_mul.c", - "type": "file", - "name": "bn_mul.c", - "base_name": "bn_mul", - "extension": ".c", - "date": "2017-05-25", - "size": 28525, - "sha1": "0d8516485ec43821dd223fd790d318bddc289f67", - "md5": "d2a577aa59cc02571a7611e9cca32e11", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/bn_nist.c", - "type": "file", - "name": "bn_nist.c", - "base_name": "bn_nist", - "extension": ".c", - "date": "2017-05-25", - "size": 38166, - "sha1": "c0ba9871f16522e6a7a9653cb1ddbbf55c000bb4", - "md5": "c7a38dab33103917a42361ae7574bae7", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/bn_prime.c", - "type": "file", - "name": "bn_prime.c", - "base_name": "bn_prime", - "extension": ".c", - "date": "2017-05-25", - "size": 17773, - "sha1": "a4ad773f2a7142ae2caa91d0b9f665a66ac32b35", - "md5": "fa7955d68b15384f793094f3e020582b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/bn_prime.h", - "type": "file", - "name": "bn_prime.h", - "base_name": "bn_prime", - "extension": ".h", - "date": "2017-05-25", - "size": 14886, - "sha1": "e8c577c8245b592debb7b7c41aa651460372dda7", - "md5": "d85371e6b7c91799af69ec5897925ed3", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/bn_prime.pl", - "type": "file", - "name": "bn_prime.pl", - "base_name": "bn_prime", - "extension": ".pl", - "date": "2017-05-25", - "size": 1312, - "sha1": "077afac4f589cc8f68f9c8dbad6c3bf2d3d173bd", - "md5": "c5b48940185d84921321c4bb130db204", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 53.01, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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.01, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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.01, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/bn_print.c", - "type": "file", - "name": "bn_print.c", - "base_name": "bn_print", - "extension": ".c", - "date": "2017-05-25", - "size": 7940, - "sha1": "75ac619b91f779133451411c853c929dad05e76f", - "md5": "c6fa69a086903f8c56a6695e8733a1b3", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/bn_rand.c", - "type": "file", - "name": "bn_rand.c", - "base_name": "bn_rand", - "extension": ".c", - "date": "2017-05-25", - "size": 7378, - "sha1": "8017c637e0acff704cee894aed01b2c362bdd17a", - "md5": "7bee2df39e3a303705dc58dc9022e4f9", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/bn_recp.c", - "type": "file", - "name": "bn_recp.c", - "base_name": "bn_recp", - "extension": ".c", - "date": "2017-05-25", - "size": 4663, - "sha1": "5026dff433384f34d6fb649cfb2460088760c9c6", - "md5": "7cb1f5d73038406549606778e0a0da87", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/bn_shift.c", - "type": "file", - "name": "bn_shift.c", - "base_name": "bn_shift", - "extension": ".c", - "date": "2017-05-25", - "size": 3827, - "sha1": "c41c8108391419c9524a96899f40aaf7a3149562", - "md5": "59785e83dc70a6e2f78750de52348453", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/bn_sqr.c", - "type": "file", - "name": "bn_sqr.c", - "base_name": "bn_sqr", - "extension": ".c", - "date": "2017-05-25", - "size": 5504, - "sha1": "90f68787cb3676233a306620b359fd221bc5d9c0", - "md5": "b459d15bd9efc3c88794e029e2f49db6", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/bn_sqrt.c", - "type": "file", - "name": "bn_sqrt.c", - "base_name": "bn_sqrt", - "extension": ".c", - "date": "2017-05-25", - "size": 9441, - "sha1": "c71a12b983998edb4936cc1de1d43f5a9cdb0758", - "md5": "aaa4bca79970b5bea3c86ce9e560c0f5", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/bn_srp.c", - "type": "file", - "name": "bn_srp.c", - "base_name": "bn_srp", - "extension": ".c", - "date": "2017-05-25", - "size": 21875, - "sha1": "02b7a2c63636d6d6a000dc7b73012acbbccfaf1e", - "md5": "147ae8e7be81880cad701d45ebfaac8a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/bn_word.c", - "type": "file", - "name": "bn_word.c", - "base_name": "bn_word", - "extension": ".c", - "date": "2017-05-25", - "size": 4525, - "sha1": "2bd10aee62e2875b2b1e94714075ad5c2c38d844", - "md5": "bd3ecbc27db42d54b4bc4907c0d6c136", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/bn_x931p.c", - "type": "file", - "name": "bn_x931p.c", - "base_name": "bn_x931p", - "extension": ".c", - "date": "2017-05-25", - "size": 5698, - "sha1": "4088061ccf61f0a4826c18451d61f6d78e5dab51", - "md5": "be24262d6f5b05c0e12ed9bb54c77653", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 3487, - "sha1": "73bbf61649eea89c7eb37f723ecf5e853fcdab7f", - "md5": "8f046762c03864ba6dcfeeb43debf1f1", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/README.pod", - "type": "file", - "name": "README.pod", - "base_name": "README", - "extension": ".pod", - "date": "2017-05-25", - "size": 9830, - "sha1": "783325d89bd30a8c377d5c31f4ffb56cbcaffebb", - "md5": "feef15bc85cb3113fe14c9ca6d5e0dfb", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 240, - "end_line": 240 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/rsaz_exp.c", - "type": "file", - "name": "rsaz_exp.c", - "base_name": "rsaz_exp", - "extension": ".c", - "date": "2017-05-25", - "size": 14029, - "sha1": "f38ea2e959bed4de7257e1f280dd13282db7555e", - "md5": "8a5da9ae184ff21dbc1e2c79d6c8054e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/rsaz_exp.h", - "type": "file", - "name": "rsaz_exp.h", - "base_name": "rsaz_exp", - "extension": ".h", - "date": "2017-05-25", - "size": 4382, - "sha1": "c28e43cd491eda758aec866db429e84fc1b1f2d2", - "md5": "3fb3cc62081f9410eb223b1eb11f7173", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/asm", - "type": "directory", - "name": "asm", - "base_name": "asm", - "extension": "", - "date": null, - "size": 900262, - "sha1": null, - "md5": null, - "files_count": 38, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/asm/alpha-mont.pl", - "type": "file", - "name": "alpha-mont.pl", - "base_name": "alpha-mont", - "extension": ".pl", - "date": "2017-05-25", - "size": 5948, - "sha1": "e808abc9b7c14e22716449d6c5f16f71ee40fe68", - "md5": "f89314b192e3f957e0b5b10cf439cb47", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 96.1, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 96.1, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 96.1, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/asm/armv4-gf2m.pl", - "type": "file", - "name": "armv4-gf2m.pl", - "base_name": "armv4-gf2m", - "extension": ".pl", - "date": "2017-05-25", - "size": 8385, - "sha1": "54d9727bd532f3c347f2a5e9e65eefb7a3a1ddd7", - "md5": "770a546d35074f1dec7d9eeb2b400782", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/asm/armv4-mont.pl", - "type": "file", - "name": "armv4-mont.pl", - "base_name": "armv4-mont", - "extension": ".pl", - "date": "2017-05-25", - "size": 19690, - "sha1": "b12a1331c10b2d9ec03bfd857e535cfbc79e07cc", - "md5": "57779966b3899c754d080e467aecffb4", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/asm/armv8-mont.pl", - "type": "file", - "name": "armv8-mont.pl", - "base_name": "armv8-mont", - "extension": ".pl", - "date": "2017-05-25", - "size": 36761, - "sha1": "5b4da62a71ebc01f37b5f8bad7e79825170c73d1", - "md5": "13ebd0617fa724ac8b5c6cd9667c68e6", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/asm/bn-586.pl", - "type": "file", - "name": "bn-586.pl", - "base_name": "bn-586", - "extension": ".pl", - "date": "2017-05-25", - "size": 16794, - "sha1": "3be882d57adbc706c9156c895f8790ca3f28af6f", - "md5": "d0f399c0feeba930b90e77a11a5a53c0", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/asm/bn-c64xplus.asm", - "type": "file", - "name": "bn-c64xplus.asm", - "base_name": "bn-c64xplus", - "extension": ".asm", - "date": "2017-05-25", - "size": 10129, - "sha1": "dc0b3ba93030285eadb549f6833f70a7e98aac9d", - "md5": "7e01af712f33c714d734d4f1e5caea4f", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 69.84, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 69.84, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.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": 69.84, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/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 " - ], - "start_line": 9, - "end_line": 10 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/asm/c64xplus-gf2m.pl", - "type": "file", - "name": "c64xplus-gf2m.pl", - "base_name": "c64xplus-gf2m", - "extension": ".pl", - "date": "2017-05-25", - "size": 4091, - "sha1": "cdc4de56b6e8a60f21eb0f67b33f2ed5d385feda", - "md5": "8ca025df74885c1bb3c916bf672d0116", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/asm/co-586.pl", - "type": "file", - "name": "co-586.pl", - "base_name": "co-586", - "extension": ".pl", - "date": "2017-05-25", - "size": 6014, - "sha1": "16b26a5742a2dcf749d62cb1a028bb2a4b27717d", - "md5": "dc3ed1e7802b1d8d8b68856ea225f8ca", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/asm/ia64-mont.pl", - "type": "file", - "name": "ia64-mont.pl", - "base_name": "ia64-mont", - "extension": ".pl", - "date": "2017-05-25", - "size": 26350, - "sha1": "5de7cbe46fe52e6a5d7a712dc8ed4e8d6b18da2c", - "md5": "aaf59f22c6652f45935fc7ff1895434b", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 96.1, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 96.1, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 96.1, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/asm/ia64.S", - "type": "file", - "name": "ia64.S", - "base_name": "ia64", - "extension": ".S", - "date": "2017-05-25", - "size": 45642, - "sha1": "cb5fbb6595820a6f456d916cd13d470f6aefcaa2", - "md5": "ba62c216d00c3960554050c0d97e43d1", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 70.97, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 70.97, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.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": 70.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": 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 " - ], - "start_line": 15, - "end_line": 16 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/asm/mips-mont.pl", - "type": "file", - "name": "mips-mont.pl", - "base_name": "mips-mont", - "extension": ".pl", - "date": "2017-05-25", - "size": 9207, - "sha1": "d5bfb87e7166812544bf1f1d19a98412f9e05624", - "md5": "fd7e2887e1c099f04e3ce3d422cf658d", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/asm/mips.pl", - "type": "file", - "name": "mips.pl", - "base_name": "mips", - "extension": ".pl", - "date": "2017-05-25", - "size": 45730, - "sha1": "276f549469a05448c3be74f66ef58d541b95775a", - "md5": "a55803c2ae50e6fc8dd195f82d19a935", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 70.97, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 70.97, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 70.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": 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 " - ], - "start_line": 11, - "end_line": 12 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/asm/pa-risc2.s", - "type": "file", - "name": "pa-risc2.s", - "base_name": "pa-risc2", - "extension": ".s", - "date": "2017-05-25", - "size": 48919, - "sha1": "de4425a019e5934a960dc7a0aaea376a814e3cd1", - "md5": "2c71c898c465d9ae218d732f5ed2e60f", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/asm/pa-risc2W.s", - "type": "file", - "name": "pa-risc2W.s", - "base_name": "pa-risc2W", - "extension": ".s", - "date": "2017-05-25", - "size": 46995, - "sha1": "c4f9cff4d7f30fc953ab0d799cba8dfaebebda8b", - "md5": "127133ce30f7f7a50cccd1151f0a0c36", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/asm/parisc-mont.pl", - "type": "file", - "name": "parisc-mont.pl", - "base_name": "parisc-mont", - "extension": ".pl", - "date": "2017-05-25", - "size": 27348, - "sha1": "a8282e03d8bad03bef2ac98ca20746bf7002655c", - "md5": "feedeb09de65697bfe45d4a17e640ab1", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 96.1, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 96.1, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 96.1, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/asm/ppc-mont.pl", - "type": "file", - "name": "ppc-mont.pl", - "base_name": "ppc-mont", - "extension": ".pl", - "date": "2017-05-25", - "size": 7950, - "sha1": "676962a37ca5fa91f666c0cdadacf8749544eae4", - "md5": "7e3438064fc728a3c91b0c9a35090eaa", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 96.1, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 96.1, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 96.1, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/asm/ppc.pl", - "type": "file", - "name": "ppc.pl", - "base_name": "ppc", - "extension": ".pl", - "date": "2017-05-25", - "size": 45663, - "sha1": "98aa1a0ff52a59fdb3b8b243667c0aed6a7310ce", - "md5": "3ccd6e68f29f416713762cce8047b393", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/asm/ppc64-mont.pl", - "type": "file", - "name": "ppc64-mont.pl", - "base_name": "ppc64-mont", - "extension": ".pl", - "date": "2017-05-25", - "size": 40493, - "sha1": "d6ab806f193aa17c65d415cefd801c249c55741d", - "md5": "99016aa9a5b005befad44965a1db71ce", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/asm/rsaz-avx2.pl", - "type": "file", - "name": "rsaz-avx2.pl", - "base_name": "rsaz-avx2", - "extension": ".pl", - "date": "2017-05-25", - "size": 54456, - "sha1": "fd60f1565575d8d28cd88f98f32afe6a288d75fa", - "md5": "b562d72f9f6d82e2a115de84dcadc7c3", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 47931, - "sha1": "91e4510bd1b7738c6d27d2044664a29cb2e51fbc", - "md5": "a97f67baedf2a12487a8f0580049d71d", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/asm/s390x-gf2m.pl", - "type": "file", - "name": "s390x-gf2m.pl", - "base_name": "s390x-gf2m", - "extension": ".pl", - "date": "2017-05-25", - "size": 5463, - "sha1": "4646f1d02736eed0296daf033675fd2d0620b8e9", - "md5": "d78f07aa105510c5b065e323309e2fa8", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/asm/s390x-mont.pl", - "type": "file", - "name": "s390x-mont.pl", - "base_name": "s390x-mont", - "extension": ".pl", - "date": "2017-05-25", - "size": 7000, - "sha1": "f7b866551e4237021da876a06479c48e71068da4", - "md5": "9755af1305fd21bad6552250494bac15", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 96.1, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 96.1, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 96.1, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/asm/s390x.S", - "type": "file", - "name": "s390x.S", - "base_name": "s390x", - "extension": ".S", - "date": "2017-05-25", - "size": 13351, - "sha1": "5e67ea7c493b30c39abdc4ecd359ab4f50456fd1", - "md5": "261776f103d2142f9198697934f0b8e0", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/asm/sparct4-mont.pl", - "type": "file", - "name": "sparct4-mont.pl", - "base_name": "sparct4-mont", - "extension": ".pl", - "date": "2017-05-25", - "size": 27929, - "sha1": "76eb2abd632d639ed8726e5fa4da1f349b97a0bd", - "md5": "b9d8d3c6f06ed226417311c15ebc0226", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 78.95, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 78.95, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 78.95, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/asm/sparcv8.S", - "type": "file", - "name": "sparcv8.S", - "base_name": "sparcv8", - "extension": ".S", - "date": "2017-05-25", - "size": 28335, - "sha1": "73008b2b0ed2f269b5f8adb5d76caf63e228bd0d", - "md5": "28e74ed83f1aafd82fef608aa253877c", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/asm/sparcv8plus.S", - "type": "file", - "name": "sparcv8plus.S", - "base_name": "sparcv8plus", - "extension": ".S", - "date": "2017-05-25", - "size": 33288, - "sha1": "015f39a3b81f7db1b365225a7fef1089954c14e7", - "md5": "a58123879057107658529edd9aae744e", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/asm/sparcv9-gf2m.pl", - "type": "file", - "name": "sparcv9-gf2m.pl", - "base_name": "sparcv9-gf2m", - "extension": ".pl", - "date": "2017-05-25", - "size": 4818, - "sha1": "ab9cc3b1eaa6980dac7b29e1059161e8a86bd6ca", - "md5": "b79e61dc54c18b2303133fb745732231", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/asm/sparcv9-mont.pl", - "type": "file", - "name": "sparcv9-mont.pl", - "base_name": "sparcv9-mont", - "extension": ".pl", - "date": "2017-05-25", - "size": 14040, - "sha1": "079db2e8a67db47fbf36a6477288ddc545839281", - "md5": "2159f0c1c6fb2485975d02fcc7c305c4", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 96.1, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 96.1, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 96.1, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/asm/sparcv9a-mont.pl", - "type": "file", - "name": "sparcv9a-mont.pl", - "base_name": "sparcv9a-mont", - "extension": ".pl", - "date": "2017-05-25", - "size": 20965, - "sha1": "5ffa0fa20e108ea3685bbdee00dc4e0f91770daf", - "md5": "46fae0d06289faf47db5694a39206ba9", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 96.1, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 96.1, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 96.1, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/asm/via-mont.pl", - "type": "file", - "name": "via-mont.pl", - "base_name": "via-mont", - "extension": ".pl", - "date": "2017-05-25", - "size": 9367, - "sha1": "d17a9aa3972225e12580054d552b5d607e18029f", - "md5": "0cdb7724ba48da12e5aee7986fb5b301", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 96.1, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 96.1, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 96.1, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/asm/vis3-mont.pl", - "type": "file", - "name": "vis3-mont.pl", - "base_name": "vis3-mont", - "extension": ".pl", - "date": "2017-05-25", - "size": 9279, - "sha1": "0181506d12d812dfcbab53fb178af0f15a0a5ba7", - "md5": "6dca2620f0340eeed6176e2be10f85a6", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/asm/x86-gf2m.pl", - "type": "file", - "name": "x86-gf2m.pl", - "base_name": "x86-gf2m", - "extension": ".pl", - "date": "2017-05-25", - "size": 8100, - "sha1": "623f892e7c656c6f15d0fa3a5a019ece8f594a3b", - "md5": "6a3db558215427313dadf4a5ccb97724", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/asm/x86-mont.pl", - "type": "file", - "name": "x86-mont.pl", - "base_name": "x86-mont", - "extension": ".pl", - "date": "2017-05-25", - "size": 17648, - "sha1": "e203972a57fdffed3e58045a9cbbada0552ffbf1", - "md5": "82cacfe99ed146f32775065ea6770d97", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 96.1, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 96.1, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 96.1, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/bn/asm/x86.pl", - "type": "file", - "name": "x86.pl", - "base_name": "x86", - "extension": ".pl", - "date": "2017-05-25", - "size": 996, - "sha1": "fe16a6c5b781fea763d868bcf787949dd6bccee5", - "md5": "dbfbf2fc5fcb5e6e770b80b8ffee6e2d", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 19083, - "sha1": "458fd0c2462eb2a4f97ad4fed4f7a163cfa85765", - "md5": "a48cee8487d3e57c6f70d3a73ae04716", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 51.85, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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.85, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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.85, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Andy Polyakov " - ], - "start_line": 17, - "end_line": 18 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 8917, - "sha1": "0db43f14adc1376e2c02a28ea63a07391a2e4106", - "md5": "4d52aff55f4081960f2e6c709ad340f9", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 31828, - "sha1": "0eb0ffd297b7b815cfe22c5e81d6c0d298562947", - "md5": "993506cab23d94da9f172d4b59865ca4", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 85359, - "sha1": "1f208c01aa7487f2382a7c2443f146e988b35efb", - "md5": "084554c3045ca4f31abf414703bdea8f", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/buffer/buffer.c", - "type": "file", - "name": "buffer.c", - "base_name": "buffer", - "extension": ".c", - "date": "2017-05-25", - "size": 4124, - "sha1": "a7667ef9fef0125f734f46f1cce096d8486793f2", - "md5": "8b456247f683ffbdd35136516e8abfbc", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/buffer/buf_err.c", - "type": "file", - "name": "buf_err.c", - "base_name": "buf_err", - "extension": ".c", - "date": "2017-05-25", - "size": 1152, - "sha1": "40e423d2c9a6ee7e209fc0c0994ac2c9cbf3bd21", - "md5": "820728f2f09b826981bc83c932261deb", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/crypto/buffer/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 64, - "sha1": "54bde9e994b97dde16fce62313ad9199bc9614d5", - "md5": "0f1eaeb41744fbb3c6ae35ec24a714a4", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/camellia/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 480, - "sha1": "949f0c9a72d95eefc9a7cb2eda351995a2570069", - "md5": "f99d88717a3321031ab49b12c950fc71", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/camellia/camellia.c", - "type": "file", - "name": "camellia.c", - "base_name": "camellia", - "extension": ".c", - "date": "2017-05-25", - "size": 27311, - "sha1": "0e3bc2a5793f0f274b3534be4dcde5093f152c3b", - "md5": "10e9b29752efb651314bb88dbe42385f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/camellia/cmll_cbc.c", - "type": "file", - "name": "cmll_cbc.c", - "base_name": "cmll_cbc", - "extension": ".c", - "date": "2017-05-25", - "size": 849, - "sha1": "b510b5db4beeadb5732a5bca510f27fa44258537", - "md5": "2784b6b6acd418bfee3860133b2d141d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/camellia/cmll_cfb.c", - "type": "file", - "name": "cmll_cfb.c", - "base_name": "cmll_cfb", - "extension": ".c", - "date": "2017-05-25", - "size": 1675, - "sha1": "6dc268aade18d9567a058e41bd0b788d78f22cb5", - "md5": "6caf305f780f129fcc691463322e7cce", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/camellia/cmll_ctr.c", - "type": "file", - "name": "cmll_ctr.c", - "base_name": "cmll_ctr", - "extension": ".c", - "date": "2017-05-25", - "size": 863, - "sha1": "a4053c26f5198103e428fcf31fc3d6d4feef0991", - "md5": "db6b7192eee5f567aa3993f8e8b1f7f2", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/camellia/cmll_ecb.c", - "type": "file", - "name": "cmll_ecb.c", - "base_name": "cmll_ecb", - "extension": ".c", - "date": "2017-05-25", - "size": 651, - "sha1": "7eba6da268270adf39d199dd7349108644254416", - "md5": "16be8b4a64824a7bc57ecdf42e81a13b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/camellia/cmll_locl.h", - "type": "file", - "name": "cmll_locl.h", - "base_name": "cmll_locl", - "extension": ".h", - "date": "2017-05-25", - "size": 1850, - "sha1": "dc3da24312fce5ece228db2677b070db9ca832d9", - "md5": "d7e89a362d23a84b8ec3d17e4d2f6cea", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/camellia/cmll_misc.c", - "type": "file", - "name": "cmll_misc.c", - "base_name": "cmll_misc", - "extension": ".c", - "date": "2017-05-25", - "size": 1122, - "sha1": "4823f718de4aa618cb335d916808f50e1b815608", - "md5": "0c1f1d643a7f81fcb300458e4504564e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/camellia/cmll_ofb.c", - "type": "file", - "name": "cmll_ofb.c", - "base_name": "cmll_ofb", - "extension": ".c", - "date": "2017-05-25", - "size": 906, - "sha1": "e227381071f921ab700ff772810deb7939d0acf9", - "md5": "b12f9dd2d4403426c2ed37d873ef97b8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/camellia/asm", - "type": "directory", - "name": "asm", - "base_name": "asm", - "extension": "", - "date": null, - "size": 83142, - "sha1": null, - "md5": null, - "files_count": 3, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/camellia/asm/cmll-x86.pl", - "type": "file", - "name": "cmll-x86.pl", - "base_name": "cmll-x86", - "extension": ".pl", - "date": "2017-05-25", - "size": 33413, - "sha1": "262abb8e49c054997d18a2aed019149579c856f8", - "md5": "dff1a051cee0db21873c488d21ab0bb6", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 26014, - "sha1": "c3f742e43dfbebddb524f5225a7f7b7635f94536", - "md5": "d0e752dcc45dfb4557af4eeb0e84ca4b", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [] - }, - { - "path": "openssl-1.1.0f/crypto/camellia/asm/cmllt4-sparcv9.pl", - "type": "file", - "name": "cmllt4-sparcv9.pl", - "base_name": "cmllt4-sparcv9", - "extension": ".pl", - "date": "2017-05-25", - "size": 23715, - "sha1": "3a9e3d7292db6b0ee77f40fc432732aba2ec6b96", - "md5": "e0cd2d3794d15c7b4540fd63fda02af5", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 78.95, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 78.95, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 78.95, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [] - }, - { - "path": "openssl-1.1.0f/crypto/cast/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 271, - "sha1": "fdf2e2570fb39d0cb7dd6a0516e0cf14df398548", - "md5": "b2c782ebdf8dda21303c1b12abc259e6", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/cast/cast_lcl.h", - "type": "file", - "name": "cast_lcl.h", - "base_name": "cast_lcl", - "extension": ".h", - "date": "2017-05-25", - "size": 7335, - "sha1": "7e5d35beaf9708dc2ad496def6809287c1659c23", - "md5": "c105ad0fa1235b0741374675292327e3", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/cast/cast_s.h", - "type": "file", - "name": "cast_s.h", - "base_name": "cast_s", - "extension": ".h", - "date": "2017-05-25", - "size": 27421, - "sha1": "9e8ad5d342a4c7745cedbc544e9393ee9a6b015e", - "md5": "cfd52bdc72601cc504ca38f188cc27e7", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/cast/c_cfb64.c", - "type": "file", - "name": "c_cfb64.c", - "base_name": "c_cfb64", - "extension": ".c", - "date": "2017-05-25", - "size": 2088, - "sha1": "79a8f929a72217de264109e3f218c6b02667052e", - "md5": "468ffd9511c12cbc68c4266b9ac84ec5", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/cast/c_ecb.c", - "type": "file", - "name": "c_ecb.c", - "base_name": "c_ecb", - "extension": ".c", - "date": "2017-05-25", - "size": 786, - "sha1": "5b230dc8bfe885881ef47322413a1a8f9eb23291", - "md5": "37f416265fcd710117e7a40928c741b3", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/cast/c_enc.c", - "type": "file", - "name": "c_enc.c", - "base_name": "c_enc", - "extension": ".c", - "date": "2017-05-25", - "size": 4095, - "sha1": "05339d54026b15959dcdf47ddc2908d9e02a9030", - "md5": "3ac6b94cf7af9820ed8e1661709f8b23", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/cast/c_ofb64.c", - "type": "file", - "name": "c_ofb64.c", - "base_name": "c_ofb64", - "extension": ".c", - "date": "2017-05-25", - "size": 1586, - "sha1": "2cb81078bebe6bd61a4a486a8b1b3858828c465d", - "md5": "a9dba63ce71972deb97e5f718336abbb", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/cast/c_skey.c", - "type": "file", - "name": "c_skey.c", - "base_name": "c_skey", - "extension": ".c", - "date": "2017-05-25", - "size": 4453, - "sha1": "4a3801aceaef21bd700428cda2cc55f5996ef947", - "md5": "f955a374f2a1c1643d09dd678c1553ff", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/cast/asm", - "type": "directory", - "name": "asm", - "base_name": "asm", - "extension": "", - "date": null, - "size": 5108, - "sha1": null, - "md5": null, - "files_count": 1, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/cast/asm/cast-586.pl", - "type": "file", - "name": "cast-586.pl", - "base_name": "cast-586", - "extension": ".pl", - "date": "2017-05-25", - "size": 5108, - "sha1": "5104b919f71282fc1cc0f6f765ba218dad3ec2f6", - "md5": "099d4d188d52d97760edba2ac59aa7da", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/chacha/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 670, - "sha1": "f5d911f96a2e12a7ca976c9cedd7127ef130ac06", - "md5": "2ce0b42f4cf5a7ecf10683a0b9d7a86b", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/chacha/chacha_enc.c", - "type": "file", - "name": "chacha_enc.c", - "base_name": "chacha_enc", - "extension": ".c", - "date": "2017-05-25", - "size": 3702, - "sha1": "e638a9a64ecedb252b2a9d6ebc06adfd4b880b2e", - "md5": "39fa8aabb028db04445910c7909803b8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [] - }, - { - "path": "openssl-1.1.0f/crypto/chacha/asm", - "type": "directory", - "name": "asm", - "base_name": "asm", - "extension": "", - "date": null, - "size": 202162, - "sha1": null, - "md5": null, - "files_count": 7, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/chacha/asm/chacha-armv4.pl", - "type": "file", - "name": "chacha-armv4.pl", - "base_name": "chacha-armv4", - "extension": ".pl", - "date": "2017-05-25", - "size": 27559, - "sha1": "1f5b64784bb713c75b629de0cac35740459c635a", - "md5": "fe8280017e318be43e1b398a5e421e2d", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/chacha/asm/chacha-armv8.pl", - "type": "file", - "name": "chacha-armv8.pl", - "base_name": "chacha-armv8", - "extension": ".pl", - "date": "2017-05-25", - "size": 26836, - "sha1": "6f8f06ae693f80b355ff2e4ca0e5a1b088817b05", - "md5": "df20c1529c594301c21086b61bdab693", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/chacha/asm/chacha-c64xplus.pl", - "type": "file", - "name": "chacha-c64xplus.pl", - "base_name": "chacha-c64xplus", - "extension": ".pl", - "date": "2017-05-25", - "size": 25899, - "sha1": "d628dc21e77fdd1e66415a8b24ca973e0a54447e", - "md5": "af90968a64c510f04e3d0ad8b5e3c6f0", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/chacha/asm/chacha-ppc.pl", - "type": "file", - "name": "chacha-ppc.pl", - "base_name": "chacha-ppc", - "extension": ".pl", - "date": "2017-05-25", - "size": 23253, - "sha1": "c915316b38ae836a84c56caebb901205c9953720", - "md5": "ac32d0e2bf0b98550d6b27a2b2fc31f3", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/chacha/asm/chacha-s390x.pl", - "type": "file", - "name": "chacha-s390x.pl", - "base_name": "chacha-s390x", - "extension": ".pl", - "date": "2017-05-25", - "size": 8014, - "sha1": "2d01626028507ab40dc4792c989108060c39d44d", - "md5": "ef55aa0816f57dc40c2b21cc94197543", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/chacha/asm/chacha-x86.pl", - "type": "file", - "name": "chacha-x86.pl", - "base_name": "chacha-x86", - "extension": ".pl", - "date": "2017-05-25", - "size": 33790, - "sha1": "64b894be14c60a5674aa4a5a571012b2d4ca8961", - "md5": "2226c31a19052877a8091d3a1e280d2e", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 56811, - "sha1": "52a1411e1490aa22ca38514f20c30946ac5f75c0", - "md5": "a64472a35ebe2a0a9a620328f6ccd538", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/cmac/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 74, - "sha1": "78cc9652682636a6c53f9f884b81e342109fb5d6", - "md5": "ca06eec3439222870bf39f8f8be36a01", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/cmac/cmac.c", - "type": "file", - "name": "cmac.c", - "base_name": "cmac", - "extension": ".c", - "date": "2017-05-25", - "size": 6596, - "sha1": "029b5acbf5e4ba2954f66bffe85d7548ef3102fe", - "md5": "49f4dc4036a1fa6f84c5039d6c485ab7", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/cmac/cm_ameth.c", - "type": "file", - "name": "cm_ameth.c", - "base_name": "cm_ameth", - "extension": ".c", - "date": "2017-05-25", - "size": 1038, - "sha1": "478805ba6838abd6a6e75abaeb72d8e158d5cb7d", - "md5": "aba312ba5250f0bf2649903e0b74a422", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/cmac/cm_pmeth.c", - "type": "file", - "name": "cm_pmeth.c", - "base_name": "cm_pmeth", - "extension": ".c", - "date": "2017-05-25", - "size": 3649, - "sha1": "3efaee70738eaebfffc58e718e4194d1ce7a93b2", - "md5": "e8f95e050a6d4578da705c3d2dc48f26", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/cms/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 217, - "sha1": "34dcdbdb662b534362e2d9a150b5158e174b4120", - "md5": "6646335865ada8fc8778a60c313381e6", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/cms/cms_asn1.c", - "type": "file", - "name": "cms_asn1.c", - "base_name": "cms_asn1", - "extension": ".c", - "date": "2017-05-25", - "size": 17683, - "sha1": "7ad89941caf33fb95a0545be3d23d8202e7cee39", - "md5": "0ab60b381e538488bbf4834805db57cf", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/cms/cms_att.c", - "type": "file", - "name": "cms_att.c", - "base_name": "cms_att", - "extension": ".c", - "date": "2017-05-25", - "size": 4506, - "sha1": "03a3166add336c70c3c003fb64ef41d48139abce", - "md5": "a613a43e60990c47312d5f24b4cddb33", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/cms/cms_cd.c", - "type": "file", - "name": "cms_cd.c", - "base_name": "cms_cd", - "extension": ".c", - "date": "2017-05-25", - "size": 2263, - "sha1": "31db8b334574fbbff5330a99337aed151a939b71", - "md5": "75dd8fb31b43671bf06758f97b39f4e5", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/cms/cms_dd.c", - "type": "file", - "name": "cms_dd.c", - "base_name": "cms_dd", - "extension": ".c", - "date": "2017-05-25", - "size": 2391, - "sha1": "9356ba3ae0e6b5530861db0554af57fb3461abd9", - "md5": "7fa6b94275b237fafc40cbadd6ffce3b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/cms/cms_enc.c", - "type": "file", - "name": "cms_enc.c", - "base_name": "cms_enc", - "extension": ".c", - "date": "2017-05-25", - "size": 6365, - "sha1": "ac8ffe088a5be6306cea49bc0b0a8e774b881e12", - "md5": "ce865ea97b88708ff867950e8e78b5f5", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/cms/cms_env.c", - "type": "file", - "name": "cms_env.c", - "base_name": "cms_env", - "extension": ".c", - "date": "2017-05-25", - "size": 23576, - "sha1": "40506749662219362cec4a95f4781c436e4589d2", - "md5": "0aa9d5999bb2867c944b6940b8151b77", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/cms/cms_err.c", - "type": "file", - "name": "cms_err.c", - "base_name": "cms_err", - "extension": ".c", - "date": "2017-05-25", - "size": 12834, - "sha1": "19aac1ca82b5b65fa1823a83d7bb40264227953b", - "md5": "fdca2fdd34390ad69fc61bf60a62519c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/crypto/cms/cms_ess.c", - "type": "file", - "name": "cms_ess.c", - "base_name": "cms_ess", - "extension": ".c", - "date": "2017-05-25", - "size": 9586, - "sha1": "b572e10fbc5b5f1999c9ed6033ae954597704554", - "md5": "613e480fbed6dc6cd139ce97bfe6edca", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/cms/cms_io.c", - "type": "file", - "name": "cms_io.c", - "base_name": "cms_io", - "extension": ".c", - "date": "2017-05-25", - "size": 2782, - "sha1": "3b797e2b6270bfabd255afa10f28821120c5f868", - "md5": "4887a05a32c04c9ddcd43f73915ed62a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/cms/cms_kari.c", - "type": "file", - "name": "cms_kari.c", - "base_name": "cms_kari", - "extension": ".c", - "date": "2017-05-25", - "size": 12612, - "sha1": "5dc73eccb4e64e63a4ada5f65a879708b1d3d5eb", - "md5": "cd7ba017f5f908e70da2115c23e66751", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/cms/cms_lcl.h", - "type": "file", - "name": "cms_lcl.h", - "base_name": "cms_lcl", - "extension": ".h", - "date": "2017-05-25", - "size": 13721, - "sha1": "7584a7e20412ddb7394865ef46f41308473b8e8e", - "md5": "6a3817c4ef1ce9e4d338a71b4f5e227c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/cms/cms_lib.c", - "type": "file", - "name": "cms_lib.c", - "base_name": "cms_lib", - "extension": ".c", - "date": "2017-05-25", - "size": 15821, - "sha1": "157d41d96f53623b927591f8336043def46b2f0d", - "md5": "ab961d30e4b25b4019835ddf78622456", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/cms/cms_pwri.c", - "type": "file", - "name": "cms_pwri.c", - "base_name": "cms_pwri", - "extension": ".c", - "date": "2017-05-25", - "size": 11537, - "sha1": "c7b9fd87d28e98d10003a9e9ee3dbb22cbeefaa0", - "md5": "27c7b8b0b4320c2978d6da29d43aa9ee", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/cms/cms_sd.c", - "type": "file", - "name": "cms_sd.c", - "base_name": "cms_sd", - "extension": ".c", - "date": "2017-05-25", - "size": 26750, - "sha1": "cc7583989752a9d254a220cfa805562587b9acc4", - "md5": "00f246fd70c04c64f1bc59709acbcc43", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/cms/cms_smime.c", - "type": "file", - "name": "cms_smime.c", - "base_name": "cms_smime", - "extension": ".c", - "date": "2017-05-25", - "size": 23166, - "sha1": "61bcc764126ca95c892c35fd2149bbd79c38b32f", - "md5": "fbb9cde122a7eb37209f5888c3b85819", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/comp/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 97, - "sha1": "8007359b709a91efb54a90f8b1f7b110e5b94254", - "md5": "9090290d29626017501ed93781866969", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/comp/comp_err.c", - "type": "file", - "name": "comp_err.c", - "base_name": "comp_err", - "extension": ".c", - "date": "2017-05-25", - "size": 1415, - "sha1": "7eb2416bc044e5154b471ca79cddf0bf04e32a1f", - "md5": "022c5abecb9c6b15f887ff462f251504", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/crypto/comp/comp_lcl.h", - "type": "file", - "name": "comp_lcl.h", - "base_name": "comp_lcl", - "extension": ".h", - "date": "2017-05-25", - "size": 1074, - "sha1": "25e9b205f73d788f6ebe4b3613314129e697d35e", - "md5": "64f6f337abce3eafc3fc48f2266d1a1b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/comp/comp_lib.c", - "type": "file", - "name": "comp_lib.c", - "base_name": "comp_lib", - "extension": ".c", - "date": "2017-05-25", - "size": 2014, - "sha1": "6643e7e5ad746509a7f76f22eb50794ccd2d1a8c", - "md5": "5d81240dc037cc74a9976573648b97bf", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/comp/c_zlib.c", - "type": "file", - "name": "c_zlib.c", - "base_name": "c_zlib", - "extension": ".c", - "date": "2017-05-25", - "size": 17114, - "sha1": "a1e97b368b1884f83a7adadd0bd575e82470741d", - "md5": "5600af551051829dd3145937b22cdbaa", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/conf/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 144, - "sha1": "88e9310accca7f7febf266150bdac6894a892647", - "md5": "a0874812bc86d331143981994d76c6cf", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/conf/conf_api.c", - "type": "file", - "name": "conf_api.c", - "base_name": "conf_api", - "extension": ".c", - "date": "2017-05-25", - "size": 5481, - "sha1": "dfebde7e4b1ec1baefb12f34d28924ee2f63e77f", - "md5": "17fc95af74f77afa58740beeaff826cb", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/conf/conf_def.c", - "type": "file", - "name": "conf_def.c", - "base_name": "conf_def", - "extension": ".c", - "date": "2017-05-25", - "size": 16683, - "sha1": "5eb281708a4539f7b3b9a9ee7cff69074a8e1326", - "md5": "41f4f4146a6506d5d3dfdceb23b465fb", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/conf/conf_def.h", - "type": "file", - "name": "conf_def.h", - "base_name": "conf_def", - "extension": ".h", - "date": "2017-05-25", - "size": 7538, - "sha1": "249e26de725931dd62e591488a76f436464abb94", - "md5": "818643173d68bc97a0c9bd33d053fde4", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/crypto/conf/conf_err.c", - "type": "file", - "name": "conf_err.c", - "base_name": "conf_err", - "extension": ".c", - "date": "2017-05-25", - "size": 3150, - "sha1": "0be1d17cd62a9d7fd84ee09a5868f55c847432d3", - "md5": "b8cb05f3b67bfae68bf8e9987811e23b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/crypto/conf/conf_lib.c", - "type": "file", - "name": "conf_lib.c", - "base_name": "conf_lib", - "extension": ".c", - "date": "2017-05-25", - "size": 8386, - "sha1": "1960cb17b6712e10b4136bf2421bfa1a7425308c", - "md5": "2f869148a38450313f6d48829e23d095", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/conf/conf_mall.c", - "type": "file", - "name": "conf_mall.c", - "base_name": "conf_mall", - "extension": ".c", - "date": "2017-05-25", - "size": 784, - "sha1": "d84eb7983efefb69d2f1798698b16853fb490688", - "md5": "049c3134af55e166d05b9a32df5d64c8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/conf/conf_mod.c", - "type": "file", - "name": "conf_mod.c", - "base_name": "conf_mod", - "extension": ".c", - "date": "2017-05-25", - "size": 13645, - "sha1": "a5bf9399153d7c0f1810d0217c4e34f30fc48368", - "md5": "ebaeba951facfc0a0ba0f625e89980b2", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/conf/conf_sap.c", - "type": "file", - "name": "conf_sap.c", - "base_name": "conf_sap", - "extension": ".c", - "date": "2017-05-25", - "size": 1630, - "sha1": "818df60b35653575ba1edb119bbe7a5534147665", - "md5": "3fe35ca8d2b3be6ec3eff4d02b34dd5f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/conf/keysets.pl", - "type": "file", - "name": "keysets.pl", - "base_name": "keysets", - "extension": ".pl", - "date": "2017-05-25", - "size": 4936, - "sha1": "5465132247be0f679ff0816b4e08cdd8b872afac", - "md5": "10db201638c60f9ac36985ebf4370b38", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ct/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 173, - "sha1": "133c14b06f809f490791f7ec3afd8b0beac66fd9", - "md5": "e5a316c3661470d91f92a43ca7a6c27d", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/ct/ct_b64.c", - "type": "file", - "name": "ct_b64.c", - "base_name": "ct_b64", - "extension": ".c", - "date": "2017-05-25", - "size": 4197, - "sha1": "a0afda0fcff2e245ac92b5b15767b45ef9c1476d", - "md5": "5ef7b038d625e30d5d8097a17e8bca3d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ct/ct_err.c", - "type": "file", - "name": "ct_err.c", - "base_name": "ct_err", - "extension": ".c", - "date": "2017-05-25", - "size": 3734, - "sha1": "31f40f13d38f68568d3dbfc63de61668002fb35a", - "md5": "28f0151c1129a62846786ef990890d85", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ct/ct_locl.h", - "type": "file", - "name": "ct_locl.h", - "base_name": "ct_locl", - "extension": ".h", - "date": "2017-05-25", - "size": 7893, - "sha1": "b4fd3611558b92dd6c46f3ef5f4eea4b2b085c97", - "md5": "fa2119b4eca84f82d4b7a80b112e3315", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ct/ct_log.c", - "type": "file", - "name": "ct_log.c", - "base_name": "ct_log", - "extension": ".c", - "date": "2017-05-25", - "size": 7386, - "sha1": "60b1aac0f350d5595a35155bda12de970cbe17ed", - "md5": "95b73da2e3a17bdfa09af16f00e93134", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ct/ct_oct.c", - "type": "file", - "name": "ct_oct.c", - "base_name": "ct_oct", - "extension": ".c", - "date": "2017-05-25", - "size": 9778, - "sha1": "c3b2b6d667323d8b70f5423f651f79352b30032b", - "md5": "9e68bb1450ea97b80b89f97bb11f3ce9", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ct/ct_policy.c", - "type": "file", - "name": "ct_policy.c", - "base_name": "ct_policy", - "extension": ".c", - "date": "2017-05-25", - "size": 2461, - "sha1": "113d568feb9111e17033b883f151d6be755d0177", - "md5": "3c65d6869d64dfaf48a700768258677a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ct/ct_prn.c", - "type": "file", - "name": "ct_prn.c", - "base_name": "ct_prn", - "extension": ".c", - "date": "2017-05-25", - "size": 3938, - "sha1": "660ec0d192e54509c3644c2b0856ed317fc2025d", - "md5": "a52fe1d0a911a124aef5cf3d9f5afb9b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ct/ct_sct.c", - "type": "file", - "name": "ct_sct.c", - "base_name": "ct_sct", - "extension": ".c", - "date": "2017-05-25", - "size": 10793, - "sha1": "05be7c29b6d3b10d841006f5f661ccb1116c5859", - "md5": "924c4eda350e2643b5e56a1998e17121", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 7054, - "sha1": "d457d6d812f5219b98ac3f30364cc6d7c884f97c", - "md5": "62bd65b9c27dc490342fdaa8c34cf261", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ct/ct_vfy.c", - "type": "file", - "name": "ct_vfy.c", - "base_name": "ct_vfy", - "extension": ".c", - "date": "2017-05-25", - "size": 3892, - "sha1": "4db77ff9efc6cdfb571e771a9927a9baef8aae01", - "md5": "4caa7f3c4ff56d54f57c8dfb16538540", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ct/ct_x509v3.c", - "type": "file", - "name": "ct_x509v3.c", - "base_name": "ct_x509v3", - "extension": ".c", - "date": "2017-05-25", - "size": 2864, - "sha1": "c9fa37c7c709dbf86139271f1bc30c075eb841b9", - "md5": "849345c6df139b523c73906bdeb8b68b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/des/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 732, - "sha1": "0cf3ffda47b8775b1d727aae6010206bb47857aa", - "md5": "1e981ee961b117c7b73f0fe59b3478b2", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/des/cbc_cksm.c", - "type": "file", - "name": "cbc_cksm.c", - "base_name": "cbc_cksm", - "extension": ".c", - "date": "2017-05-25", - "size": 1642, - "sha1": "b425d1e5aa4a96adab4ebbdd5e921199ab1c09fc", - "md5": "e6d89569c5e2cbfbfc82ca6b42082402", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/des/cbc_enc.c", - "type": "file", - "name": "cbc_enc.c", - "base_name": "cbc_enc", - "extension": ".c", - "date": "2017-05-25", - "size": 423, - "sha1": "71896dd1b7879c409d39b55b1e5e355d1fb1abf8", - "md5": "89789285c2b9596b20476894c166689f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/des/cfb64ede.c", - "type": "file", - "name": "cfb64ede.c", - "base_name": "cfb64ede", - "extension": ".c", - "date": "2017-05-25", - "size": 5532, - "sha1": "c08e3e9bce03a4483f586a870e2772305716d93d", - "md5": "cfc7fc280111f73c9d22f0f94ad810d9", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/des/cfb64enc.c", - "type": "file", - "name": "cfb64enc.c", - "base_name": "cfb64enc", - "extension": ".c", - "date": "2017-05-25", - "size": 2092, - "sha1": "e8cbf8c15ab9468d6ab7c11e4aa459db3bb41ca5", - "md5": "c5bd5bbd0e269c303e01ecc003f09ecc", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/des/cfb_enc.c", - "type": "file", - "name": "cfb_enc.c", - "base_name": "cfb_enc", - "extension": ".c", - "date": "2017-05-25", - "size": 4468, - "sha1": "2921e5953c632e60816e4eb8f5b432b137eff3a3", - "md5": "ed36617e6e63e68946ff4f3e72171522", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/des/des_enc.c", - "type": "file", - "name": "des_enc.c", - "base_name": "des_enc", - "extension": ".c", - "date": "2017-05-25", - "size": 8783, - "sha1": "8d5b096f4c71b8e5f50ecc76da86a81f3ef61707", - "md5": "9c8fc09004f92213e40354738f3a6e9f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/des/des_locl.h", - "type": "file", - "name": "des_locl.h", - "base_name": "des_locl", - "extension": ".h", - "date": "2017-05-25", - "size": 8254, - "sha1": "64d5bb659f9b59ddafbde76254892643c8aaf6fd", - "md5": "eebb5e57041c59da5b14ff8f332af4fc", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/des/ecb3_enc.c", - "type": "file", - "name": "ecb3_enc.c", - "base_name": "ecb3_enc", - "extension": ".c", - "date": "2017-05-25", - "size": 923, - "sha1": "aeaf4c5af43d4108e57ff428745641fd0d6141d6", - "md5": "fab2a9202d0939b0fd3a36c0a6a9875c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/des/ecb_enc.c", - "type": "file", - "name": "ecb_enc.c", - "base_name": "ecb_enc", - "extension": ".c", - "date": "2017-05-25", - "size": 1188, - "sha1": "2c44a00ec90e025e0dc5443f78db4d6ac6c79006", - "md5": "d5a33d0ee14538a1c41d75d4fc9506e3", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/des/fcrypt.c", - "type": "file", - "name": "fcrypt.c", - "base_name": "fcrypt", - "extension": ".c", - "date": "2017-05-25", - "size": 4129, - "sha1": "51d497017cf77ad9519c0ce847dc1f6282320f69", - "md5": "dfaee307ee3293050a59e934387cd4ab", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/des/fcrypt_b.c", - "type": "file", - "name": "fcrypt_b.c", - "base_name": "fcrypt_b", - "extension": ".c", - "date": "2017-05-25", - "size": 1977, - "sha1": "3238d5780357979e6792181de8c4a00cec1e304a", - "md5": "637f0608b9651f15d7bf47368fb3895e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/des/ncbc_enc.c", - "type": "file", - "name": "ncbc_enc.c", - "base_name": "ncbc_enc", - "extension": ".c", - "date": "2017-05-25", - "size": 3022, - "sha1": "422a911e3a4049a8ff135991c9519a9f50f360bb", - "md5": "2e73ac1bb0f28f8276bd74699d11c571", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/des/ofb64ede.c", - "type": "file", - "name": "ofb64ede.c", - "base_name": "ofb64ede", - "extension": ".c", - "date": "2017-05-25", - "size": 1664, - "sha1": "14d641da240bacd0dc9db5bbb41005166bf56b5a", - "md5": "c25e586788369063ebabaf7200520cff", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/des/ofb64enc.c", - "type": "file", - "name": "ofb64enc.c", - "base_name": "ofb64enc", - "extension": ".c", - "date": "2017-05-25", - "size": 1573, - "sha1": "4a331056bc6e2eb15327795e2b0f1eb6f36e4ad0", - "md5": "1db6309b76745bca78419ccf7e0b0635", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/des/ofb_enc.c", - "type": "file", - "name": "ofb_enc.c", - "base_name": "ofb_enc", - "extension": ".c", - "date": "2017-05-25", - "size": 2447, - "sha1": "a360e52df7f87d0751e65dff9b7f064092f8f402", - "md5": "185918c2a928693c049a7dc9244a13b7", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/des/pcbc_enc.c", - "type": "file", - "name": "pcbc_enc.c", - "base_name": "pcbc_enc", - "extension": ".c", - "date": "2017-05-25", - "size": 1996, - "sha1": "d2a8c712ae71d850d7e11cc5aef678477d7e43fe", - "md5": "294124818f5ce99e96c05fae083018ba", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/des/qud_cksm.c", - "type": "file", - "name": "qud_cksm.c", - "base_name": "qud_cksm", - "extension": ".c", - "date": "2017-05-25", - "size": 2445, - "sha1": "9264a12ab2776d03460e43bea4e6b63a9d4cfde4", - "md5": "d60ddcf09ccfefd8f662dc11db353977", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "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": [ - "Vol. No." - ], - "start_line": 11, - "end_line": 14 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/des/rand_key.c", - "type": "file", - "name": "rand_key.c", - "base_name": "rand_key", - "extension": ".c", - "date": "2017-05-25", - "size": 611, - "sha1": "dc5577dadb8bdbf2c93c78e03977dc5896bb07af", - "md5": "ebca1b20b83525b4c635f32bcf80d31a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/des/rpc_des.h", - "type": "file", - "name": "rpc_des.h", - "base_name": "rpc_des", - "extension": ".h", - "date": "2017-05-25", - "size": 2769, - "sha1": "21ff29694fcc87d425aa5a2268c46a0c7f067b75", - "md5": "7d003045b036662331730725911045da", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [] - }, - { - "path": "openssl-1.1.0f/crypto/des/rpc_enc.c", - "type": "file", - "name": "rpc_enc.c", - "base_name": "rpc_enc", - "extension": ".c", - "date": "2017-05-25", - "size": 979, - "sha1": "4b04a79055d2926d80cbba949cce10e9526f5dc9", - "md5": "15c0ba1ee53ea3ca3d1f751969ca4c2d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/des/set_key.c", - "type": "file", - "name": "set_key.c", - "base_name": "set_key", - "extension": ".c", - "date": "2017-05-25", - "size": 15556, - "sha1": "f46b5f33c40e5c8ca083a2e717e06dff63368bca", - "md5": "8924d0937a55265e2e4469f4f1a4d476", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/des/spr.h", - "type": "file", - "name": "spr.h", - "base_name": "spr", - "extension": ".h", - "date": "2017-05-25", - "size": 8357, - "sha1": "03dcc3b1113733fc28dc1336f63fc1deeadfdd26", - "md5": "5f2514c495e32dd67f4cccd7f6ecafaf", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/des/str2key.c", - "type": "file", - "name": "str2key.c", - "base_name": "str2key", - "extension": ".c", - "date": "2017-05-25", - "size": 2954, - "sha1": "3c3d52ac477916952b623221b11bb481dd13dd7c", - "md5": "ee2279c91b60d3e86f3ebd19a10f3f3b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/des/xcbc_enc.c", - "type": "file", - "name": "xcbc_enc.c", - "base_name": "xcbc_enc", - "extension": ".c", - "date": "2017-05-25", - "size": 3006, - "sha1": "57c03eb23d23e44275227fd623c56600342e5573", - "md5": "a8c25cf9f4cea636141fdd82a73fbdb4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/des/asm", - "type": "directory", - "name": "asm", - "base_name": "asm", - "extension": "", - "date": null, - "size": 83612, - "sha1": null, - "md5": null, - "files_count": 5, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/des/asm/crypt586.pl", - "type": "file", - "name": "crypt586.pl", - "base_name": "crypt586", - "extension": ".pl", - "date": "2017-05-25", - "size": 4633, - "sha1": "280ba9e4be531882ca75cd906da1a309e36952fe", - "md5": "d8040f21fa13108c3091b785f4493e60", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/des/asm/des-586.pl", - "type": "file", - "name": "des-586.pl", - "base_name": "des-586", - "extension": ".pl", - "date": "2017-05-25", - "size": 14925, - "sha1": "036cad40581751a6ff9a305113210478bff46475", - "md5": "6657e4e150a90eb90ccea8bfddc795fc", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/des/asm/desboth.pl", - "type": "file", - "name": "desboth.pl", - "base_name": "desboth", - "extension": ".pl", - "date": "2017-05-25", - "size": 1695, - "sha1": "06c023bd2cbf0f8da21ec3a7784d471f1466bfdf", - "md5": "8ed0a4586abdd770e05507f8ffdde92a", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/des/asm/dest4-sparcv9.pl", - "type": "file", - "name": "dest4-sparcv9.pl", - "base_name": "dest4-sparcv9", - "extension": ".pl", - "date": "2017-05-25", - "size": 15634, - "sha1": "2045e3470f296d55529f880cf561a96e581adaa4", - "md5": "65d191aed2ea65dfa6f44527f48528d3", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 78.95, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 78.95, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 78.95, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [] - }, - { - "path": "openssl-1.1.0f/crypto/des/asm/des_enc.m4", - "type": "file", - "name": "des_enc.m4", - "base_name": "des_enc", - "extension": ".m4", - "date": "2017-05-25", - "size": 46725, - "sha1": "2f70dee7bb9cba1b9e8ec4b758df4849e49168bd", - "md5": "3ea8a8eec8addbc6b0f33a51b2fb13a6", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/crypto/dh/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 195, - "sha1": "6c262a217359337f781a53877846bb3371e44f7b", - "md5": "c32bfb61feda35b08490635e76028c13", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/dh/dh1024.pem", - "type": "file", - "name": "dh1024.pem", - "base_name": "dh1024", - "extension": ".pem", - "date": "2017-05-25", - "size": 245, - "sha1": "da4ca87ebe296b9a3da0ce36416425cb28b4ec1c", - "md5": "b0096a85178a06119c05867670572313", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/dh/dh192.pem", - "type": "file", - "name": "dh192.pem", - "base_name": "dh192", - "extension": ".pem", - "date": "2017-05-25", - "size": 103, - "sha1": "27f1581407a9ba4c0f209226c7cfb8d46e8cd717", - "md5": "e373b4cac0facb8b1f5f2955a2c92693", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/dh/dh2048.pem", - "type": "file", - "name": "dh2048.pem", - "base_name": "dh2048", - "extension": ".pem", - "date": "2017-05-25", - "size": 848, - "sha1": "70de2a72fd6288024189d43c0797c2fbbd4dfc6d", - "md5": "8a7193ec85c2baecccf862f109ddce6f", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/dh/dh4096.pem", - "type": "file", - "name": "dh4096.pem", - "base_name": "dh4096", - "extension": ".pem", - "date": "2017-05-25", - "size": 770, - "sha1": "770c50e94578ac0e2b97c7d77796d28c23013f1c", - "md5": "85b04fff1538d2eb247db6841c95f935", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/dh/dh512.pem", - "type": "file", - "name": "dh512.pem", - "base_name": "dh512", - "extension": ".pem", - "date": "2017-05-25", - "size": 156, - "sha1": "08a827918953f1c173a6b923113e40acf48257f5", - "md5": "4567f6709f7a315c2dbbc28dc797f62a", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/dh/dh_ameth.c", - "type": "file", - "name": "dh_ameth.c", - "base_name": "dh_ameth", - "extension": ".c", - "date": "2017-05-25", - "size": 22140, - "sha1": "b6eef1b02742be51ec705af8fa42feebb057c00e", - "md5": "d18fdc4859b3f020557b03db99c3f01e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/dh/dh_asn1.c", - "type": "file", - "name": "dh_asn1.c", - "base_name": "dh_asn1", - "extension": ".c", - "date": "2017-05-25", - "size": 3694, - "sha1": "da44f28d29aad17ca9764aaaa980ceee4a99ffdb", - "md5": "c91e9a00899d78b73b48357bde6be41d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/dh/dh_check.c", - "type": "file", - "name": "dh_check.c", - "base_name": "dh_check", - "extension": ".c", - "date": "2017-05-25", - "size": 4597, - "sha1": "730a24bd0822e91d3c33a9052269036d82ef467f", - "md5": "4d600154b927b260c9eeac498e47374e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/dh/dh_depr.c", - "type": "file", - "name": "dh_depr.c", - "base_name": "dh_depr", - "extension": ".c", - "date": "2017-05-25", - "size": 1178, - "sha1": "3f72890c600a97c489d7ef2de6cb931226c0f186", - "md5": "570a83b76fc96cb360746e3523defba7", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/dh/dh_err.c", - "type": "file", - "name": "dh_err.c", - "base_name": "dh_err", - "extension": ".c", - "date": "2017-05-25", - "size": 2812, - "sha1": "cb9f774720e51e87bbd9f180de00ebd8ff397c59", - "md5": "5a317e8fc5a9abc036aae8a06636511f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/crypto/dh/dh_gen.c", - "type": "file", - "name": "dh_gen.c", - "base_name": "dh_gen", - "extension": ".c", - "date": "2017-05-25", - "size": 3915, - "sha1": "3ed3a4b5df0e66d3a5852e722f993572f12b52a3", - "md5": "17f8bbb9089362d56e16610dd7b950e4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/dh/dh_kdf.c", - "type": "file", - "name": "dh_kdf.c", - "base_name": "dh_kdf", - "extension": ".c", - "date": "2017-05-25", - "size": 4331, - "sha1": "124efd88350255131cd472ec6c1aa0591857ecd0", - "md5": "06bb739206b3dfd52106e65b5c65da14", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/dh/dh_key.c", - "type": "file", - "name": "dh_key.c", - "base_name": "dh_key", - "extension": ".c", - "date": "2017-05-25", - "size": 5257, - "sha1": "f7136f88c46d6a67624e9fef86453d0e2037a756", - "md5": "a6e096dd42aef3bd9c6639cdcbd786ca", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/dh/dh_lib.c", - "type": "file", - "name": "dh_lib.c", - "base_name": "dh_lib", - "extension": ".c", - "date": "2017-05-25", - "size": 5884, - "sha1": "c785d0299dba31ce752a926fe6ff7df317964a98", - "md5": "340d82bd5a1a64ea0ba78cd7d065fe82", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/dh/dh_locl.h", - "type": "file", - "name": "dh_locl.h", - "base_name": "dh_locl", - "extension": ".h", - "date": "2017-05-25", - "size": 1634, - "sha1": "da71417a785c935cb80c5e82ad560cfc7b85b22c", - "md5": "cdc8735e8cf4d926631ee9dcf7c81b53", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/dh/dh_meth.c", - "type": "file", - "name": "dh_meth.c", - "base_name": "dh_meth", - "extension": ".c", - "date": "2017-05-25", - "size": 3617, - "sha1": "cb3308d96f6f388671bcd48475935a6cfab6893d", - "md5": "3406d11972ecc97082fc903d1682d8ce", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/dh/dh_pmeth.c", - "type": "file", - "name": "dh_pmeth.c", - "base_name": "dh_pmeth", - "extension": ".c", - "date": "2017-05-25", - "size": 12020, - "sha1": "b7adced9029ff8580e84ca52cd9f698f4805a386", - "md5": "21a9d89390e066f4f35766ed57dc7140", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/dh/dh_prn.c", - "type": "file", - "name": "dh_prn.c", - "base_name": "dh_prn", - "extension": ".c", - "date": "2017-05-25", - "size": 771, - "sha1": "ed0cf6080236b0f2856c6989440cd68496109efb", - "md5": "9a6459ba7f89db4830eb256c52789b77", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/dh/dh_rfc5114.c", - "type": "file", - "name": "dh_rfc5114.c", - "base_name": "dh_rfc5114", - "extension": ".c", - "date": "2017-05-25", - "size": 1122, - "sha1": "acf71ac54bbea59bad00c9b34c42ab77f074d2a3", - "md5": "6af97ea36accb72e5448d179e0c32398", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/dsa/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 214, - "sha1": "e807066ce5b2e244ea92cbfaa03f560a18c7b37f", - "md5": "27a621fb0039fdc2b38472d3c4cabc59", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/dsa/dsa_ameth.c", - "type": "file", - "name": "dsa_ameth.c", - "base_name": "dsa_ameth", - "extension": ".c", - "date": "2017-05-25", - "size": 13830, - "sha1": "66b25d70ab1ee1d76781b0c94413863c619b9c8e", - "md5": "81446ff9f74ed49fad1de1cc95d48346", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/dsa/dsa_asn1.c", - "type": "file", - "name": "dsa_asn1.c", - "base_name": "dsa_asn1", - "extension": ".c", - "date": "2017-05-25", - "size": 4160, - "sha1": "f87bca9f4362cfab59bdf75a9b648c1f7eac63fa", - "md5": "0327baedcff19cc4a58ace204232ebac", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/dsa/dsa_depr.c", - "type": "file", - "name": "dsa_depr.c", - "base_name": "dsa_depr", - "extension": ".c", - "date": "2017-05-25", - "size": 1651, - "sha1": "3442e6c77df1a1d5692a2e769ce4d50d0730b8b5", - "md5": "b1be2f0eb795c690b8c092f725219650", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/dsa/dsa_err.c", - "type": "file", - "name": "dsa_err.c", - "base_name": "dsa_err", - "extension": ".c", - "date": "2017-05-25", - "size": 2995, - "sha1": "6da7847cb7cca3bec9237886ba1f79f720c1ecdc", - "md5": "ed962eecb185a04f31b01d34358faf2f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/crypto/dsa/dsa_gen.c", - "type": "file", - "name": "dsa_gen.c", - "base_name": "dsa_gen", - "extension": ".c", - "date": "2017-05-25", - "size": 16564, - "sha1": "0ad381ef95bd426ac5da35b377e4db2959ddc082", - "md5": "6327b07ce70c23f9884c6acc073b9fdc", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/dsa/dsa_key.c", - "type": "file", - "name": "dsa_key.c", - "base_name": "dsa_key", - "extension": ".c", - "date": "2017-05-25", - "size": 1822, - "sha1": "6496dde9862e978864b0c96f58c7ac20f65dd78f", - "md5": "729c07d5d2623065c9ae16f9e8f852da", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/dsa/dsa_lib.c", - "type": "file", - "name": "dsa_lib.c", - "base_name": "dsa_lib", - "extension": ".c", - "date": "2017-05-25", - "size": 7870, - "sha1": "1e303f93dd15e955449ee1858ec443438757b4a5", - "md5": "cfe9236c33a5c2f77c2850e524a6ae84", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/dsa/dsa_locl.h", - "type": "file", - "name": "dsa_locl.h", - "base_name": "dsa_locl", - "extension": ".h", - "date": "2017-05-25", - "size": 2884, - "sha1": "6c6cd4a7746f3c57e8509316198e7bf5342a1c32", - "md5": "12841b27a35bac02427e09fc7ace5998", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/dsa/dsa_meth.c", - "type": "file", - "name": "dsa_meth.c", - "base_name": "dsa_meth", - "extension": ".c", - "date": "2017-05-25", - "size": 5152, - "sha1": "d8a68669db7e50742dc89b87bee315c85fd54fc3", - "md5": "77d02f1ab56a2dba38078bb8f30fe223", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 69.84, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 69.84, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 69.84, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": 92.86, - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/dsa/dsa_ossl.c", - "type": "file", - "name": "dsa_ossl.c", - "base_name": "dsa_ossl", - "extension": ".c", - "date": "2017-05-25", - "size": 9030, - "sha1": "6c14d009add6e035731f80e53217ac4c4f1884d6", - "md5": "d7b8eda06314e42816f7d7dfea8ffe91", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/dsa/dsa_pmeth.c", - "type": "file", - "name": "dsa_pmeth.c", - "base_name": "dsa_pmeth", - "extension": ".c", - "date": "2017-05-25", - "size": 7073, - "sha1": "11a2b74b3541bcf6a58b419b94dec11cc24809d3", - "md5": "a8d2eb11bb069b5f43a23b5907403e09", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/dsa/dsa_prn.c", - "type": "file", - "name": "dsa_prn.c", - "base_name": "dsa_prn", - "extension": ".c", - "date": "2017-05-25", - "size": 1626, - "sha1": "40dc111a508dda3ba7ebbcea1f3faf978fe1191e", - "md5": "dc4842316b95e16e8d0dc896f59f22e0", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/dsa/dsa_sign.c", - "type": "file", - "name": "dsa_sign.c", - "base_name": "dsa_sign", - "extension": ".c", - "date": "2017-05-25", - "size": 748, - "sha1": "4e56262bcc7d72151eb1d4b458373da0aa84cc95", - "md5": "1abe03762dfb2b88b02d37ffee4de305", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/dsa/dsa_vrf.c", - "type": "file", - "name": "dsa_vrf.c", - "base_name": "dsa_vrf", - "extension": ".c", - "date": "2017-05-25", - "size": 627, - "sha1": "7a85d8fa75d8e0489b38a7c002b16e4d41cc5b28", - "md5": "7cbda96778b89fe594f10ef4f3d441fe", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/dso/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 142, - "sha1": "ab4fe924365881d653c114fa2287b0496a2fd2e3", - "md5": "10b8908e3f32b819ef5941bd2fe860dc", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/dso/dso_dl.c", - "type": "file", - "name": "dso_dl.c", - "base_name": "dso_dl", - "extension": ".c", - "date": "2017-05-25", - "size": 8335, - "sha1": "84fdd5c6208db2f1e4a1be73f293d598e42cd88a", - "md5": "edbefd1a676d966b0f787a6dfb4b8e4f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/dso/dso_dlfcn.c", - "type": "file", - "name": "dso_dlfcn.c", - "base_name": "dso_dlfcn", - "extension": ".c", - "date": "2017-05-25", - "size": 10173, - "sha1": "a779db0a631e45eb047c4f12c2035d88db68765d", - "md5": "aad4589f5081de409b34a2c8eb560c4b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/dso/dso_err.c", - "type": "file", - "name": "dso_err.c", - "base_name": "dso_err", - "extension": ".c", - "date": "2017-05-25", - "size": 3958, - "sha1": "fda42d27407e1846402b4fbe17296c1936c98f82", - "md5": "49163ba0635e32833fa3f588436a4330", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/crypto/dso/dso_lib.c", - "type": "file", - "name": "dso_lib.c", - "base_name": "dso_lib", - "extension": ".c", - "date": "2017-05-25", - "size": 9502, - "sha1": "f9d47e43337c6842a9154dc0221ec098760bb24a", - "md5": "c5a558a363182f16e62cfcfa9d1e88f9", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/dso/dso_locl.h", - "type": "file", - "name": "dso_locl.h", - "base_name": "dso_locl", - "extension": ".h", - "date": "2017-05-25", - "size": 4108, - "sha1": "e325cf958f06cb2c3707901b3166ac8e8ca8dab3", - "md5": "6c0209f52fd34bdf3c37caee3302d1ec", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/dso/dso_openssl.c", - "type": "file", - "name": "dso_openssl.c", - "base_name": "dso_openssl", - "extension": ".c", - "date": "2017-05-25", - "size": 617, - "sha1": "bfe29379048b6236994d193e09a963a7aab4e2f3", - "md5": "cd88118106d0b4b1f4b676116845d3d9", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/dso/dso_vms.c", - "type": "file", - "name": "dso_vms.c", - "base_name": "dso_vms", - "extension": ".c", - "date": "2017-05-25", - "size": 14554, - "sha1": "3b807b837b48412fe950afb2787064110b2285aa", - "md5": "ba10dde083cc2aebe0f0b854390b38c3", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/dso/dso_win32.c", - "type": "file", - "name": "dso_win32.c", - "base_name": "dso_win32", - "extension": ".c", - "date": "2017-05-25", - "size": 17055, - "sha1": "c3dd426b440cdc3c1ad497c78fd10fb02190a296", - "md5": "3f8cf61066a0ea7d619445c8ea3372f2", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ec/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 1250, - "sha1": "844c873c5fcd3645df70acf2b3ba243e1b38124c", - "md5": "1a9e64b42cb555a0d228f09c687961a0", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/ec/curve25519.c", - "type": "file", - "name": "curve25519.c", - "base_name": "curve25519", - "extension": ".c", - "date": "2017-05-25", - "size": 141706, - "sha1": "df940d851f6258cbb0e824aa60c87c16c27c2bf5", - "md5": "f860fbf70b09c1d1686992f9745ab57e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ec/ec2_mult.c", - "type": "file", - "name": "ec2_mult.c", - "base_name": "ec2_mult", - "extension": ".c", - "date": "2017-05-25", - "size": 11852, - "sha1": "15edbbc63e52362e1ae094ca228ca5fea4758920", - "md5": "95ea4a8036359d0e1b307b4b4a8e6d0c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 56.76, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 56.76, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 56.76, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ec/ec2_oct.c", - "type": "file", - "name": "ec2_oct.c", - "base_name": "ec2_oct", - "extension": ".c", - "date": "2017-05-25", - "size": 10262, - "sha1": "b636a36aea57bef30b05cd41bfea5fdd8a3c471c", - "md5": "8f8357e7d577708f04550d324483aefe", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ec/ec2_smpl.c", - "type": "file", - "name": "ec2_smpl.c", - "base_name": "ec2_smpl", - "extension": ".c", - "date": "2017-05-25", - "size": 19977, - "sha1": "cb28d7d992357bb1e0543ab0c721c01b50ac4163", - "md5": "64b560c744e5b842fc541cabca12227a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 56.76, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 56.76, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 56.76, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ec/ecdh_kdf.c", - "type": "file", - "name": "ecdh_kdf.c", - "base_name": "ecdh_kdf", - "extension": ".c", - "date": "2017-05-25", - "size": 2029, - "sha1": "da8bdef3563382e439fd6fe70deead1a4035d274", - "md5": "f1de0fc9898cb1af22d10849818f6647", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ec/ecdh_ossl.c", - "type": "file", - "name": "ecdh_ossl.c", - "base_name": "ecdh_ossl", - "extension": ".c", - "date": "2017-05-25", - "size": 4054, - "sha1": "25bdd5bd4709e5ea4729e6747882e2be2dcd5946", - "md5": "ef7e759f549ac753280fdbadddb2dcc4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 56.76, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 56.76, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 56.76, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ec/ecdsa_ossl.c", - "type": "file", - "name": "ecdsa_ossl.c", - "base_name": "ecdsa_ossl", - "extension": ".c", - "date": "2017-05-25", - "size": 14062, - "sha1": "2916fd6d145e6c7d85c124747bcbaa01ea2938b9", - "md5": "38a9ce972ef6723428f99933ea9c2677", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ec/ecdsa_sign.c", - "type": "file", - "name": "ecdsa_sign.c", - "base_name": "ecdsa_sign", - "extension": ".c", - "date": "2017-05-25", - "size": 1809, - "sha1": "82f94b65a3a673f9d5c4475b82c5b557f059ba92", - "md5": "e53103cb721bf5d9c26bc31af363974e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ec/ecdsa_vrf.c", - "type": "file", - "name": "ecdsa_vrf.c", - "base_name": "ecdsa_vrf", - "extension": ".c", - "date": "2017-05-25", - "size": 1279, - "sha1": "aeab859289f777b2180adf1c7a8d8b0a98faf35c", - "md5": "8e72b834489618e64342b96f177719dd", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ec/eck_prn.c", - "type": "file", - "name": "eck_prn.c", - "base_name": "eck_prn", - "extension": ".c", - "date": "2017-05-25", - "size": 7965, - "sha1": "0298aeef20f7a60bf96417cffaa6f177e299a09c", - "md5": "7490f96dbd6599f305105d8430b64374", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ec/ecp_mont.c", - "type": "file", - "name": "ecp_mont.c", - "base_name": "ecp_mont", - "extension": ".c", - "date": "2017-05-25", - "size": 6727, - "sha1": "7ac0b4fb0620069397b5a7e99785149d6ab075d5", - "md5": "94ebc99d217f26fd77fb9c3f81b11495", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ec/ecp_nist.c", - "type": "file", - "name": "ecp_nist.c", - "base_name": "ecp_nist", - "extension": ".c", - "date": "2017-05-25", - "size": 4860, - "sha1": "fa0112e8511e5aa6a3ea0f8db31171f40ed0eedb", - "md5": "e8002c2a7a42169f2bc55dcc560a295d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ec/ecp_nistp224.c", - "type": "file", - "name": "ecp_nistp224.c", - "base_name": "ecp_nistp224", - "extension": ".c", - "date": "2017-05-25", - "size": 60179, - "sha1": "d7548e0a3ea6e8ea9d2f9b2eb507b31c7f3ecab1", - "md5": "cd3c737389c3581c70b2f72e54409494", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "apache-2.0", - "score": 65.65, - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ec/ecp_nistp256.c", - "type": "file", - "name": "ecp_nistp256.c", - "base_name": "ecp_nistp256", - "extension": ".c", - "date": "2017-05-25", - "size": 74960, - "sha1": "6f0ff97f2fb8e8d87ebd628f8a38989473c2cf21", - "md5": "6d221d4f6391fa1fcbb3c3c78cfd8857", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "apache-2.0", - "score": 65.65, - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ec/ecp_nistp521.c", - "type": "file", - "name": "ecp_nistp521.c", - "base_name": "ecp_nistp521", - "extension": ".c", - "date": "2017-05-25", - "size": 71773, - "sha1": "ba449a6eb6ad0886eacf250cd703ed70c1d63040", - "md5": "0c8c98db7e4260cfc46b091dbb761f88", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "apache-2.0", - "score": 65.65, - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ec/ecp_nistputil.c", - "type": "file", - "name": "ecp_nistputil.c", - "base_name": "ecp_nistputil", - "extension": ".c", - "date": "2017-05-25", - "size": 10022, - "sha1": "c3c015d4bbea466ca4499edd57a4db4184afd077", - "md5": "a5d857b2ea7c341d411121d7e450d00f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "apache-2.0", - "score": 65.65, - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ec/ecp_nistz256.c", - "type": "file", - "name": "ecp_nistz256.c", - "base_name": "ecp_nistz256", - "extension": ".c", - "date": "2017-05-25", - "size": 53858, - "sha1": "32c7d4dc83fa67316d0cb89da966110e0e00f4b1", - "md5": "d096d311986ccc648b18a610fd9cc7fe", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "apache-2.0", - "score": 65.65, - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 617448, - "sha1": "ebfce55249bc24ba0e9bcea7fcd502f13a52ae3f", - "md5": "5a298d7c9b9916e3f6edec1d82d5adb0", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ec/ecp_oct.c", - "type": "file", - "name": "ecp_oct.c", - "base_name": "ecp_oct", - "extension": ".c", - "date": "2017-05-25", - "size": 10622, - "sha1": "fb25378a437e4002a2a9b320a7527864294a4b96", - "md5": "ab71c154fe1b08458610476a5dfaf787", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ec/ecp_smpl.c", - "type": "file", - "name": "ecp_smpl.c", - "base_name": "ecp_smpl", - "extension": ".c", - "date": "2017-05-25", - "size": 37282, - "sha1": "2671142589ba17022b7b6bc6a3f39cf0dacb9ad9", - "md5": "b112fc2354fc3fe57c1097ccbb142069", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ec/ecx_meth.c", - "type": "file", - "name": "ecx_meth.c", - "base_name": "ecx_meth", - "extension": ".c", - "date": "2017-05-25", - "size": 9567, - "sha1": "55c82aaddbe83bea5795297b28075e41522f7c65", - "md5": "da8795919f3b709b413415e596ee092e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ec/ec_ameth.c", - "type": "file", - "name": "ec_ameth.c", - "base_name": "ec_ameth", - "extension": ".c", - "date": "2017-05-25", - "size": 23772, - "sha1": "2b5d0039db246fb40b053dce862553e6e330e981", - "md5": "fdbf5a55d4785da762fb6745cb3ae4bf", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ec/ec_asn1.c", - "type": "file", - "name": "ec_asn1.c", - "base_name": "ec_asn1", - "extension": ".c", - "date": "2017-05-25", - "size": 36576, - "sha1": "5eed42982a2ca41ab48182ce28ed509cf073a992", - "md5": "03bafdc25ab1116ad176000a1ab86b7e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ec/ec_check.c", - "type": "file", - "name": "ec_check.c", - "base_name": "ec_check", - "extension": ".c", - "date": "2017-05-25", - "size": 1937, - "sha1": "be9a9fefaae4fb52fab78732b53b0f92b33fb1e7", - "md5": "2baeed94f47775a219f180993151e04c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ec/ec_curve.c", - "type": "file", - "name": "ec_curve.c", - "base_name": "ec_curve", - "extension": ".c", - "date": "2017-05-25", - "size": 136350, - "sha1": "ac960858565a230bbd1eaaa4906c31eb7c791051", - "md5": "769e221542e61e85a6158fe8bc29f25c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 58.33, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 58.33, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 58.33, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ec/ec_cvt.c", - "type": "file", - "name": "ec_cvt.c", - "base_name": "ec_cvt", - "extension": ".c", - "date": "2017-05-25", - "size": 3179, - "sha1": "954945377f828b3c26cd1bfca3eebea2d1163d0d", - "md5": "f5fb439a929c1ea10f173ed276b9e257", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 58.33, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 58.33, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 58.33, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ec/ec_err.c", - "type": "file", - "name": "ec_err.c", - "base_name": "ec_err", - "extension": ".c", - "date": "2017-05-25", - "size": 15563, - "sha1": "bf48e872d7815427cc914ab1c73d57e4c580ffa4", - "md5": "44f53bc986aa25d5ca2d2dbca1bed703", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ec/ec_key.c", - "type": "file", - "name": "ec_key.c", - "base_name": "ec_key", - "extension": ".c", - "date": "2017-05-25", - "size": 17110, - "sha1": "8c4ca51f13459d6e2d617fc32fc694dc9fc530f4", - "md5": "fc64fe4999162ef9ab8acc50a42beb20", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ec/ec_kmeth.c", - "type": "file", - "name": "ec_kmeth.c", - "base_name": "ec_kmeth", - "extension": ".c", - "date": "2017-05-25", - "size": 10569, - "sha1": "47017453d7e6b0c23195443f3efa9fd5f6d3cf57", - "md5": "ce9e43faced769115f3cdec3b774147d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ec/ec_lcl.h", - "type": "file", - "name": "ec_lcl.h", - "base_name": "ec_lcl", - "extension": ".h", - "date": "2017-05-25", - "size": 29817, - "sha1": "9f0b5389b666c44a4cc687aa59958a4356f84256", - "md5": "0d474a4c3926217df2c3d10edccfaa0c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 58.33, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 58.33, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 58.33, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ec/ec_lib.c", - "type": "file", - "name": "ec_lib.c", - "base_name": "ec_lib", - "extension": ".c", - "date": "2017-05-25", - "size": 27774, - "sha1": "2a92e56ffefeb31e04871f8cee774ae8cacdf7be", - "md5": "4b52542dd1441cebab2c68318e84d7c9", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ec/ec_mult.c", - "type": "file", - "name": "ec_mult.c", - "base_name": "ec_mult", - "extension": ".c", - "date": "2017-05-25", - "size": 21334, - "sha1": "2e28e27b89e77aa1c4ad05f5db9ad1499fd2f057", - "md5": "2989830d3a132d716958e0d7c0ce4b7b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ec/ec_oct.c", - "type": "file", - "name": "ec_oct.c", - "base_name": "ec_oct", - "extension": ".c", - "date": "2017-05-25", - "size": 5968, - "sha1": "9e7fc5c1a4eab065ac0300076c01f5a0a0e2f354", - "md5": "758cb8c219b5d8cca433151de835adbb", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ec/ec_pmeth.c", - "type": "file", - "name": "ec_pmeth.c", - "base_name": "ec_pmeth", - "extension": ".c", - "date": "2017-05-25", - "size": 12113, - "sha1": "90005879606eb2e67f92daecd43781ca8c7d71bd", - "md5": "572b4420d8b5b03bbaf16ac2bc675173", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ec/ec_print.c", - "type": "file", - "name": "ec_print.c", - "base_name": "ec_print", - "extension": ".c", - "date": "2017-05-25", - "size": 2832, - "sha1": "32a5e4079eff4835145e52d0f82bbfb36bf76f83", - "md5": "5c49cb4460a0c2db6646122ef589706a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ec/asm", - "type": "directory", - "name": "asm", - "base_name": "asm", - "extension": "", - "date": null, - "size": 348710, - "sha1": null, - "md5": null, - "files_count": 6, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 45704, - "sha1": "132eac80c01eb0c0b79dc26909d6cd2aafd17936", - "md5": "f65963d597a634d2b949c1aed5ae35d9", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 38725, - "sha1": "b0f3fb7799e1cb35482106f85278e923dab33207", - "md5": "35810d78a6839257d5fbd661389480d6", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 57858, - "sha1": "d727ac6fc80cc2d5391febf672d6ab68b7a77046", - "md5": "69014a9c201c083fb35724a1ef7ce76b", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "apache-2.0", - "score": 65.65, - "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": 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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 78273, - "sha1": "f3d6278e0cf979f4474287e30150fa42494e7bd6", - "md5": "75c09b0e14087db3fdf2bf1290c6d7fb", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 57331, - "sha1": "5410becec50c553885c28c7837bee2ea63af8e28", - "md5": "2ca812d918ec21a297ef875e6c08204b", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 70819, - "sha1": "194ff4d58af3cbf05368859c2880e86acf257323", - "md5": "6b13a6a7ea2f35d26c6f98d214257bbd", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "apache-2.0", - "score": 65.65, - "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": 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": [] - }, - { - "path": "openssl-1.1.0f/crypto/engine/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 359, - "sha1": "b5885f5876fccbb760e2f74b58f0d1f8d4ceeaff", - "md5": "2dbaafc8b9969e6d077bab96f5aece70", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/engine/eng_all.c", - "type": "file", - "name": "eng_all.c", - "base_name": "eng_all", - "extension": ".c", - "date": "2017-05-25", - "size": 958, - "sha1": "4d3036cda8a7cff8268063976139ffe036454d13", - "md5": "90a4e13ee6dc9a025ebc7e332e4a5370", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/engine/eng_cnf.c", - "type": "file", - "name": "eng_cnf.c", - "base_name": "eng_cnf", - "extension": ".c", - "date": "2017-05-25", - "size": 5689, - "sha1": "045cbd9405af9b18dbabbaaaad62ccd6c3d8c7f0", - "md5": "172f8282ed5b4a2026c1b9ee3302cb7e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/engine/eng_cryptodev.c", - "type": "file", - "name": "eng_cryptodev.c", - "base_name": "eng_cryptodev", - "extension": ".c", - "date": "2017-05-25", - "size": 53706, - "sha1": "2339ac1b64333287634acc39dbaeb7b24dc63982", - "md5": "ca9f4f886ae5dc22c17c57496482379f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [] - }, - { - "path": "openssl-1.1.0f/crypto/engine/eng_ctrl.c", - "type": "file", - "name": "eng_ctrl.c", - "base_name": "eng_ctrl", - "extension": ".c", - "date": "2017-05-25", - "size": 11658, - "sha1": "c9e90aab12644cd1a50ede2cd03b10cbc47a3a8e", - "md5": "7e0c25d9537e2ffb1e8d1f633717e3e0", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/engine/eng_dyn.c", - "type": "file", - "name": "eng_dyn.c", - "base_name": "eng_dyn", - "extension": ".c", - "date": "2017-05-25", - "size": 17590, - "sha1": "15e5414b62b10778b505ab73a8e1ca2c73bf0e47", - "md5": "a3244d6fa227e144968436c379e331a2", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/engine/eng_err.c", - "type": "file", - "name": "eng_err.c", - "base_name": "eng_err", - "extension": ".c", - "date": "2017-05-25", - "size": 5932, - "sha1": "ef7b96c3d29d553959ae7cdafc76e20ffe8c6596", - "md5": "c0e3604c79040baf99472b2a76077404", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/crypto/engine/eng_fat.c", - "type": "file", - "name": "eng_fat.c", - "base_name": "eng_fat", - "extension": ".c", - "date": "2017-05-25", - "size": 3887, - "sha1": "ae986d439b882d14e28c91afcc6a0ce9ee9e4f43", - "md5": "0ebb9f2442f541ef97829ddbf16321c9", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/engine/eng_init.c", - "type": "file", - "name": "eng_init.c", - "base_name": "eng_init", - "extension": ".c", - "date": "2017-05-25", - "size": 3203, - "sha1": "66b186108129e9e95562046f70af7d408b022373", - "md5": "898d4b988f236bff49b05df9e9200bc0", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/engine/eng_int.h", - "type": "file", - "name": "eng_int.h", - "base_name": "eng_int", - "extension": ".h", - "date": "2017-05-25", - "size": 6448, - "sha1": "e3763cb7bf0b765617a4994bea7757055bfe787e", - "md5": "2574e927a7a6b112a8bb3fd2daee00ec", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/engine/eng_lib.c", - "type": "file", - "name": "eng_lib.c", - "base_name": "eng_lib", - "extension": ".c", - "date": "2017-05-25", - "size": 6599, - "sha1": "f97ef371f35ae6e0366ba71f7354b9e5f7eda9f4", - "md5": "00d21e64eb49a096be0a5b8d98739e83", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/engine/eng_list.c", - "type": "file", - "name": "eng_list.c", - "base_name": "eng_list", - "extension": ".c", - "date": "2017-05-25", - "size": 10621, - "sha1": "e4165fbcb711eb502734a80d57cfa392748ca76f", - "md5": "22770f7abf0f62b9c152839b80c13e36", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/engine/eng_openssl.c", - "type": "file", - "name": "eng_openssl.c", - "base_name": "eng_openssl", - "extension": ".c", - "date": "2017-05-25", - "size": 18544, - "sha1": "7fc4150a5b6d0e79cb9fdb659de899203692bef9", - "md5": "a2e5b62140c143de1d5247548305b221", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/engine/eng_pkey.c", - "type": "file", - "name": "eng_pkey.c", - "base_name": "eng_pkey", - "extension": ".c", - "date": "2017-05-25", - "size": 4303, - "sha1": "bda4366af4528fcd291252ebf3f9906a04f689e8", - "md5": "c9064c7a8af0fdfe1bfe70242b0f7b48", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/engine/eng_rdrand.c", - "type": "file", - "name": "eng_rdrand.c", - "base_name": "eng_rdrand", - "extension": ".c", - "date": "2017-05-25", - "size": 2529, - "sha1": "3eaaf4ee60a5a1d5cc1b173255b1d700042bb182", - "md5": "213394c48a9f37e0ef8c12bd254dec89", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/engine/eng_table.c", - "type": "file", - "name": "eng_table.c", - "base_name": "eng_table", - "extension": ".c", - "date": "2017-05-25", - "size": 8721, - "sha1": "f256cd9b01cb4fa89970e6c6982e9affcddb4f8e", - "md5": "20cc4e5fa3cae807725b2a7caf27f5a1", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/engine/README", - "type": "file", - "name": "README", - "base_name": "README", - "extension": "", - "date": "2017-05-25", - "size": 13957, - "sha1": "524d881febbb1708a095d5afcc54d732c342929c", - "md5": "b69f80cfda35400226491c87b7f64224", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/engine/tb_asnmth.c", - "type": "file", - "name": "tb_asnmth.c", - "base_name": "tb_asnmth", - "extension": ".c", - "date": "2017-05-25", - "size": 6113, - "sha1": "076c2daa3107dabc620bf8512e5d98b70adf8721", - "md5": "29eb0a898211bd8542402cdc9c9336bb", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/engine/tb_cipher.c", - "type": "file", - "name": "tb_cipher.c", - "base_name": "tb_cipher", - "extension": ".c", - "date": "2017-05-25", - "size": 2470, - "sha1": "2cb409f06e47f905ba345f107fa542ef002c7213", - "md5": "d9ed8ba20a55dd0f40deadf027b710f5", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/engine/tb_dh.c", - "type": "file", - "name": "tb_dh.c", - "base_name": "tb_dh", - "extension": ".c", - "date": "2017-05-25", - "size": 1800, - "sha1": "d7b4f2b3f0e1a081c9246ac9236018f835e33e40", - "md5": "6ae6bef72d61fdde871f8687cdbf3c7d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/engine/tb_digest.c", - "type": "file", - "name": "tb_digest.c", - "base_name": "tb_digest", - "extension": ".c", - "date": "2017-05-25", - "size": 2462, - "sha1": "35307bd82b5ac7837d6660c30edd56bd5f4f2605", - "md5": "6eeb64958d2ac1dd2516dd801dc7407b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/engine/tb_dsa.c", - "type": "file", - "name": "tb_dsa.c", - "base_name": "tb_dsa", - "extension": ".c", - "date": "2017-05-25", - "size": 1827, - "sha1": "d2123654976f18a78c3b78700984585fffad0822", - "md5": "5fc8b42c5f979f95983ec104a2fc964d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/engine/tb_eckey.c", - "type": "file", - "name": "tb_eckey.c", - "base_name": "tb_eckey", - "extension": ".c", - "date": "2017-05-25", - "size": 1832, - "sha1": "dbb74994e21efb685c4d58577626677fe3b66f33", - "md5": "6cf41d92d662465b6a1b31ebf19048bf", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/engine/tb_pkmeth.c", - "type": "file", - "name": "tb_pkmeth.c", - "base_name": "tb_pkmeth", - "extension": ".c", - "date": "2017-05-25", - "size": 3105, - "sha1": "1992b3c1fc4897873632c4beec27c9892a5812ee", - "md5": "8c00e655f3fb2c3dbeb327737b210903", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/engine/tb_rand.c", - "type": "file", - "name": "tb_rand.c", - "base_name": "tb_rand", - "extension": ".c", - "date": "2017-05-25", - "size": 1854, - "sha1": "c461753a81905544d956c6766db24c4f5cd92f40", - "md5": "cc700a68211ff8194598652c04cd7e66", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/engine/tb_rsa.c", - "type": "file", - "name": "tb_rsa.c", - "base_name": "tb_rsa", - "extension": ".c", - "date": "2017-05-25", - "size": 1827, - "sha1": "ca1022fb8c7c70757e6a1a06f6dd0277e265a19a", - "md5": "b303f902ab8a252ea72d7c3dbb4bd8dd", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/err/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 81, - "sha1": "7ef862d9497f2edefde3d44e8bb7fd775bed230d", - "md5": "85b295ffb128405336fccbbf489d2450", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/err/err.c", - "type": "file", - "name": "err.c", - "base_name": "err", - "extension": ".c", - "date": "2017-05-25", - "size": 21008, - "sha1": "a54ee81a1a3898d9de77972a91514045504bf78a", - "md5": "622cb197d9d8c4269cdd5aaa454f08f7", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/err/err_all.c", - "type": "file", - "name": "err_all.c", - "base_name": "err_all", - "extension": ".c", - "date": "2017-05-25", - "size": 3033, - "sha1": "633d572091e36223d6f5ac8ceb96f7c83af2f1e0", - "md5": "1a51e0583f120fc5c174ce63d4d407a4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/err/err_prn.c", - "type": "file", - "name": "err_prn.c", - "base_name": "err_prn", - "extension": ".c", - "date": "2017-05-25", - "size": 1810, - "sha1": "617bc7c8e556e08e83560f4f42581297e753a699", - "md5": "4c3b08e79238cb1464c040a1963a558a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/err/openssl.ec", - "type": "file", - "name": "openssl.ec", - "base_name": "openssl", - "extension": ".ec", - "date": "2017-05-25", - "size": 4254, - "sha1": "08554e36f5a2e686ec8e4a13ed1c52ceda08bbcf", - "md5": "0310ee6b5722072c81b37649a0e0e849", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/err/README", - "type": "file", - "name": "README", - "base_name": "README", - "extension": "", - "date": "2017-05-25", - "size": 1396, - "sha1": "5b03cb20d789e664683cba17ff394f47f3c11ad8", - "md5": "b677e0f7cb67f87045e47a3d923c9e35", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/bio_b64.c", - "type": "file", - "name": "bio_b64.c", - "base_name": "bio_b64", - "extension": ".c", - "date": "2017-05-25", - "size": 15794, - "sha1": "9785ff2f1e91076bfefd5884dc6810e693f238f9", - "md5": "4f6b9a6a03033449e4dc6f4c3533b7a6", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/bio_enc.c", - "type": "file", - "name": "bio_enc.c", - "base_name": "bio_enc", - "extension": ".c", - "date": "2017-05-25", - "size": 11957, - "sha1": "8b6c6e18183f8b67d434cf3dd097a8c595b9732d", - "md5": "1c358cad0c4be555c304f9c9c44e2371", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/bio_md.c", - "type": "file", - "name": "bio_md.c", - "base_name": "bio_md", - "extension": ".c", - "date": "2017-05-25", - "size": 5014, - "sha1": "4d4fdff8d8864afa5a1255e7f5cdf3922e74e2b0", - "md5": "afc8c9a1695a6653309260eb3ebd0364", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/bio_ok.c", - "type": "file", - "name": "bio_ok.c", - "base_name": "bio_ok", - "extension": ".c", - "date": "2017-05-25", - "size": 16102, - "sha1": "66d302bc1c82a93a6d6f93c302972a95d1d5a834", - "md5": "a576d65dddf6d8c5bfc72eaa57bef196", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 954, - "sha1": "3ae1ab14687926ca99502d56449cd61d25a2f46c", - "md5": "bb157574a5a517593db520716cc61cb6", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/cmeth_lib.c", - "type": "file", - "name": "cmeth_lib.c", - "base_name": "cmeth_lib", - "extension": ".c", - "date": "2017-05-25", - "size": 4676, - "sha1": "14fe7fbfa4145542d89a31d56d3c7f098223b152", - "md5": "4fac1da645ff27c76de5b92c8c5e2f0b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/c_allc.c", - "type": "file", - "name": "c_allc.c", - "base_name": "c_allc", - "extension": ".c", - "date": "2017-05-25", - "size": 7793, - "sha1": "1196d9dc54192439241b906977c30f13bd6f5eb4", - "md5": "b30b0686b9c112ec975d740170beca2c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/c_alld.c", - "type": "file", - "name": "c_alld.c", - "base_name": "c_alld", - "extension": ".c", - "date": "2017-05-25", - "size": 1477, - "sha1": "3c8b4e5e67b40fde872bbac8b2353c1eeb5c9c81", - "md5": "5e174efe918383358891f6949cf81c70", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/digest.c", - "type": "file", - "name": "digest.c", - "base_name": "digest", - "extension": ".c", - "date": "2017-05-25", - "size": 8035, - "sha1": "1d94f092dffcc9019a32cbb9168a88975204b7ae", - "md5": "d3c402e965070e1ab8267369693b1590", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/encode.c", - "type": "file", - "name": "encode.c", - "base_name": "encode", - "extension": ".c", - "date": "2017-05-25", - "size": 11073, - "sha1": "164d5ba819165ed0fd4b2eb1ca34b4df3ca94a61", - "md5": "602619711de3a53c0576cf754542492d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/evp_cnf.c", - "type": "file", - "name": "evp_cnf.c", - "base_name": "evp_cnf", - "extension": ".c", - "date": "2017-05-25", - "size": 1956, - "sha1": "81aaf38a6b1670df63e51295ab42a32a3671e819", - "md5": "697c01111177e9db610889e8d43cbcf5", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/evp_enc.c", - "type": "file", - "name": "evp_enc.c", - "base_name": "evp_enc", - "extension": ".c", - "date": "2017-05-25", - "size": 18706, - "sha1": "81b890a8a7634136b42809afb474d7a2b7878dd8", - "md5": "de88c6c3f0c2431852d1253fdde57c39", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/evp_err.c", - "type": "file", - "name": "evp_err.c", - "base_name": "evp_err", - "extension": ".c", - "date": "2017-05-25", - "size": 9528, - "sha1": "16796091f60fb866376c82503c94f6b0fb6b184b", - "md5": "632f9aab3502f54dd08b3c91e0ab9bb9", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/evp_key.c", - "type": "file", - "name": "evp_key.c", - "base_name": "evp_key", - "extension": ".c", - "date": "2017-05-25", - "size": 4167, - "sha1": "31eb63c50261c045cd12fd362efc037320cff880", - "md5": "e4e970c4403b94d810453c1658faa31a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/evp_lib.c", - "type": "file", - "name": "evp_lib.c", - "base_name": "evp_lib", - "extension": ".c", - "date": "2017-05-25", - "size": 10825, - "sha1": "082a8a939de9e19a6525495c8a83832724322482", - "md5": "72ecc22958d0d8b5932180aae1aff510", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/evp_locl.h", - "type": "file", - "name": "evp_locl.h", - "base_name": "evp_locl", - "extension": ".h", - "date": "2017-05-25", - "size": 2632, - "sha1": "a748e20b03738f875cfddfdd7491a50b352a9a17", - "md5": "46b7cdff083d70c57e07c62ceea3b7f4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/evp_pbe.c", - "type": "file", - "name": "evp_pbe.c", - "base_name": "evp_pbe", - "extension": ".c", - "date": "2017-05-25", - "size": 7461, - "sha1": "970b065555d6349cf4691174349e4ffe9ae5ca82", - "md5": "782e8510d5eaed98528faf80e85d545b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/evp_pkey.c", - "type": "file", - "name": "evp_pkey.c", - "base_name": "evp_pkey", - "extension": ".c", - "date": "2017-05-25", - "size": 4162, - "sha1": "bc5d50102481be6f0007dc3a2a2b7a2127a722e4", - "md5": "8aa37f4780ee4ab585485235ce2f13f4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/e_aes.c", - "type": "file", - "name": "e_aes.c", - "base_name": "e_aes", - "extension": ".c", - "date": "2017-05-25", - "size": 98295, - "sha1": "49f3e110627c4d26b3bc37d0a9cce94e84a58ee4", - "md5": "2a196202b6f30309fa7de32c94446da3", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 31520, - "sha1": "72981362e2712182ccec419dacc7ed1edb73bde2", - "md5": "6f724e00aadd4275d5169a5c98ded9dc", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 31196, - "sha1": "24a7d2b2584acbfc51017571b81247d022c3236d", - "md5": "32a5ab8c4b8f79f1dc1b22529cc27e55", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/e_bf.c", - "type": "file", - "name": "e_bf.c", - "base_name": "e_bf", - "extension": ".c", - "date": "2017-05-25", - "size": 1191, - "sha1": "68f7db2368dbf7786002fddd27d58dd7508334ed", - "md5": "d3faefa400c1b7ccb53fec1218105cf3", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/e_camellia.c", - "type": "file", - "name": "e_camellia.c", - "base_name": "e_camellia", - "extension": ".c", - "date": "2017-05-25", - "size": 13914, - "sha1": "5858e4db7dc80d36b257adf9e4b58d3583792075", - "md5": "55c915ed4a5bf5cabfa3265bab8958a7", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/e_cast.c", - "type": "file", - "name": "e_cast.c", - "base_name": "e_cast", - "extension": ".c", - "date": "2017-05-25", - "size": 1254, - "sha1": "e7a03a141a8047373127f6c76aac7719c01b5e3c", - "md5": "e83c376556b6c8938ed8140e7838f3ca", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 14821, - "sha1": "2348095c52781173ae3ac5d07c068c2c87b4ac98", - "md5": "af6b7ef897b8709cc817733306534d0f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/e_des.c", - "type": "file", - "name": "e_des.c", - "base_name": "e_des", - "extension": ".c", - "date": "2017-05-25", - "size": 8324, - "sha1": "f2647b8136b1339c44b7bfa401014657e3d53e4b", - "md5": "33577eee7a3b16dcd660c30a1f03679d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/e_des3.c", - "type": "file", - "name": "e_des3.c", - "base_name": "e_des3", - "extension": ".c", - "date": "2017-05-25", - "size": 14526, - "sha1": "81f402d017a2bed0329333d577e09e607d2ba53e", - "md5": "4d6db5d64008051ce0ea4bd4fc70afbf", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/e_idea.c", - "type": "file", - "name": "e_idea.c", - "base_name": "e_idea", - "extension": ".c", - "date": "2017-05-25", - "size": 2164, - "sha1": "30a3a82e27eef611baff26c0425ac27670b14b36", - "md5": "133ad1daaa43dbc009216cd0f4c14d3d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/e_null.c", - "type": "file", - "name": "e_null.c", - "base_name": "e_null", - "extension": ".c", - "date": "2017-05-25", - "size": 1297, - "sha1": "09ea61dc1cc65cf43362a53a4d4c0bc7250a9e2d", - "md5": "9c41ab8459a3ac2b9400daca1fae6d93", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/e_old.c", - "type": "file", - "name": "e_old.c", - "base_name": "e_old", - "extension": ".c", - "date": "2017-05-25", - "size": 2445, - "sha1": "994bcebec5772626e36c8e0bf973d83608ae39d3", - "md5": "70513d6a7dc930824be74ec938bb9ba1", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/e_rc2.c", - "type": "file", - "name": "e_rc2.c", - "base_name": "e_rc2", - "extension": ".c", - "date": "2017-05-25", - "size": 5059, - "sha1": "f81cb512d2f719dd93b600a1197a7353ccd41297", - "md5": "a14b0d806816d9430562dd58f4c232e4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/e_rc4.c", - "type": "file", - "name": "e_rc4.c", - "base_name": "e_rc4", - "extension": ".c", - "date": "2017-05-25", - "size": 1914, - "sha1": "074d27e447605208b3192d44516cad38ead29c72", - "md5": "e06687948fd57afbfaba265490646500", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 7897, - "sha1": "0863e024f6a5c1d102cf1b4d2e44694f14a28254", - "md5": "b0520dd59d91ae61d824fc97270e08b3", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/e_rc5.c", - "type": "file", - "name": "e_rc5.c", - "base_name": "e_rc5", - "extension": ".c", - "date": "2017-05-25", - "size": 2128, - "sha1": "1300aea2610578336da2d2d3572693460e5cb094", - "md5": "b4a202246ca9ff7033873d4e48bc7ac1", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/e_seed.c", - "type": "file", - "name": "e_seed.c", - "base_name": "e_seed", - "extension": ".c", - "date": "2017-05-25", - "size": 1166, - "sha1": "c6867b167087a328206cd4e44b41dd23b080c2ff", - "md5": "cdbce367fb7b9c61778ccac186a2e2ce", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2449, - "sha1": "eb8ebc2346734658d33e749dca3509d43e811051", - "md5": "d6ab54aceabb871c23f0bec1901401a3", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/m_md2.c", - "type": "file", - "name": "m_md2.c", - "base_name": "m_md2", - "extension": ".c", - "date": "2017-05-25", - "size": 1177, - "sha1": "a35e29f9fc759bfc41e1044258beeeddafbc7dd3", - "md5": "485576a8150194d8940ab808524f1850", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/m_md4.c", - "type": "file", - "name": "m_md4.c", - "base_name": "m_md4", - "extension": ".c", - "date": "2017-05-25", - "size": 1180, - "sha1": "a2d33a06986711fc3b22f88f2d435a559a1433c9", - "md5": "b293a0cfc3844d025bd32bfec8f9cabe", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/m_md5.c", - "type": "file", - "name": "m_md5.c", - "base_name": "m_md5", - "extension": ".c", - "date": "2017-05-25", - "size": 1180, - "sha1": "6610a2a25cc82ab1d9d5180be29e59b79b955dda", - "md5": "8a67e1717a3879ad5d376be642689e9a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 3281, - "sha1": "37d6a2ff0f3b085c1428e377d727adb928e9a497", - "md5": "e0037e8a3971e530587bcf7d596d683c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/m_mdc2.c", - "type": "file", - "name": "m_mdc2.c", - "base_name": "m_mdc2", - "extension": ".c", - "date": "2017-05-25", - "size": 1182, - "sha1": "61f9359c97704961a914ec11bd48e46f5c8af22d", - "md5": "6f2603f284579d2b920b3f127ce99171", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/m_null.c", - "type": "file", - "name": "m_null.c", - "base_name": "m_null", - "extension": ".c", - "date": "2017-05-25", - "size": 926, - "sha1": "bc742146352936f94fcadbd416647e1123c414c5", - "md5": "f323a18e18c31fff220e6fa3cb56e556", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/m_ripemd.c", - "type": "file", - "name": "m_ripemd.c", - "base_name": "m_ripemd", - "extension": ".c", - "date": "2017-05-25", - "size": 1242, - "sha1": "4d9d560df077fe79b6bfc689f1836fa96f686958", - "md5": "ac968cc87277a5c45a152d08c3a47157", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/m_sha1.c", - "type": "file", - "name": "m_sha1.c", - "base_name": "m_sha1", - "extension": ".c", - "date": "2017-05-25", - "size": 4859, - "sha1": "788436fdc5a9ba55c87d13034692d6b18a0cdb7c", - "md5": "773f99a30a43c62b479e5cf8d7956f68", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/m_sigver.c", - "type": "file", - "name": "m_sigver.c", - "base_name": "m_sigver", - "extension": ".c", - "date": "2017-05-25", - "size": 5490, - "sha1": "aac1bd5363c2320b4c3f384dfa26e5776b00ddf4", - "md5": "9f168f68306533032ca3cddd11ff2d9c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/m_wp.c", - "type": "file", - "name": "m_wp.c", - "base_name": "m_wp", - "extension": ".c", - "date": "2017-05-25", - "size": 1206, - "sha1": "4469efeca4febc31dca098f77fc2045e3d247d6e", - "md5": "e8efae3972104c99092977e88239d254", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/names.c", - "type": "file", - "name": "names.c", - "base_name": "names", - "extension": ".c", - "date": "2017-05-25", - "size": 4849, - "sha1": "775f842f79265261f9a4d3ce76cca75a517749b4", - "md5": "4654743f915bf725372ee5d2e563e28b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/p5_crpt.c", - "type": "file", - "name": "p5_crpt.c", - "base_name": "p5_crpt", - "extension": ".c", - "date": "2017-05-25", - "size": 2975, - "sha1": "067dfb988964fe9ed802bb2afbdda87db5cd240c", - "md5": "6f23747b61882d499dd9f8fe55730641", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/p5_crpt2.c", - "type": "file", - "name": "p5_crpt2.c", - "base_name": "p5_crpt2", - "extension": ".c", - "date": "2017-05-25", - "size": 8382, - "sha1": "751cbd360afca0058c95a5a7e5e91c6f52dee3be", - "md5": "59d32bc8c7b6349e65d528aaff946d87", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/pmeth_fn.c", - "type": "file", - "name": "pmeth_fn.c", - "base_name": "pmeth_fn", - "extension": ".c", - "date": "2017-05-25", - "size": 9848, - "sha1": "78deaa1cc39cfabb82f5ebf377e4d7c6cff6e325", - "md5": "07b77d3cfd7f118d508ba159e017bba8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/pmeth_gn.c", - "type": "file", - "name": "pmeth_gn.c", - "base_name": "pmeth_gn", - "extension": ".c", - "date": "2017-05-25", - "size": 4260, - "sha1": "7c7a416e8e6521a1171b5aca502eaea2bbe536f1", - "md5": "a21d0c2799dbd7bd007b354298cde85b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/pmeth_lib.c", - "type": "file", - "name": "pmeth_lib.c", - "base_name": "pmeth_lib", - "extension": ".c", - "date": "2017-05-25", - "size": 22668, - "sha1": "e5d13dc191c8c6dd4bddfc5d71a0130d50918208", - "md5": "acc4d01e0a4d93a98be1a9df003638bb", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/p_dec.c", - "type": "file", - "name": "p_dec.c", - "base_name": "p_dec", - "extension": ".c", - "date": "2017-05-25", - "size": 982, - "sha1": "a4abbb3b98d6f2a761df52041524f13099b4af2e", - "md5": "b27ef18a89400a9001a8290ee93ce52f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/p_enc.c", - "type": "file", - "name": "p_enc.c", - "base_name": "p_enc", - "extension": ".c", - "date": "2017-05-25", - "size": 986, - "sha1": "967318a67943238d5d2aee189c096c11becf253b", - "md5": "6219573966bebf73ea8e3e7a5d1f3116", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/p_lib.c", - "type": "file", - "name": "p_lib.c", - "base_name": "p_lib", - "extension": ".c", - "date": "2017-05-25", - "size": 11485, - "sha1": "6d620cef997ed413754ee1b9b3736bcee092da3e", - "md5": "0335e2fd60ef2d775777e585e9aec563", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/p_open.c", - "type": "file", - "name": "p_open.c", - "base_name": "p_open", - "extension": ".c", - "date": "2017-05-25", - "size": 1819, - "sha1": "de92e5abb5102f4a01b6a8acdfff6f3abbc343ab", - "md5": "5f4601f53d454a459599cb51dc13a3fb", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/p_seal.c", - "type": "file", - "name": "p_seal.c", - "base_name": "p_seal", - "extension": ".c", - "date": "2017-05-25", - "size": 1865, - "sha1": "210fe7eab9db4f4606c6ebc9c556d2e512dd8021", - "md5": "e50f5879866cb6a114ba1cde2f8fa3ab", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/p_sign.c", - "type": "file", - "name": "p_sign.c", - "base_name": "p_sign", - "extension": ".c", - "date": "2017-05-25", - "size": 1747, - "sha1": "4db33d4779af27a34b7c61a9964ab0e284bd2de2", - "md5": "902a7f358d0ec49e4d0cb0557d7e464e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/p_verify.c", - "type": "file", - "name": "p_verify.c", - "base_name": "p_verify", - "extension": ".c", - "date": "2017-05-25", - "size": 1632, - "sha1": "3c19db61e39ef39b073754b34fa592106a930f4d", - "md5": "0eb7f1e6d583ca88d96ad42cd6a57fe6", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/evp/scrypt.c", - "type": "file", - "name": "scrypt.c", - "base_name": "scrypt", - "extension": ".c", - "date": "2017-05-25", - "size": 6890, - "sha1": "b8743009eeab13d96cac93aedb2656cf83090dae", - "md5": "1c2d94d8e65892c48e9e1bc7db192250", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/hmac/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 84, - "sha1": "57d8274e0704f63a7d97f5d632cb8e1f818bd921", - "md5": "ea0ece49c5be54dec033729fd8d4b29d", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/hmac/hmac.c", - "type": "file", - "name": "hmac.c", - "base_name": "hmac", - "extension": ".c", - "date": "2017-05-25", - "size": 6160, - "sha1": "046fa1a402988a699c40c192505a0416a559b77a", - "md5": "fb708b75ca41b4b68070f6bb972803ce", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/hmac/hmac_lcl.h", - "type": "file", - "name": "hmac_lcl.h", - "base_name": "hmac_lcl", - "extension": ".h", - "date": "2017-05-25", - "size": 741, - "sha1": "be5202f0971bc95075387a6304655a4d3864fe68", - "md5": "99fe2a6e6581706895914207471313fe", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/hmac/hm_ameth.c", - "type": "file", - "name": "hm_ameth.c", - "base_name": "hm_ameth", - "extension": ".c", - "date": "2017-05-25", - "size": 2756, - "sha1": "4cc7055e7aa52c482bce4a58257dc2c2a5aa1465", - "md5": "4eda4370b8e4941da3a58b6acbb55755", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/hmac/hm_pmeth.c", - "type": "file", - "name": "hm_pmeth.c", - "base_name": "hm_pmeth", - "extension": ".c", - "date": "2017-05-25", - "size": 4922, - "sha1": "be927f02603b3bb8ef2256066ca7801dabe4266a", - "md5": "38e5227c29acb6afca7370fa148e07d5", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/idea/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 100, - "sha1": "a449049f98e0cc2ec4b040e37aa65dc4c5623e12", - "md5": "295ec1b670c9006592977750a031c2a4", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/idea/idea_lcl.h", - "type": "file", - "name": "idea_lcl.h", - "base_name": "idea_lcl", - "extension": ".h", - "date": "2017-05-25", - "size": 4141, - "sha1": "10fcb78b4e0240c831a9d2128a6c2b797367fe5f", - "md5": "25d71d6cc9b70e4baad15c66dc1de4cc", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/idea/i_cbc.c", - "type": "file", - "name": "i_cbc.c", - "base_name": "i_cbc", - "extension": ".c", - "date": "2017-05-25", - "size": 3074, - "sha1": "a2e49c8feb10316cab4992a56adbbcd8dfb45b6c", - "md5": "42e79cdd2ce4b992eef5eed498dd786b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/idea/i_cfb64.c", - "type": "file", - "name": "i_cfb64.c", - "base_name": "i_cfb64", - "extension": ".c", - "date": "2017-05-25", - "size": 2200, - "sha1": "d0b7c9f51015220694768a63d19a8ba8978371eb", - "md5": "ffbf779168d03c3b86f2e083f6195122", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/idea/i_ecb.c", - "type": "file", - "name": "i_ecb.c", - "base_name": "i_ecb", - "extension": ".c", - "date": "2017-05-25", - "size": 810, - "sha1": "ab444141f83dbc0031eb3282d1a9338374716b8f", - "md5": "c836f4d80d75b228f53b07081fd7efaa", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/idea/i_ofb64.c", - "type": "file", - "name": "i_ofb64.c", - "base_name": "i_ofb64", - "extension": ".c", - "date": "2017-05-25", - "size": 1635, - "sha1": "dacbd9b11b4ebafe518e49dc5ee1580b7f8f00f6", - "md5": "4692db7489869a81eca9c510fca690d4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/idea/i_skey.c", - "type": "file", - "name": "i_skey.c", - "base_name": "i_skey", - "extension": ".c", - "date": "2017-05-25", - "size": 2739, - "sha1": "e3c0406857b55a8e17acc7d64719ff0f013c4921", - "md5": "0dcd155c762c701f90a320b8b1dbe45c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/include/internal", - "type": "directory", - "name": "internal", - "base_name": "internal", - "extension": "", - "date": null, - "size": 55455, - "sha1": null, - "md5": null, - "files_count": 18, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/include/internal/asn1_int.h", - "type": "file", - "name": "asn1_int.h", - "base_name": "asn1_int", - "extension": ".h", - "date": "2017-05-25", - "size": 3929, - "sha1": "b58cdaaae457b1b2e35e4c3d47833f8ec56a228e", - "md5": "d7509d45e8aa6c34902cd0ceeefd8d27", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/include/internal/async.h", - "type": "file", - "name": "async.h", - "base_name": "async", - "extension": ".h", - "date": "2017-05-25", - "size": 405, - "sha1": "ec08f4c4400b7a3e800cd0da6026908bb9c631df", - "md5": "3ec92e613e16922d849a5633f78a8f1e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 873, - "sha1": "36cf6ba9d1e1ce0ec080a65ae6755e3ac7add193", - "md5": "b3df608d34fed500572af25f1b41483a", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/crypto/include/internal/bn_dh.h", - "type": "file", - "name": "bn_dh.h", - "base_name": "bn_dh", - "extension": ".h", - "date": "2017-05-25", - "size": 593, - "sha1": "19b6d26c6f2b5728fed54b81b928c4e5ae4ff4f8", - "md5": "898f6c34bcfb6621daa90794d5dfbf2a", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/include/internal/bn_int.h", - "type": "file", - "name": "bn_int.h", - "base_name": "bn_int", - "extension": ".h", - "date": "2017-05-25", - "size": 2287, - "sha1": "28a4bff50d3b03e1123ec410d27976444b8af5d1", - "md5": "5994a76bf0bff7a30d00dd741feb7f56", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/include/internal/bn_srp.h", - "type": "file", - "name": "bn_srp.h", - "base_name": "bn_srp", - "extension": ".h", - "date": "2017-05-25", - "size": 729, - "sha1": "e0646c0a9fec1f79dc2d207a4acd078de5e463c5", - "md5": "591a5ab2c41fb83fbce6a880d70b5dbe", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/include/internal/chacha.h", - "type": "file", - "name": "chacha.h", - "base_name": "chacha", - "extension": ".h", - "date": "2017-05-25", - "size": 1713, - "sha1": "113f9b7606fac67a3fff51d3bf4711ae84cadfb4", - "md5": "80dca06edcf6b526802980045c402d4b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/include/internal/cryptlib.h", - "type": "file", - "name": "cryptlib.h", - "base_name": "cryptlib", - "extension": ".h", - "date": "2017-05-25", - "size": 2289, - "sha1": "751c34394e07fe481300eef0339975b3b6b69acd", - "md5": "a156c6040d86fbae22b4d622289e4a3e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/include/internal/cryptlib_int.h", - "type": "file", - "name": "cryptlib_int.h", - "base_name": "cryptlib_int", - "extension": ".h", - "date": "2017-05-25", - "size": 900, - "sha1": "4af1cb9429561386478473aa86e0cbf52dc37250", - "md5": "b106f477e8c68dcc93ba213ecac3711a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 494, - "sha1": "ac9160b287f74c2a010fb93187f9ee48256bb05f", - "md5": "aab46435a8ec9c703fa292d5ebf4a700", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/crypto/include/internal/engine.h", - "type": "file", - "name": "engine.h", - "base_name": "engine", - "extension": ".h", - "date": "2017-05-25", - "size": 672, - "sha1": "1af998d83ed7fdaad8d5da6f01d09f693f6de631", - "md5": "7214964a985a83de36098309e409e765", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/include/internal/err_int.h", - "type": "file", - "name": "err_int.h", - "base_name": "err_int", - "extension": ".h", - "date": "2017-05-25", - "size": 492, - "sha1": "df71aa2df2b32d360ee6a37b6b40936f5ed634d6", - "md5": "342d3ba8ecaddfa74d7cafd228054803", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/include/internal/evp_int.h", - "type": "file", - "name": "evp_int.h", - "base_name": "evp_int", - "extension": ".h", - "date": "2017-05-25", - "size": 15461, - "sha1": "c4059315b329db91b81305293b8c9a0c02e698c2", - "md5": "dc83648ea617f3b5e81562e1c884bf2a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/include/internal/md32_common.h", - "type": "file", - "name": "md32_common.h", - "base_name": "md32_common", - "extension": ".h", - "date": "2017-05-25", - "size": 13837, - "sha1": "578d381cef7591b1d1b35dc318c8a6bff3696db9", - "md5": "dc2b0e9d4c3558aef11b3107d24a97ad", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/include/internal/objects.h", - "type": "file", - "name": "objects.h", - "base_name": "objects", - "extension": ".h", - "date": "2017-05-25", - "size": 387, - "sha1": "63345d12fa70ba3f4b50bec413e4af9af2bef1aa", - "md5": "51c1e47f6432d8f24d7a04562eef8bac", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/include/internal/poly1305.h", - "type": "file", - "name": "poly1305.h", - "base_name": "poly1305", - "extension": ".h", - "date": "2017-05-25", - "size": 660, - "sha1": "7138bb74363053b99ddfd88627976c5bc18c833b", - "md5": "f54905a2b90399e72c042d92aae5428b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/include/internal/rand.h", - "type": "file", - "name": "rand.h", - "base_name": "rand", - "extension": ".h", - "date": "2017-05-25", - "size": 662, - "sha1": "45870e28a0d2a899bd744a9e12e3a5da609fa537", - "md5": "38a866532b39ad06972c379698554c19", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 69.84, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 69.84, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 69.84, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": 92.86, - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/include/internal/x509_int.h", - "type": "file", - "name": "x509_int.h", - "base_name": "x509_int", - "extension": ".h", - "date": "2017-05-25", - "size": 9072, - "sha1": "874a41f075ca5b348baa60f802da50a4ca176104", - "md5": "cc339c9d568a872501f34d8dff068c85", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/kdf/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 83, - "sha1": "8f81fa52030d75c46a295e95cf6a0fe3cb58b443", - "md5": "963b9de0d9443a8c84e7194d047850e3", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/kdf/hkdf.c", - "type": "file", - "name": "hkdf.c", - "base_name": "hkdf", - "extension": ".c", - "date": "2017-05-25", - "size": 7458, - "sha1": "2051455c504f8a0a640d7e88d917398f3e1f3f0d", - "md5": "4c4beec3841fe9a29277317cca696178", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/kdf/kdf_err.c", - "type": "file", - "name": "kdf_err.c", - "base_name": "kdf_err", - "extension": ".c", - "date": "2017-05-25", - "size": 1301, - "sha1": "c01afa1f059ea9aa4de07ac496d52597b0e9b19a", - "md5": "fdd4d60cc85cce631f8bf4f3bf3eb9c3", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/crypto/kdf/tls1_prf.c", - "type": "file", - "name": "tls1_prf.c", - "base_name": "tls1_prf", - "extension": ".c", - "date": "2017-05-25", - "size": 7430, - "sha1": "81322f2db84c33833a4edc49998a0f8f786c25d5", - "md5": "97380ab24bf9a899a4205eeae9b1b86b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/lhash/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 74, - "sha1": "184afc4cd92b8397aa70663d9e7cf436cab42fd9", - "md5": "c81f6bb56f49a705482f715fbd6c0a3a", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/lhash/lhash.c", - "type": "file", - "name": "lhash.c", - "base_name": "lhash", - "extension": ".c", - "date": "2017-05-25", - "size": 8425, - "sha1": "81fc59f0bbf14791b4c1287d44b43cd4361a0672", - "md5": "97c1527f5e47d5fe0a1035dc6fa71fa2", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/lhash/lhash_lcl.h", - "type": "file", - "name": "lhash_lcl.h", - "base_name": "lhash_lcl", - "extension": ".h", - "date": "2017-05-25", - "size": 1234, - "sha1": "17763ccc5cd7ab652ad422b79992cb4f48cbcd46", - "md5": "f09ea887bd63c7c9d2da96f433034bea", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/lhash/lh_stats.c", - "type": "file", - "name": "lh_stats.c", - "base_name": "lh_stats", - "extension": ".c", - "date": "2017-05-25", - "size": 3741, - "sha1": "c97abd5f9540e0af483555262f3731b544d102fe", - "md5": "bce3e96e87d28fa4e82fb91692723f43", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/lhash/num.pl", - "type": "file", - "name": "num.pl", - "base_name": "num", - "extension": ".pl", - "date": "2017-05-25", - "size": 564, - "sha1": "4a6161fd890c286e26f2ec2abc1ce32f700b3463", - "md5": "41d1e0128a55be2e40e915dd06b81406", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/md2/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 76, - "sha1": "ad68626f62b653e3570dcb0e22774b91da611bfe", - "md5": "812e535f75f67d90e95925b35d48e4dd", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/md2/md2_dgst.c", - "type": "file", - "name": "md2_dgst.c", - "base_name": "md2_dgst", - "extension": ".c", - "date": "2017-05-25", - "size": 5104, - "sha1": "bb924726bd3e556a3224bee11ad2fca8720c723f", - "md5": "22863a072a9a078af6f376dc5bd9b1f5", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/md2/md2_one.c", - "type": "file", - "name": "md2_one.c", - "base_name": "md2_one", - "extension": ".c", - "date": "2017-05-25", - "size": 1199, - "sha1": "6f9cde5ed297f2080b63202e69ab0fe4165e7ae6", - "md5": "da313e65344efbb9097b19903d439dfa", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/md4/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 76, - "sha1": "ae663bac35d5745ff567573c916670ca3f355c0b", - "md5": "42fab72cd8a9dd38f2c1bed2ae285d64", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/md4/md4_dgst.c", - "type": "file", - "name": "md4_dgst.c", - "base_name": "md4_dgst", - "extension": ".c", - "date": "2017-05-25", - "size": 4500, - "sha1": "a093692cee567e7ca343f964ea4c9051098dbb68", - "md5": "cdb82afa4a74cf9c9364b5896b335d83", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/md4/md4_locl.h", - "type": "file", - "name": "md4_locl.h", - "base_name": "md4_locl", - "extension": ".h", - "date": "2017-05-25", - "size": 1987, - "sha1": "337725f5b050a7a60470a598fc0a7a316a129956", - "md5": "7abc39f9e48897f02c85be70e34c63ec", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/md4/md4_one.c", - "type": "file", - "name": "md4_one.c", - "base_name": "md4_one", - "extension": ".c", - "date": "2017-05-25", - "size": 1163, - "sha1": "32298152896105758d70e59c0afeff9b446827e2", - "md5": "326e8a50fd3d840701c186aa119a2dc2", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/md5/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 720, - "sha1": "58baf4b21d9548569ac5fb2fc52582810cf3d78c", - "md5": "f2d9d662be74fd0db305f289bc4976cf", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/md5/md5_dgst.c", - "type": "file", - "name": "md5_dgst.c", - "base_name": "md5_dgst", - "extension": ".c", - "date": "2017-05-25", - "size": 5448, - "sha1": "f2d80158be9328866e2f71950c14da1b0944a377", - "md5": "c96fbd7e7d95bb9a8a1d7e107ae830b6", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/md5/md5_locl.h", - "type": "file", - "name": "md5_locl.h", - "base_name": "md5_locl", - "extension": ".h", - "date": "2017-05-25", - "size": 2621, - "sha1": "d1b145ac09105664a998e454b1eb395bf0e6b2de", - "md5": "57ca60520e35d9f21898f56ceac4d230", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/md5/md5_one.c", - "type": "file", - "name": "md5_one.c", - "base_name": "md5_one", - "extension": ".c", - "date": "2017-05-25", - "size": 1163, - "sha1": "d5ba036ea3b3e574c57434eed7d48218c06fe43e", - "md5": "57e8f63be24bb3b2d18516d5250d258b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/md5/asm", - "type": "directory", - "name": "asm", - "base_name": "asm", - "extension": "", - "date": null, - "size": 52657, - "sha1": null, - "md5": null, - "files_count": 4, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/md5/asm/md5-586.pl", - "type": "file", - "name": "md5-586.pl", - "base_name": "md5-586", - "extension": ".pl", - "date": "2017-05-25", - "size": 7984, - "sha1": "b53f079a0da77ad3fd0cc1d8c6e0da3b6b563a7d", - "md5": "ae27ca5c2498064dd2fb117b54fa4337", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/md5/asm/md5-ia64.S", - "type": "file", - "name": "md5-ia64.S", - "base_name": "md5-ia64", - "extension": ".S", - "date": "2017-05-25", - "size": 21881, - "sha1": "9a0eed09a6af30794b84e8ba2f99dcb0ca97be89", - "md5": "190b85ce86b821bef9d6552f45bd3e58", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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" - ] - } - }, - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", - "spdx_license_key": "MIT", - "spdx_url": "https://spdx.org/licenses/MIT", - "start_line": 13, - "end_line": 30, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/md5/asm/md5-sparcv9.pl", - "type": "file", - "name": "md5-sparcv9.pl", - "base_name": "md5-sparcv9", - "extension": ".pl", - "date": "2017-05-25", - "size": 10118, - "sha1": "e04e9edd4d860fef88ec8b19e6c874827084f033", - "md5": "2d51c8bf7695fb4f5424ee92b6acc7cd", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - }, - { - "statements": [], - "holders": [], - "authors": [ - "David S. Miller " - ], - "start_line": 16, - "end_line": 16 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 12674, - "sha1": "d80cfc3e672fc3311e031b8b0d953c6e56b5f956", - "md5": "9cdc8b387fa35c3745ce36de608f3309", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/crypto/mdc2/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 77, - "sha1": "00a3ba4d4f390b870661b94ea6741a3e6ae2ff08", - "md5": "8497622ad8d62ce89e3e1d004fd06194", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/mdc2/mdc2dgst.c", - "type": "file", - "name": "mdc2dgst.c", - "base_name": "mdc2dgst", - "extension": ".c", - "date": "2017-05-25", - "size": 3691, - "sha1": "1f0fa50ffe9df3b7a56a99abf89e960828e41fd4", - "md5": "8d4ad3235b1497d1ce8cea57000c2bea", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/mdc2/mdc2_one.c", - "type": "file", - "name": "mdc2_one.c", - "base_name": "mdc2_one", - "extension": ".c", - "date": "2017-05-25", - "size": 767, - "sha1": "d565e47aedb2a4cf418d9c6bacc6a2445f2f993d", - "md5": "d5075a860b017b301026800e1ed55c0d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/modes/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 1129, - "sha1": "d483a5c43d1bc7a459681ca34f2ca88a8028290a", - "md5": "10fb76c23bebbfc2a312b4c1368b95d0", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/modes/cbc128.c", - "type": "file", - "name": "cbc128.c", - "base_name": "cbc128", - "extension": ".c", - "date": "2017-05-25", - "size": 4629, - "sha1": "4ddf620a484275c0cbbd54aeb092a3e256137845", - "md5": "c88f0f530dfbcc165d92e14cd1677947", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/modes/ccm128.c", - "type": "file", - "name": "ccm128.c", - "base_name": "ccm128", - "extension": ".c", - "date": "2017-05-25", - "size": 11725, - "sha1": "bd1c56c3cad710b6a03860762ae65f9d81358f67", - "md5": "d932fc5e5127271559eaa289a795c3b0", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/modes/cfb128.c", - "type": "file", - "name": "cfb128.c", - "base_name": "cfb128", - "extension": ".c", - "date": "2017-05-25", - "size": 6638, - "sha1": "0d81d7873fbd6f588ed673ff7fc37f112a452567", - "md5": "8fa0cf79f4e74b7b5896eaba83102a90", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/modes/ctr128.c", - "type": "file", - "name": "ctr128.c", - "base_name": "ctr128", - "extension": ".c", - "date": "2017-05-25", - "size": 5964, - "sha1": "bedb4ed76c363d33dd06c648029dd8b426a66d61", - "md5": "dd847647ad21f3023474ef7583e173dc", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/modes/cts128.c", - "type": "file", - "name": "cts128.c", - "base_name": "cts128", - "extension": ".c", - "date": "2017-05-25", - "size": 15480, - "sha1": "68e95f8502feb4d00bf400f14efd178180d1c6e8", - "md5": "6dc68c56e3b25648d734c5c35dc5a982", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/modes/gcm128.c", - "type": "file", - "name": "gcm128.c", - "base_name": "gcm128", - "extension": ".c", - "date": "2017-05-25", - "size": 71370, - "sha1": "5ee3908cb341c334d83614eba821c4e6278b2fde", - "md5": "8c6227571b186c5347dc983de45f4459", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/modes/modes_lcl.h", - "type": "file", - "name": "modes_lcl.h", - "base_name": "modes_lcl", - "extension": ".h", - "date": "2017-05-25", - "size": 5989, - "sha1": "5c6d24c3cda1eadf9dd4aa735ec958365bbfaa80", - "md5": "c88cb67baac844ea764da23d72d3955a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/modes/ocb128.c", - "type": "file", - "name": "ocb128.c", - "base_name": "ocb128", - "extension": ".c", - "date": "2017-05-25", - "size": 17155, - "sha1": "714d3cc36b72df6634800bd1642bd1ece67a7f3d", - "md5": "39e1add45d735bcaa8cf96a763570a54", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/modes/ofb128.c", - "type": "file", - "name": "ofb128.c", - "base_name": "ofb128", - "extension": ".c", - "date": "2017-05-25", - "size": 2170, - "sha1": "09da16688c4dbd82790ef10bcdf821b3d5e49fe4", - "md5": "a74195bf16b30371f2d06a516e75664f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/modes/wrap128.c", - "type": "file", - "name": "wrap128.c", - "base_name": "wrap128", - "extension": ".c", - "date": "2017-05-25", - "size": 11857, - "sha1": "f54742e635391a7e32ed14b1add7b38c0b87704d", - "md5": "27872fe4157964548a67a46925c87477", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/modes/xts128.c", - "type": "file", - "name": "xts128.c", - "base_name": "xts128", - "extension": ".c", - "date": "2017-05-25", - "size": 4447, - "sha1": "3bdda11cc483b34a8b7c339b4cd0af4e159343c7", - "md5": "c04b1f6a05205b105fba210edbbaa1ee", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/modes/asm", - "type": "directory", - "name": "asm", - "base_name": "asm", - "extension": "", - "date": null, - "size": 226635, - "sha1": null, - "md5": null, - "files_count": 12, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 30924, - "sha1": "25555442ccc8e22bfdfa2eaf3a8e325023df3145", - "md5": "de96395e6263b37e0f1c71c31c92ab80", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/modes/asm/ghash-alpha.pl", - "type": "file", - "name": "ghash-alpha.pl", - "base_name": "ghash-alpha", - "extension": ".pl", - "date": "2017-05-25", - "size": 7970, - "sha1": "0fef4ee882cc4497e8b7b416cc4bb3dba63537ad", - "md5": "ba5ec2740f5adb7be3fdcfe21f1bc622", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/modes/asm/ghash-armv4.pl", - "type": "file", - "name": "ghash-armv4.pl", - "base_name": "ghash-armv4", - "extension": ".pl", - "date": "2017-05-25", - "size": 14216, - "sha1": "037a34a23f05d4d9ea2547057ce72a5e150f2f21", - "md5": "648127395f6db8482ee37da969d30b83", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/modes/asm/ghash-c64xplus.pl", - "type": "file", - "name": "ghash-c64xplus.pl", - "base_name": "ghash-c64xplus", - "extension": ".pl", - "date": "2017-05-25", - "size": 7451, - "sha1": "8f6098914590e129393a0a7646f90cdeb0129eaf", - "md5": "3b83a886109b9db4e5acdb96c0bbc9e1", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/modes/asm/ghash-ia64.pl", - "type": "file", - "name": "ghash-ia64.pl", - "base_name": "ghash-ia64", - "extension": ".pl", - "date": "2017-05-25", - "size": 18352, - "sha1": "fe4bd309c69bacd96dc09f22131b9519895222bd", - "md5": "49a4ad2d1dc8f6d71e84b1f2202b4cfc", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/modes/asm/ghash-parisc.pl", - "type": "file", - "name": "ghash-parisc.pl", - "base_name": "ghash-parisc", - "extension": ".pl", - "date": "2017-05-25", - "size": 16765, - "sha1": "e031b4a9434a2812ba89635d91f6c9b99c49c3f6", - "md5": "a861bcbe1146cd1ff3076f325b4e1851", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/modes/asm/ghash-s390x.pl", - "type": "file", - "name": "ghash-s390x.pl", - "base_name": "ghash-s390x", - "extension": ".pl", - "date": "2017-05-25", - "size": 6462, - "sha1": "6d4016db414824a824d2a23a9fa6e7b5dd475128", - "md5": "cd74f2a603535ae18b442fb3d399c148", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/modes/asm/ghash-sparcv9.pl", - "type": "file", - "name": "ghash-sparcv9.pl", - "base_name": "ghash-sparcv9", - "extension": ".pl", - "date": "2017-05-25", - "size": 12974, - "sha1": "77dca75217077abf18ab4bc608b30728b655687b", - "md5": "3887a78be08e949a636927d1a7c928de", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/modes/asm/ghash-x86.pl", - "type": "file", - "name": "ghash-x86.pl", - "base_name": "ghash-x86", - "extension": ".pl", - "date": "2017-05-25", - "size": 41631, - "sha1": "a5379c4cb48ee846a21e207b149ffeda3c6ea4ef", - "md5": "f82fcd3d8fa685d6744eedfeac4f9fc3", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 43251, - "sha1": "8b53c657cf67b50c581e4399d609c9a3ce981a45", - "md5": "075e484f2629c40765747844156e9843", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/modes/asm/ghashp8-ppc.pl", - "type": "file", - "name": "ghashp8-ppc.pl", - "base_name": "ghashp8-ppc", - "extension": ".pl", - "date": "2017-05-25", - "size": 14788, - "sha1": "a1a6a0eec40e9c6ac3e246d0e13e7d6aa60666b2", - "md5": "c3fb270716147665254301fae6cc80f5", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/modes/asm/ghashv8-armx.pl", - "type": "file", - "name": "ghashv8-armx.pl", - "base_name": "ghashv8-armx", - "extension": ".pl", - "date": "2017-05-25", - "size": 11851, - "sha1": "00bcd5bec64d199f99a886052228b235bfa967be", - "md5": "e356dbb098b1d5d5387f5b29ce8fd1ce", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/objects/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 106, - "sha1": "56dfb66b7186c34574f061a953621e9bbeb8d9e9", - "md5": "9e78c5203474756a73611ecfcd17ac91", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/objects/objects.pl", - "type": "file", - "name": "objects.pl", - "base_name": "objects", - "extension": ".pl", - "date": "2017-05-25", - "size": 4805, - "sha1": "f03fd8865cff5bc3b457d8bc109ec3502b721c52", - "md5": "ef781d3aec566cc0be57cc6f415c4fd3", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [] - }, - { - "path": "openssl-1.1.0f/crypto/objects/objects.txt", - "type": "file", - "name": "objects.txt", - "base_name": "objects", - "extension": ".txt", - "date": "2017-05-25", - "size": 51031, - "sha1": "a03d48403e2d220042a7a5bb5cc39a10604df4a6", - "md5": "522f41d4c8aaac3ac2cfaae873aae631", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/objects/objxref.pl", - "type": "file", - "name": "objxref.pl", - "base_name": "objxref", - "extension": ".pl", - "date": "2017-05-25", - "size": 2691, - "sha1": "94b70dbfec6d3c3bbe0f7d61cbac9b60846873aa", - "md5": "4a45750fa215da86ad427976af8b75c9", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [] - }, - { - "path": "openssl-1.1.0f/crypto/objects/obj_dat.c", - "type": "file", - "name": "obj_dat.c", - "base_name": "obj_dat", - "extension": ".c", - "date": "2017-05-25", - "size": 18206, - "sha1": "75b74a6d99b09e4abd9fd98058f3818926154cf2", - "md5": "1c0c6c9c2d0fef9dfc7d2b4e2091aa8f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/objects/obj_dat.h", - "type": "file", - "name": "obj_dat.h", - "base_name": "obj_dat", - "extension": ".h", - "date": "2017-05-25", - "size": 317044, - "sha1": "be59de278c8704ca083fff45d08af7245bb77979", - "md5": "b1270c4ffce200ac21b17fd67d3086ca", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/crypto/objects/obj_dat.pl", - "type": "file", - "name": "obj_dat.pl", - "base_name": "obj_dat", - "extension": ".pl", - "date": "2017-05-25", - "size": 6095, - "sha1": "b84ec0045bea949171d41ac0b6d97c78480a0e84", - "md5": "22150bc1f9a61c228c3dd7b5bb18c236", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [] - }, - { - "path": "openssl-1.1.0f/crypto/objects/obj_err.c", - "type": "file", - "name": "obj_err.c", - "base_name": "obj_err", - "extension": ".c", - "date": "2017-05-25", - "size": 1445, - "sha1": "1de85125ddf33db182fb5d27db233d8207d18303", - "md5": "f15052a4335645fffbf3d2af0bfaee02", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/crypto/objects/obj_lcl.h", - "type": "file", - "name": "obj_lcl.h", - "base_name": "obj_lcl", - "extension": ".h", - "date": "2017-05-25", - "size": 492, - "sha1": "917b7d8c68b34573563f78a9863f7e596a647bad", - "md5": "a63de7ebef5a8b5b04609e9b66076b4e", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/objects/obj_lib.c", - "type": "file", - "name": "obj_lib.c", - "base_name": "obj_lib", - "extension": ".c", - "date": "2017-05-25", - "size": 1760, - "sha1": "15ea7ae06ade0e8cb83afa010747eed792e4222c", - "md5": "535632da15f80f74a55909364d99564c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/objects/obj_mac.num", - "type": "file", - "name": "obj_mac.num", - "base_name": "obj_mac", - "extension": ".num", - "date": "2017-05-25", - "size": 23433, - "sha1": "73d09cab1e1ca2def3342c1410d408204a461d56", - "md5": "aa405044a4b4b4ca3bc3a1dcf7b617f9", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/objects/obj_xref.c", - "type": "file", - "name": "obj_xref.c", - "base_name": "obj_xref", - "extension": ".c", - "date": "2017-05-25", - "size": 3998, - "sha1": "d2dc39b58c36d90ec59aca9f75609a0029f01bb2", - "md5": "c5623a6ef106360a11e6ccf6a535ca82", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/objects/obj_xref.h", - "type": "file", - "name": "obj_xref.h", - "base_name": "obj_xref", - "extension": ".h", - "date": "2017-05-25", - "size": 4347, - "sha1": "6dca726e9570e7c115498b998ca1e2ede30b2be3", - "md5": "b365cfc6694d8c399fee39d9c232719d", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/crypto/objects/obj_xref.txt", - "type": "file", - "name": "obj_xref.txt", - "base_name": "obj_xref", - "extension": ".txt", - "date": "2017-05-25", - "size": 2488, - "sha1": "66c4b413d3d01bf4de4faf2b2f5a3bac3a212054", - "md5": "e870604b9071bf9c7a70efa3141579c4", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/objects/o_names.c", - "type": "file", - "name": "o_names.c", - "base_name": "o_names", - "extension": ".c", - "date": "2017-05-25", - "size": 10036, - "sha1": "ab8c1b0ecd3608c5cc6b597feee9d53ec26739eb", - "md5": "172425917f613854ff3e6ab93083c5ef", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/objects/README", - "type": "file", - "name": "README", - "base_name": "README", - "extension": "", - "date": "2017-05-25", - "size": 1272, - "sha1": "d5935fb3b0a6fd9be88635c94d167cef48f96235", - "md5": "4cd7405fa63b45e829e24d85b7c4f2ee", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/ocsp/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 172, - "sha1": "0c214cc648aca310d8fe33574b74fe5bb9d18b3c", - "md5": "dfafa6b0e41c7607a3480e1820601cf3", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/ocsp/ocsp_asn.c", - "type": "file", - "name": "ocsp_asn.c", - "base_name": "ocsp_asn", - "extension": ".c", - "date": "2017-05-25", - "size": 5226, - "sha1": "cecf6f388e4cf7dbc228c58578d966def37b855b", - "md5": "844d2d4c2ae9b35a757503270e8543e4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ocsp/ocsp_cl.c", - "type": "file", - "name": "ocsp_cl.c", - "base_name": "ocsp_cl", - "extension": ".c", - "date": "2017-05-25", - "size": 10180, - "sha1": "23cb56e033c7982b254ec240cb5bba6884d4413f", - "md5": "6cdd740e7cb93a453eab12fd11864657", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ocsp/ocsp_err.c", - "type": "file", - "name": "ocsp_err.c", - "base_name": "ocsp_err", - "extension": ".c", - "date": "2017-05-25", - "size": 3914, - "sha1": "f627b938e648d824aa3a3e261b9308091550aed3", - "md5": "3c942aa8d2428dd57c9a401809882aec", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ocsp/ocsp_ext.c", - "type": "file", - "name": "ocsp_ext.c", - "base_name": "ocsp_ext", - "extension": ".c", - "date": "2017-05-25", - "size": 14297, - "sha1": "d87d37717c6fb12d9ecab55072ceff4a3589cb66", - "md5": "f27d7362febfe5d92dbff603e5a2eb6d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ocsp/ocsp_ht.c", - "type": "file", - "name": "ocsp_ht.c", - "base_name": "ocsp_ht", - "extension": ".c", - "date": "2017-05-25", - "size": 12858, - "sha1": "3c5345efdc65f8323adeab16072162b5e6268cc7", - "md5": "4d37efd8b1205d8cfb564fcf245376ec", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ocsp/ocsp_lcl.h", - "type": "file", - "name": "ocsp_lcl.h", - "base_name": "ocsp_lcl", - "extension": ".h", - "date": "2017-05-25", - "size": 7346, - "sha1": "6856ae8ac945b8213d1c46b5bf54e8991b217191", - "md5": "1513892fe92bb34fe82337e4bded150a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ocsp/ocsp_lib.c", - "type": "file", - "name": "ocsp_lib.c", - "base_name": "ocsp_lib", - "extension": ".c", - "date": "2017-05-25", - "size": 5270, - "sha1": "4c469e8192f047fdf9483f8a3d591c6aef53a656", - "md5": "8a3053f0ec38c2ba65d745c22fe761c4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ocsp/ocsp_prn.c", - "type": "file", - "name": "ocsp_prn.c", - "base_name": "ocsp_prn", - "extension": ".c", - "date": "2017-05-25", - "size": 8446, - "sha1": "24480648db921db64ccb5168bc5a60ee7964c765", - "md5": "d462dc75f5cc99f7d30dc3923a82c588", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ocsp/ocsp_srv.c", - "type": "file", - "name": "ocsp_srv.c", - "base_name": "ocsp_srv", - "extension": ".c", - "date": "2017-05-25", - "size": 7560, - "sha1": "a46e61301fb54dd60ef391c524963cd316fdd728", - "md5": "c93a1ec442817240131094a71414fa03", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ocsp/ocsp_vfy.c", - "type": "file", - "name": "ocsp_vfy.c", - "base_name": "ocsp_vfy", - "extension": ".c", - "date": "2017-05-25", - "size": 13040, - "sha1": "439d215124ebcc72a66244889d8e293d17c51c88", - "md5": "f76419035a1cc054c94c618643c300ca", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ocsp/v3_ocsp.c", - "type": "file", - "name": "v3_ocsp.c", - "base_name": "v3_ocsp", - "extension": ".c", - "date": "2017-05-25", - "size": 6985, - "sha1": "0541e48493e769737333e0cb169a048fa7a476f8", - "md5": "3ef0de71bc0d9bb7ba99531fac3866b1", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/pem/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 179, - "sha1": "7f8fdefe6cc8d13221e5dc7510cf7f35a239040c", - "md5": "18a7977778bcf4824034cd72d0c45a01", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/pem/pem_all.c", - "type": "file", - "name": "pem_all.c", - "base_name": "pem_all", - "extension": ".c", - "date": "2017-05-25", - "size": 5145, - "sha1": "931ef41bdaafc32732b7968326749e1457680e0d", - "md5": "84160e0e8d9deb0dee138874c75a45a8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/pem/pem_err.c", - "type": "file", - "name": "pem_err.c", - "base_name": "pem_err", - "extension": ".c", - "date": "2017-05-25", - "size": 5123, - "sha1": "61c5652fbd5a66dbd8c22fa41eebfbff6158df16", - "md5": "df09132db6140a40ea37073d97be5b1e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/crypto/pem/pem_info.c", - "type": "file", - "name": "pem_info.c", - "base_name": "pem_info", - "extension": ".c", - "date": "2017-05-25", - "size": 10545, - "sha1": "19e01b2432006901d623641a34a8c96b4b24c3b0", - "md5": "c467c60581c62c576c81b302d2c89840", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/pem/pem_lib.c", - "type": "file", - "name": "pem_lib.c", - "base_name": "pem_lib", - "extension": ".c", - "date": "2017-05-25", - "size": 24097, - "sha1": "28561ca5aeb7d239e29c1764920e1d48843cd016", - "md5": "8f351472d4195a7ea874fbb8d9dd8b3d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/pem/pem_oth.c", - "type": "file", - "name": "pem_oth.c", - "base_name": "pem_oth", - "extension": ".c", - "date": "2017-05-25", - "size": 1051, - "sha1": "64d29808edb4ff8f66435f93210ab2fe3856514f", - "md5": "b3b3297d54cd642497ef2caee18d4460", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/pem/pem_pk8.c", - "type": "file", - "name": "pem_pk8.c", - "base_name": "pem_pk8", - "extension": ".c", - "date": "2017-05-25", - "size": 6662, - "sha1": "d1ac8a68edb21332338ed9fdde7e633a940ac756", - "md5": "61ffe02d0e4274428690d500eccb9a2a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/pem/pem_pkey.c", - "type": "file", - "name": "pem_pkey.c", - "base_name": "pem_pkey", - "extension": ".c", - "date": "2017-05-25", - "size": 7014, - "sha1": "cb91fcc5dd47996b2f1a13eb33b494e4db475338", - "md5": "bbafd465f138e2babbe68e26b3222429", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/pem/pem_sign.c", - "type": "file", - "name": "pem_sign.c", - "base_name": "pem_sign", - "extension": ".c", - "date": "2017-05-25", - "size": 1294, - "sha1": "9f3106b53af8a5babe83e6cfc4a1fe7f8be17ad5", - "md5": "67466d6a5b70b7aea75500d2f5bbbc5a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/pem/pem_x509.c", - "type": "file", - "name": "pem_x509.c", - "base_name": "pem_x509", - "extension": ".c", - "date": "2017-05-25", - "size": 565, - "sha1": "7f3d962bdeae311b9b06c5e43e42ec3275603c93", - "md5": "ade44954c17814796e9b6a9f7372df6e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/pem/pem_xaux.c", - "type": "file", - "name": "pem_xaux.c", - "base_name": "pem_xaux", - "extension": ".c", - "date": "2017-05-25", - "size": 581, - "sha1": "191b6f336febb63fd2e169583fdfa0140365cebd", - "md5": "b199e428a2110cfbcde5fbe415bfbef5", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/pem/pvkfmt.c", - "type": "file", - "name": "pvkfmt.c", - "base_name": "pvkfmt", - "extension": ".c", - "date": "2017-05-25", - "size": 23560, - "sha1": "9298d36fa5c7f1917d5ce32f2782cf4643b5c998", - "md5": "4329899de2c7ee7576a0e1a55c2b4076", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/perlasm/arm-xlate.pl", - "type": "file", - "name": "arm-xlate.pl", - "base_name": "arm-xlate", - "extension": ".pl", - "date": "2017-05-25", - "size": 4141, - "sha1": "ca3d800da2241eee7aaf09c6118c82214896defa", - "md5": "d48c28f345a27bfd4c31d5b9b436483d", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/perlasm/cbc.pl", - "type": "file", - "name": "cbc.pl", - "base_name": "cbc", - "extension": ".pl", - "date": "2017-05-25", - "size": 9400, - "sha1": "e3fd53a9abd123cfdfcb5b92c3ddbc74d19629f1", - "md5": "6c3400681ae9355812b5d2f680a4731a", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/perlasm/ppc-xlate.pl", - "type": "file", - "name": "ppc-xlate.pl", - "base_name": "ppc-xlate", - "extension": ".pl", - "date": "2017-05-25", - "size": 7722, - "sha1": "a51d748c2810b00d3a55ce92d4ea8664c7d65ea0", - "md5": "372fe925ac4775940e0994774f92c63c", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/perlasm/README", - "type": "file", - "name": "README", - "base_name": "README", - "extension": "", - "date": "2017-05-25", - "size": 3423, - "sha1": "8bd945ad09f03df6342be5529b8d60b37e90d7f8", - "md5": "929322c13f7c049076a23d247d712a0a", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/perlasm/sparcv9_modes.pl", - "type": "file", - "name": "sparcv9_modes.pl", - "base_name": "sparcv9_modes", - "extension": ".pl", - "date": "2017-05-25", - "size": 39385, - "sha1": "420e4dc636d225ef5a83fd1c0246910478a319dc", - "md5": "1e03cc1f26caf74761819e7009652452", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/perlasm/x86asm.pl", - "type": "file", - "name": "x86asm.pl", - "base_name": "x86asm", - "extension": ".pl", - "date": "2017-05-25", - "size": 7447, - "sha1": "9099a512a130de06cc2f66b797910cab970e035a", - "md5": "65c34733a3d2f84cb7edebc6f1507461", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/perlasm/x86gas.pl", - "type": "file", - "name": "x86gas.pl", - "base_name": "x86gas", - "extension": ".pl", - "date": "2017-05-25", - "size": 6458, - "sha1": "a151c661e288d2cafd43e9b0a8d272d6eb3b5bf5", - "md5": "5843f1bd7d266d4c998ffd17bef26c2c", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/perlasm/x86masm.pl", - "type": "file", - "name": "x86masm.pl", - "base_name": "x86masm", - "extension": ".pl", - "date": "2017-05-25", - "size": 4788, - "sha1": "46889eb121784ef174fbdbf4387302e9865b1725", - "md5": "d5ad57eb9916a518f16b5e6c14702522", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/perlasm/x86nasm.pl", - "type": "file", - "name": "x86nasm.pl", - "base_name": "x86nasm", - "extension": ".pl", - "date": "2017-05-25", - "size": 4515, - "sha1": "20c6ea7eb450bb61d06358016b86eaee5a4d3dc7", - "md5": "e9987cc157a110448a77e73124da4515", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 37007, - "sha1": "8fba5defb72e5bafc19eb0313aeab392e6df7771", - "md5": "f803831c8e8453836cf86707bbd6a727", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/pkcs12/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 243, - "sha1": "058e9c10e5e5e74b70fe8ad32cec508dddaa3df1", - "md5": "006fc223a9e249240c9b03bf6a343370", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/pkcs12/p12_add.c", - "type": "file", - "name": "p12_add.c", - "base_name": "p12_add", - "extension": ".c", - "date": "2017-05-25", - "size": 5132, - "sha1": "1ef2c14eb4251d91c31956f5cf45ad6daae3245a", - "md5": "11f92178b1bd3cac332fc0be4dbd013a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/pkcs12/p12_asn.c", - "type": "file", - "name": "p12_asn.c", - "base_name": "p12_asn", - "extension": ".c", - "date": "2017-05-25", - "size": 3080, - "sha1": "17bd0e07da3943c5a57b9c1bac51747b8d0282a1", - "md5": "82f8675ab915f7263e2da4c8cf5f92fa", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/pkcs12/p12_attr.c", - "type": "file", - "name": "p12_attr.c", - "base_name": "p12_attr", - "extension": ".c", - "date": "2017-05-25", - "size": 3050, - "sha1": "7e5ffbbfa20bea90bb63ab950e8b660809b99620", - "md5": "d18bb05ff3af4ae5e622dad9da172543", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/pkcs12/p12_crpt.c", - "type": "file", - "name": "p12_crpt.c", - "base_name": "p12_crpt", - "extension": ".c", - "date": "2017-05-25", - "size": 2305, - "sha1": "18f2ed15aa514d35d40b70974777f42945701d37", - "md5": "455a070508b527f1baffe0ef95ae23db", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/pkcs12/p12_crt.c", - "type": "file", - "name": "p12_crt.c", - "base_name": "p12_crt", - "extension": ".c", - "date": "2017-05-25", - "size": 6971, - "sha1": "9ee0f9b743203113e6e610fb6b4b497f636cf4f8", - "md5": "a5067111647ebeefb8ed70513014fe8a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/pkcs12/p12_decr.c", - "type": "file", - "name": "p12_decr.c", - "base_name": "p12_decr", - "extension": ".c", - "date": "2017-05-25", - "size": 4414, - "sha1": "f7e036bbee7b284dc6ccb93d336b577743c95397", - "md5": "f2e79f1685614b370c55a6611b950cdf", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/pkcs12/p12_init.c", - "type": "file", - "name": "p12_init.c", - "base_name": "p12_init", - "extension": ".c", - "date": "2017-05-25", - "size": 1179, - "sha1": "338f831f05b88bced1e718749a931184bf47371c", - "md5": "6b158bb877bbb393412d1e815e8103d5", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/pkcs12/p12_key.c", - "type": "file", - "name": "p12_key.c", - "base_name": "p12_key", - "extension": ".c", - "date": "2017-05-25", - "size": 6017, - "sha1": "7ff634ac4026389761e5c30b06c01bee4b0c3765", - "md5": "4530d7d9827e0c8eb10c74da8f249925", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/pkcs12/p12_kiss.c", - "type": "file", - "name": "p12_kiss.c", - "base_name": "p12_kiss", - "extension": ".c", - "date": "2017-05-25", - "size": 7011, - "sha1": "e28860c5815ad36ecfc704bbaee2219f0667c87a", - "md5": "efef6a5c16e00ef58ecd5574832300f4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/pkcs12/p12_lcl.h", - "type": "file", - "name": "p12_lcl.h", - "base_name": "p12_lcl", - "extension": ".h", - "date": "2017-05-25", - "size": 1198, - "sha1": "a2abf9b9f98bfba018fb094503befa15f30ba22d", - "md5": "c87c069fdfcf6903c4a072da72938b79", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/pkcs12/p12_mutl.c", - "type": "file", - "name": "p12_mutl.c", - "base_name": "p12_mutl", - "extension": ".c", - "date": "2017-05-25", - "size": 7790, - "sha1": "f90507ea4ba05513f53915b81572b996cbaea3a1", - "md5": "76fa110108753c4978b4462fcca7ca78", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/pkcs12/p12_npas.c", - "type": "file", - "name": "p12_npas.c", - "base_name": "p12_npas", - "extension": ".c", - "date": "2017-05-25", - "size": 5749, - "sha1": "de7ce4ce2b5074beb369b2aa4277548b6c2b422b", - "md5": "909a6be5a80659ef65acb55603d00c22", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/pkcs12/p12_p8d.c", - "type": "file", - "name": "p12_p8d.c", - "base_name": "p12_p8d", - "extension": ".c", - "date": "2017-05-25", - "size": 811, - "sha1": "b27ec296cf575029a72b817bb7d6b3b725974850", - "md5": "08dac86d03d351b9b96bb2c646b693cd", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/pkcs12/p12_p8e.c", - "type": "file", - "name": "p12_p8e.c", - "base_name": "p12_p8e", - "extension": ".c", - "date": "2017-05-25", - "size": 2010, - "sha1": "464a11107a906f8985cca9caf72b4b584f9172c4", - "md5": "068eb5fdd69e40bf9f3dfb20282a2bec", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/pkcs12/p12_sbag.c", - "type": "file", - "name": "p12_sbag.c", - "base_name": "p12_sbag", - "extension": ".c", - "date": "2017-05-25", - "size": 4857, - "sha1": "880c469e157c77047b0b876acef06ac66b6ebf0b", - "md5": "61ac251bdd27fd8a1c79725063a1a4f2", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/pkcs12/p12_utl.c", - "type": "file", - "name": "p12_utl.c", - "base_name": "p12_utl", - "extension": ".c", - "date": "2017-05-25", - "size": 7256, - "sha1": "55a74ccb2774a8fb33699d409ca00bd170a8d787", - "md5": "2b460253114806921e295cbb732947a7", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/pkcs12/pk12err.c", - "type": "file", - "name": "pk12err.c", - "base_name": "pk12err", - "extension": ".c", - "date": "2017-05-25", - "size": 4258, - "sha1": "bb072f7a45c592cfb07ab53861c42cc67a80c668", - "md5": "ecbc928443e6f730d8807d1eacf5a0a3", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/crypto/pkcs7/bio_pk7.c", - "type": "file", - "name": "bio_pk7.c", - "base_name": "bio_pk7", - "extension": ".c", - "date": "2017-05-25", - "size": 653, - "sha1": "db00f7bdbb56c1fb0d0fc6821e3058e47095928a", - "md5": "f3b226e24e7a07f3190134bd04432512", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/pkcs7/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 152, - "sha1": "07348d1551a3d40cd291752212559825dfeb2247", - "md5": "37f86d63a3e805552e871daa66df3941", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/pkcs7/pk7_asn1.c", - "type": "file", - "name": "pk7_asn1.c", - "base_name": "pk7_asn1", - "extension": ".c", - "date": "2017-05-25", - "size": 7525, - "sha1": "9f014d78a9c2292478babe3d181e21422f51c773", - "md5": "0f53888d58431f2bfbcd75002c9c3617", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/pkcs7/pk7_attr.c", - "type": "file", - "name": "pk7_attr.c", - "base_name": "pk7_attr", - "extension": ".c", - "date": "2017-05-25", - "size": 3741, - "sha1": "e8ba63b1c2879b3a4d944d7a3d2e4bc872bb42a0", - "md5": "111d65992b4583e3d8e4bef28925206a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/pkcs7/pk7_dgst.c", - "type": "file", - "name": "pk7_dgst.c", - "base_name": "pk7_dgst", - "extension": ".c", - "date": "2017-05-25", - "size": 491, - "sha1": "fcc13e4d61c33f3c68df905cab24d96cd28a2e86", - "md5": "256cc7ead5bce656206f64b0261dad87", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/pkcs7/pk7_doit.c", - "type": "file", - "name": "pk7_doit.c", - "base_name": "pk7_doit", - "extension": ".c", - "date": "2017-05-25", - "size": 34553, - "sha1": "9a0041a784caf34f7677ae24bfe79c3af51cad52", - "md5": "061e019b476f5f0d57b277b1ec12f134", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/pkcs7/pk7_enc.c", - "type": "file", - "name": "pk7_enc.c", - "base_name": "pk7_enc", - "extension": ".c", - "date": "2017-05-25", - "size": 738, - "sha1": "c3c27007ded720ae6dbed38865ef300825f21846", - "md5": "b8b78328189c6046e7c6bc4ad11fe59e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/pkcs7/pk7_lib.c", - "type": "file", - "name": "pk7_lib.c", - "base_name": "pk7_lib", - "extension": ".c", - "date": "2017-05-25", - "size": 15625, - "sha1": "080b70b60b3d1b79b1f9e01563944a6a743c5700", - "md5": "4727837fe3d9f99d2d925d44b53f6f3e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/pkcs7/pk7_mime.c", - "type": "file", - "name": "pk7_mime.c", - "base_name": "pk7_mime", - "extension": ".c", - "date": "2017-05-25", - "size": 1514, - "sha1": "23211b1eda5a761e81fa4f7f3a156f90547579e3", - "md5": "c86ab8fa200601a9af9d53d0e33dccac", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/pkcs7/pk7_smime.c", - "type": "file", - "name": "pk7_smime.c", - "base_name": "pk7_smime", - "extension": ".c", - "date": "2017-05-25", - "size": 16340, - "sha1": "cc08e24a0deed576bce5b399f368af32a0ff09ff", - "md5": "91ed5640f12caa218af8a7a375a0ab10", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/pkcs7/pkcs7err.c", - "type": "file", - "name": "pkcs7err.c", - "base_name": "pkcs7err", - "extension": ".c", - "date": "2017-05-25", - "size": 6255, - "sha1": "23bb0dfd93c1f448ee11196e8c02172639a7839f", - "md5": "03bf99ba680dcba01b075edfa97111e3", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/crypto/poly1305/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 915, - "sha1": "ee36dfeed8c06450f6c8349f60fa4b7f9047a552", - "md5": "7c0a63adbeb9f0175086805477273fca", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/poly1305/poly1305.c", - "type": "file", - "name": "poly1305.c", - "base_name": "poly1305", - "extension": ".c", - "date": "2017-05-25", - "size": 36535, - "sha1": "ce01b26dfbe0430b87ff5dac3f2a47719894d740", - "md5": "9a9735b944f2b9ae3f517ad7ebd55b37", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/poly1305/poly1305_ieee754.c", - "type": "file", - "name": "poly1305_ieee754.c", - "base_name": "poly1305_ieee754", - "extension": ".c", - "date": "2017-05-25", - "size": 13663, - "sha1": "ca94c4e5c3a4a4ec3d4e0ffa43adcd6871a5bf2a", - "md5": "99f7f413df4dca181e145fbaea9228e2", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/poly1305/asm", - "type": "directory", - "name": "asm", - "base_name": "asm", - "extension": "", - "date": null, - "size": 233576, - "sha1": null, - "md5": null, - "files_count": 10, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/poly1305/asm/poly1305-armv4.pl", - "type": "file", - "name": "poly1305-armv4.pl", - "base_name": "poly1305-armv4", - "extension": ".pl", - "date": "2017-05-25", - "size": 29748, - "sha1": "dda8fd6ec865acbfa3641dec250d99aa7f6ec14a", - "md5": "c44329c60173e4f3640d7b9a442648cd", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/poly1305/asm/poly1305-armv8.pl", - "type": "file", - "name": "poly1305-armv8.pl", - "base_name": "poly1305-armv8", - "extension": ".pl", - "date": "2017-05-25", - "size": 21476, - "sha1": "db31e24a21488e704b5b512346341e701a1adf9d", - "md5": "4d8fd7744dfd7e132d09fe48205b0034", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/poly1305/asm/poly1305-c64xplus.pl", - "type": "file", - "name": "poly1305-c64xplus.pl", - "base_name": "poly1305-c64xplus", - "extension": ".pl", - "date": "2017-05-25", - "size": 8696, - "sha1": "de630ead18fe84e0ace789b8b7c0db7807222d60", - "md5": "cf3cc7b1d03d172460afc8d99366d7ae", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/poly1305/asm/poly1305-mips.pl", - "type": "file", - "name": "poly1305-mips.pl", - "base_name": "poly1305-mips", - "extension": ".pl", - "date": "2017-05-25", - "size": 8744, - "sha1": "43271d2e01b5dee82de1eb7665cd768b0a2129e9", - "md5": "b303d863ef5b60b42513b4d77ca850d3", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/poly1305/asm/poly1305-ppc.pl", - "type": "file", - "name": "poly1305-ppc.pl", - "base_name": "poly1305-ppc", - "extension": ".pl", - "date": "2017-05-25", - "size": 13608, - "sha1": "f6cf8da22340b5c5132271e01ef5886b43573774", - "md5": "fba2eccf3cb63c0edcddcb12b0f7442b", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/poly1305/asm/poly1305-ppcfp.pl", - "type": "file", - "name": "poly1305-ppcfp.pl", - "base_name": "poly1305-ppcfp", - "extension": ".pl", - "date": "2017-05-25", - "size": 17531, - "sha1": "94a80a6f63544a425fcb58bb8655665507ed244a", - "md5": "9a36f31bf0a86a4cda3fbaaccc9ff712", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/poly1305/asm/poly1305-s390x.pl", - "type": "file", - "name": "poly1305-s390x.pl", - "base_name": "poly1305-s390x", - "extension": ".pl", - "date": "2017-05-25", - "size": 4609, - "sha1": "d4eb7bf3f86c09193aa2236c9261d8dc75aa8aae", - "md5": "51b3f0adb10acc958775cea4d2de119c", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/poly1305/asm/poly1305-sparcv9.pl", - "type": "file", - "name": "poly1305-sparcv9.pl", - "base_name": "poly1305-sparcv9", - "extension": ".pl", - "date": "2017-05-25", - "size": 24273, - "sha1": "588c7db1f72cdc43f3262ee6f5eabdb67656f670", - "md5": "f6ef31761560da47d017650e77caa975", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/poly1305/asm/poly1305-x86.pl", - "type": "file", - "name": "poly1305-x86.pl", - "base_name": "poly1305-x86", - "extension": ".pl", - "date": "2017-05-25", - "size": 51671, - "sha1": "0af5382772e74d4695d26317a69fe559087db8cd", - "md5": "c015c7ca0456d12d1b2b19142274c84e", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 53220, - "sha1": "867700c35c2ae058e0a0edef85673e942bc8af9a", - "md5": "b45f319efe8224b41ba6006280bdec09", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/rand/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 153, - "sha1": "41e67928f3567ee91658afd4e74e2bb24d4ba16a", - "md5": "a6d7936384da8dd9f721c1a5fe9a3245", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/rand/md_rand.c", - "type": "file", - "name": "md_rand.c", - "base_name": "md_rand", - "extension": ".c", - "date": "2017-05-25", - "size": 18938, - "sha1": "24a41529456299ccaf4f41e92d5fb46ce6f96ac0", - "md5": "67297235ac6925e5a7849d0b6c34edf8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/rand/randfile.c", - "type": "file", - "name": "randfile.c", - "base_name": "randfile", - "extension": ".c", - "date": "2017-05-25", - "size": 10593, - "sha1": "328a680640439714d921fef5a73fc48016d19bac", - "md5": "61b9ddd60f3cf82d0d464645e984c9c8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/rand/rand_egd.c", - "type": "file", - "name": "rand_egd.c", - "base_name": "rand_egd", - "extension": ".c", - "date": "2017-05-25", - "size": 7122, - "sha1": "71c0875546630b460f3f6a71c48132ee16633945", - "md5": "c206d111b8c79ad7bc1fb3473f7b364f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/rand/rand_err.c", - "type": "file", - "name": "rand_err.c", - "base_name": "rand_err", - "extension": ".c", - "date": "2017-05-25", - "size": 1102, - "sha1": "e82e67ea5d7929b575341da6fd356268fe971556", - "md5": "d7f5d1a9ea86947594b516f2c822aca8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/crypto/rand/rand_lcl.h", - "type": "file", - "name": "rand_lcl.h", - "base_name": "rand_lcl", - "extension": ".h", - "date": "2017-05-25", - "size": 1836, - "sha1": "3638d379326cf00b422d5128382554788f981601", - "md5": "70777724039ddf9b2c9288155825e2d0", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/rand/rand_lib.c", - "type": "file", - "name": "rand_lib.c", - "base_name": "rand_lib", - "extension": ".c", - "date": "2017-05-25", - "size": 4168, - "sha1": "3d2aaf030ab4fb653941fb0d42295f95d2e8722a", - "md5": "6e25b1401c06faf5f4603c983c8a5056", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/rand/rand_unix.c", - "type": "file", - "name": "rand_unix.c", - "base_name": "rand_unix", - "extension": ".c", - "date": "2017-05-25", - "size": 9654, - "sha1": "774fda97132236720997c806c959f28257f048dd", - "md5": "943212a938d29ae63c91d2254e3b4b00", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/rand/rand_vms.c", - "type": "file", - "name": "rand_vms.c", - "base_name": "rand_vms", - "extension": ".c", - "date": "2017-05-25", - "size": 3865, - "sha1": "c8ddaa7e430f9751babd766e1d5b472ac2c308a6", - "md5": "4f3f22b1f14a372687236b10da4a369b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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 (2016)" - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/rand/rand_win.c", - "type": "file", - "name": "rand_win.c", - "base_name": "rand_win", - "extension": ".c", - "date": "2017-05-25", - "size": 3488, - "sha1": "6317f9f005ace589057ad61f981d286f7d99597d", - "md5": "588a5c8827efb10e5d16fdfb4895329f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/rc2/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 108, - "sha1": "eaa9ae9270654e3b146b0c77a44fe3aa17c14cc6", - "md5": "4adb567ec157843f3bccab4f05510c57", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/rc2/rc2cfb64.c", - "type": "file", - "name": "rc2cfb64.c", - "base_name": "rc2cfb64", - "extension": ".c", - "date": "2017-05-25", - "size": 2184, - "sha1": "c797f59a53f7a6013e840bc25eb4669b79640108", - "md5": "2ccade916377a4789edecd132155baeb", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/rc2/rc2ofb64.c", - "type": "file", - "name": "rc2ofb64.c", - "base_name": "rc2ofb64", - "extension": ".c", - "date": "2017-05-25", - "size": 1620, - "sha1": "9ac6d472b2f0b119167ae435e1da1b26b65f7394", - "md5": "8742f94e853ff6dc2edc9af2a34e937e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/rc2/rc2_cbc.c", - "type": "file", - "name": "rc2_cbc.c", - "base_name": "rc2_cbc", - "extension": ".c", - "date": "2017-05-25", - "size": 4957, - "sha1": "178728f613112f0529e09e22c15eb2ec0482f5ca", - "md5": "00fb8b740e4db82d1498a8cf6c207ccf", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/rc2/rc2_ecb.c", - "type": "file", - "name": "rc2_ecb.c", - "base_name": "rc2_ecb", - "extension": ".c", - "date": "2017-05-25", - "size": 1048, - "sha1": "20ab6340ba97458b8a7df028979d653b189a2eb4", - "md5": "eaad2da7cffb14d243819726e01b9ef6", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/rc2/rc2_locl.h", - "type": "file", - "name": "rc2_locl.h", - "base_name": "rc2_locl", - "extension": ".h", - "date": "2017-05-25", - "size": 5085, - "sha1": "a9449efe089cfe9501a44b578617781631d45156", - "md5": "79be97a4913ac746ae5f9470c3a60c27", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/rc2/rc2_skey.c", - "type": "file", - "name": "rc2_skey.c", - "base_name": "rc2_skey", - "extension": ".c", - "date": "2017-05-25", - "size": 3565, - "sha1": "8bdb694e04d2d5d20630bdd9ae0185372fa1e069", - "md5": "b0b1b2059422f1e508fded8923fe8023", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/rc2/tab.c", - "type": "file", - "name": "tab.c", - "base_name": "tab", - "extension": ".c", - "date": "2017-05-25", - "size": 3975, - "sha1": "eaaffee79b5ee29f409cfff9970fa7846dd09836", - "md5": "3429a2d35f44b9cf1a0ebae28a05e76a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/rc4/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 1218, - "sha1": "2ae56d1ced767822109dea612874791a92af74a9", - "md5": "1c8114a9fca1e695d6df77061d9c31b2", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/rc4/rc4_enc.c", - "type": "file", - "name": "rc4_enc.c", - "base_name": "rc4_enc", - "extension": ".c", - "date": "2017-05-25", - "size": 2301, - "sha1": "e3989f33bec912571d3b22e7796dc38cd7119e64", - "md5": "852095901c5695c438cda9a386a8a46e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/rc4/rc4_locl.h", - "type": "file", - "name": "rc4_locl.h", - "base_name": "rc4_locl", - "extension": ".h", - "date": "2017-05-25", - "size": 462, - "sha1": "e161b137803b2449b5520a22820a57e21a4e7a4f", - "md5": "a9ce1ceec4744983ce2827bf85152205", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/rc4/rc4_skey.c", - "type": "file", - "name": "rc4_skey.c", - "base_name": "rc4_skey", - "extension": ".c", - "date": "2017-05-25", - "size": 1450, - "sha1": "95e144675c8b0cbfe16eff0fe1c153523d9802b5", - "md5": "e1879ea91df68a29f7ce99514b295962", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/rc4/asm", - "type": "directory", - "name": "asm", - "base_name": "asm", - "extension": "", - "date": null, - "size": 83738, - "sha1": null, - "md5": null, - "files_count": 7, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/rc4/asm/rc4-586.pl", - "type": "file", - "name": "rc4-586.pl", - "base_name": "rc4-586", - "extension": ".pl", - "date": "2017-05-25", - "size": 12509, - "sha1": "7182f6e37dce1777dd5578e269012d55e8f11b8f", - "md5": "5868b23178396061c0221cdaeaaf8e14", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 92.31, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 92.31, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 92.31, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/rc4/asm/rc4-c64xplus.pl", - "type": "file", - "name": "rc4-c64xplus.pl", - "base_name": "rc4-c64xplus", - "extension": ".pl", - "date": "2017-05-25", - "size": 4276, - "sha1": "5ef52684554c8c4b0b1c23ca18bd2c6e6cbc325a", - "md5": "3752005e56da28cb021a8ccafe634a33", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/rc4/asm/rc4-ia64.pl", - "type": "file", - "name": "rc4-ia64.pl", - "base_name": "rc4-ia64", - "extension": ".pl", - "date": "2017-05-25", - "size": 22633, - "sha1": "17414c6d7de7c42eb145e90e7a6fd6941a83944a", - "md5": "82beab1f126875b988f8fce33f703c5e", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", - "spdx_license_key": "MIT", - "spdx_url": "https://spdx.org/licenses/MIT", - "start_line": 17, - "end_line": 34, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 16497, - "sha1": "035d61eff9c6128b373d781ed2bd70c90c4a7675", - "md5": "b0425a8e08100fa028b4aef7cd059e22", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/rc4/asm/rc4-parisc.pl", - "type": "file", - "name": "rc4-parisc.pl", - "base_name": "rc4-parisc", - "extension": ".pl", - "date": "2017-05-25", - "size": 7029, - "sha1": "9a715a2411b73b6aed4a90f4a10383a2207f1762", - "md5": "95776c322fdfcab0467c267c6a62004a", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 96.1, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 96.1, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 96.1, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/rc4/asm/rc4-s390x.pl", - "type": "file", - "name": "rc4-s390x.pl", - "base_name": "rc4-s390x", - "extension": ".pl", - "date": "2017-05-25", - "size": 4658, - "sha1": "eae9b5c5f90755c850eb7dcd00afe7eacf122e6d", - "md5": "8d67925351cbac2e6daec774f8eefd9c", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 96.1, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 96.1, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 96.1, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 16136, - "sha1": "5fcc1e87b2b623f75b4e250039371d5b7578a44a", - "md5": "c3753d747e78cdb429a494a9cc3ad5f9", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 96.1, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 96.1, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 96.1, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/rc5/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 260, - "sha1": "4b69cea9f5bebb4836f11c843c8891b36bda4a15", - "md5": "2b1266c35da537a45da7191bb175e6ed", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/rc5/rc5cfb64.c", - "type": "file", - "name": "rc5cfb64.c", - "base_name": "rc5cfb64", - "extension": ".c", - "date": "2017-05-25", - "size": 2202, - "sha1": "698492fe7f3dc49ee4a07ab6a103ab4e7febc417", - "md5": "75fe42d80eff736ceea3f9e0b8864661", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/rc5/rc5ofb64.c", - "type": "file", - "name": "rc5ofb64.c", - "base_name": "rc5ofb64", - "extension": ".c", - "date": "2017-05-25", - "size": 1635, - "sha1": "1e5ee86ce9848eadaf92ed330d94c6bd6612c877", - "md5": "648f590c7a8aa0e8559b18c5398a4e29", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/rc5/rc5_ecb.c", - "type": "file", - "name": "rc5_ecb.c", - "base_name": "rc5_ecb", - "extension": ".c", - "date": "2017-05-25", - "size": 801, - "sha1": "de26bda32c583981bfd196ccbaf070dedefc0cfd", - "md5": "d979cb9ba1e0e57275094c9adeddb4e9", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/rc5/rc5_enc.c", - "type": "file", - "name": "rc5_enc.c", - "base_name": "rc5_enc", - "extension": ".c", - "date": "2017-05-25", - "size": 4239, - "sha1": "ba418c400f54f2a0650e6a4b50bdf76964914359", - "md5": "15bd870acb514f05a2f24e211ac5d602", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/rc5/rc5_locl.h", - "type": "file", - "name": "rc5_locl.h", - "base_name": "rc5_locl", - "extension": ".h", - "date": "2017-05-25", - "size": 7044, - "sha1": "5376f793dfb2ba1f1e750f6fcd1ad52ac5024cff", - "md5": "16a5f8e822ac63c51edbb92a61457d80", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/rc5/rc5_skey.c", - "type": "file", - "name": "rc5_skey.c", - "base_name": "rc5_skey", - "extension": ".c", - "date": "2017-05-25", - "size": 1560, - "sha1": "b26bd1eb490334ff31cced237e2c6cfe73b97dd9", - "md5": "cadd0616e2eaf6397c8e576473cdc584", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/rc5/asm", - "type": "directory", - "name": "asm", - "base_name": "asm", - "extension": "", - "date": null, - "size": 2379, - "sha1": null, - "md5": null, - "files_count": 1, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/rc5/asm/rc5-586.pl", - "type": "file", - "name": "rc5-586.pl", - "base_name": "rc5-586", - "extension": ".pl", - "date": "2017-05-25", - "size": 2379, - "sha1": "ec27148acb261cc98f78dc257f1526c95c53f2c9", - "md5": "62323afbe118b6a464225a68b3c97e40", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ripemd/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 223, - "sha1": "f39d9ef2d1e5a91e0844f6930a0bee447af09ab7", - "md5": "cbf94ffc940a52b9c6a23edc936c8db0", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/ripemd/rmdconst.h", - "type": "file", - "name": "rmdconst.h", - "base_name": "rmdconst", - "extension": ".h", - "date": "2017-05-25", - "size": 5705, - "sha1": "65c32a03556b59e9a1977ada2a1696ca221c89f2", - "md5": "9fc2acdd63cee791dd64a33143746bef", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/ripemd/rmd_dgst.c", - "type": "file", - "name": "rmd_dgst.c", - "base_name": "rmd_dgst", - "extension": ".c", - "date": "2017-05-25", - "size": 9946, - "sha1": "f9a71c60f6c02ccfcde28c31a8b126bc31355c8c", - "md5": "b8d9ff6cd95dab01da05cfb19c3fceb0", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/ripemd/rmd_locl.h", - "type": "file", - "name": "rmd_locl.h", - "base_name": "rmd_locl", - "extension": ".h", - "date": "2017-05-25", - "size": 2750, - "sha1": "09e4264dff06f51795b91b6c4c5c52f418121335", - "md5": "eb0fd445ba7221354b84aa76e7f806b6", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/ripemd/rmd_one.c", - "type": "file", - "name": "rmd_one.c", - "base_name": "rmd_one", - "extension": ".c", - "date": "2017-05-25", - "size": 816, - "sha1": "76b68c6dd5655fcdd993a8a2683ac619a1265b78", - "md5": "9eba5a059de2e7c84d00ae3d645358c4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/ripemd/asm", - "type": "directory", - "name": "asm", - "base_name": "asm", - "extension": "", - "date": null, - "size": 16616, - "sha1": null, - "md5": null, - "files_count": 1, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/ripemd/asm/rmd-586.pl", - "type": "file", - "name": "rmd-586.pl", - "base_name": "rmd-586", - "extension": ".pl", - "date": "2017-05-25", - "size": 16616, - "sha1": "7adc1297723b0217285fcff9ad872990d9a1f8b1", - "md5": "16cf5251a4f2dc7e7bf1d4e408c60bac", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/rsa/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 322, - "sha1": "174d79849aa011a095285ab97f3bf457eb82c5cb", - "md5": "65d3e0efd3244de6f952decd437212c4", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/rsa/rsa_ameth.c", - "type": "file", - "name": "rsa_ameth.c", - "base_name": "rsa_ameth", - "extension": ".c", - "date": "2017-05-25", - "size": 23971, - "sha1": "ef766c2badb7c084649a6f1589ac0bab182321fd", - "md5": "752815fb4c5a39df8fae92d1329d390c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/rsa/rsa_asn1.c", - "type": "file", - "name": "rsa_asn1.c", - "base_name": "rsa_asn1", - "extension": ".c", - "date": "2017-05-25", - "size": 2581, - "sha1": "329540c90b330cd0e306b76fb5685e79c4a1c890", - "md5": "da0f114d9ff88368d10aeee66b0474c5", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/rsa/rsa_chk.c", - "type": "file", - "name": "rsa_chk.c", - "base_name": "rsa_chk", - "extension": ".c", - "date": "2017-05-25", - "size": 3877, - "sha1": "d086267424736acb83137dbf4a665931c42e2120", - "md5": "b958f64d34b5656e66c0dc83d052975c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/rsa/rsa_crpt.c", - "type": "file", - "name": "rsa_crpt.c", - "base_name": "rsa_crpt", - "extension": ".c", - "date": "2017-05-25", - "size": 4382, - "sha1": "7ba6643b2e9f4e572fbfe61abaaedff120504020", - "md5": "0c51f777f3d304c6707c95e4ce71f2a0", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/rsa/rsa_depr.c", - "type": "file", - "name": "rsa_depr.c", - "base_name": "rsa_depr", - "extension": ".c", - "date": "2017-05-25", - "size": 1498, - "sha1": "65d25c4866c3a482283382994330c45cc827f79f", - "md5": "6f04ab9daa98ca8fd1e8c99ae499579e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/rsa/rsa_err.c", - "type": "file", - "name": "rsa_err.c", - "base_name": "rsa_err", - "extension": ".c", - "date": "2017-05-25", - "size": 9394, - "sha1": "03a3327c0b3cbba2d116c7e862e91bcb6cf7b80e", - "md5": "9bb162833772cf991688dd00e7875190", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/crypto/rsa/rsa_gen.c", - "type": "file", - "name": "rsa_gen.c", - "base_name": "rsa_gen", - "extension": ".c", - "date": "2017-05-25", - "size": 5664, - "sha1": "7b03c3843b077d8c8b71a4067bd5026bd145760f", - "md5": "fb025fc00f4670b9a45154b6fa4083ae", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/rsa/rsa_lib.c", - "type": "file", - "name": "rsa_lib.c", - "base_name": "rsa_lib", - "extension": ".c", - "date": "2017-05-25", - "size": 6703, - "sha1": "01077098e37e7986ce40170496982e7dfbecf97b", - "md5": "2e0c50e47228c5f9ee5ccd7026ee953a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/rsa/rsa_locl.h", - "type": "file", - "name": "rsa_locl.h", - "base_name": "rsa_locl", - "extension": ".h", - "date": "2017-05-25", - "size": 3587, - "sha1": "2f4123c1edd2fef6a96d29282e5de3231485dac7", - "md5": "a599ac2288dfa65abf75eff0e68a1e66", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/rsa/rsa_meth.c", - "type": "file", - "name": "rsa_meth.c", - "base_name": "rsa_meth", - "extension": ".c", - "date": "2017-05-25", - "size": 6996, - "sha1": "c4ed19ff2db7988b7fe58c12b76877a59aabbf69", - "md5": "2c5dd6f8f12ae6a06b704d7cf981f6d7", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/rsa/rsa_none.c", - "type": "file", - "name": "rsa_none.c", - "base_name": "rsa_none", - "extension": ".c", - "date": "2017-05-25", - "size": 1198, - "sha1": "2ebda8df93087c3ef902a9c3e15a8328040e881b", - "md5": "980f7db19ead50658c2c30fa1ee08d9c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/rsa/rsa_null.c", - "type": "file", - "name": "rsa_null.c", - "base_name": "rsa_null", - "extension": ".c", - "date": "2017-05-25", - "size": 2959, - "sha1": "4dbffa07881bc0975e50905e6f776cc6014598e5", - "md5": "ac15e9ef0bd96858983cd791816ec7e2", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/rsa/rsa_oaep.c", - "type": "file", - "name": "rsa_oaep.c", - "base_name": "rsa_oaep", - "extension": ".c", - "date": "2017-05-25", - "size": 9135, - "sha1": "10ebb11e86af7491b54183e18e9af93329431d27", - "md5": "8e3059faf461700f1f6f09cbab846246", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/rsa/rsa_ossl.c", - "type": "file", - "name": "rsa_ossl.c", - "base_name": "rsa_ossl", - "extension": ".c", - "date": "2017-05-25", - "size": 23295, - "sha1": "9e3ccb7e97dbc5a37a30f1e335ac8473b4e4d27f", - "md5": "5ebbb06738b4892febd0c37d9f96368d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/rsa/rsa_pk1.c", - "type": "file", - "name": "rsa_pk1.c", - "base_name": "rsa_pk1", - "extension": ".c", - "date": "2017-05-25", - "size": 6689, - "sha1": "59b62f7d8501bede89ff5884672a09afc037c3c4", - "md5": "915dc8d16cc677bc95f1541f3a6b78c1", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/rsa/rsa_pmeth.c", - "type": "file", - "name": "rsa_pmeth.c", - "base_name": "rsa_pmeth", - "extension": ".c", - "date": "2017-05-25", - "size": 20023, - "sha1": "4ea3934b8edb7e790afc1aa0a65787586da8562f", - "md5": "b72bae0b4a174f8cc2e6020921897308", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/rsa/rsa_prn.c", - "type": "file", - "name": "rsa_prn.c", - "base_name": "rsa_prn", - "extension": ".c", - "date": "2017-05-25", - "size": 1047, - "sha1": "0fcdc28bc660d20de1af03ff407c2a3487f7443a", - "md5": "6bbaaf5e3154694f2b892ff7de619c3f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/rsa/rsa_pss.c", - "type": "file", - "name": "rsa_pss.c", - "base_name": "rsa_pss", - "extension": ".c", - "date": "2017-05-25", - "size": 7013, - "sha1": "08db0b55cb1d1b5f3bf2c5e0b5a4a57fa54dea1e", - "md5": "009fc6c3589d5d2c3fd828d15543cb6f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/rsa/rsa_saos.c", - "type": "file", - "name": "rsa_saos.c", - "base_name": "rsa_saos", - "extension": ".c", - "date": "2017-05-25", - "size": 2749, - "sha1": "b15a755be2201fd940e6ec05a2d4a16dec423309", - "md5": "161c1af28c6bc7fa6f9d9798aa355979", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/rsa/rsa_sign.c", - "type": "file", - "name": "rsa_sign.c", - "base_name": "rsa_sign", - "extension": ".c", - "date": "2017-05-25", - "size": 7930, - "sha1": "19b0ee5d256f8b9f7a8e42fe48c1a92e6b8a18fe", - "md5": "b92c3ffcba476eb56ede1d106483d14e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/rsa/rsa_ssl.c", - "type": "file", - "name": "rsa_ssl.c", - "base_name": "rsa_ssl", - "extension": ".c", - "date": "2017-05-25", - "size": 2547, - "sha1": "271af45a99d3936b4c8a7f34b6c6c246798999d5", - "md5": "98b49fa3e8636db68fa37ce5d4daf179", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/rsa/rsa_x931.c", - "type": "file", - "name": "rsa_x931.c", - "base_name": "rsa_x931", - "extension": ".c", - "date": "2017-05-25", - "size": 2607, - "sha1": "3051e0d75afd1c69644d15f5162146119fbfb7af", - "md5": "632b2657ac38f265ebb3e7d4e633c69d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/rsa/rsa_x931g.c", - "type": "file", - "name": "rsa_x931g.c", - "base_name": "rsa_x931g", - "extension": ".c", - "date": "2017-05-25", - "size": 4720, - "sha1": "2c926970cb84c36a55def096c462ae461ef333cf", - "md5": "d1a536fb41f445c23f4f7ffc4bdd2188", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/seed/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 96, - "sha1": "e2beacf58ba2dd33737a64bd9aaaabddd611825e", - "md5": "2e0dfe778f5041e00e9b6dcdf8b7f43f", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/seed/seed.c", - "type": "file", - "name": "seed.c", - "base_name": "seed", - "extension": ".c", - "date": "2017-05-25", - "size": 25912, - "sha1": "816ba880c54a7de17354234361c2452b68699ff5", - "md5": "8ed99bb36edb37571d5befc4dbdf6678", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": 98.34, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.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_151.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 KISA Korea Information" - ], - "holders": [], - "authors": [], - "start_line": 11, - "end_line": 11 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/seed/seed_cbc.c", - "type": "file", - "name": "seed_cbc.c", - "base_name": "seed_cbc", - "extension": ".c", - "date": "2017-05-25", - "size": 836, - "sha1": "4f4e6bc17fcc9e78bd5c2e5dc7c8f82d93a54f32", - "md5": "83401c2e9a4e04ee03ec0e008976aa4e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/seed/seed_cfb.c", - "type": "file", - "name": "seed_cfb.c", - "base_name": "seed_cfb", - "extension": ".c", - "date": "2017-05-25", - "size": 748, - "sha1": "9f57adf9ce22edc7ef716c8d4bffc7e70d1f44a3", - "md5": "629e41749664b0f2657d5b3c2f473aaf", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/seed/seed_ecb.c", - "type": "file", - "name": "seed_ecb.c", - "base_name": "seed_ecb", - "extension": ".c", - "date": "2017-05-25", - "size": 584, - "sha1": "0c28c8f40ddaf90153f82954a3dfad24ece1f078", - "md5": "4fe18e7d329d2b072ac03f2bd1d7d5c8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/seed/seed_locl.h", - "type": "file", - "name": "seed_locl.h", - "base_name": "seed_locl", - "extension": ".h", - "date": "2017-05-25", - "size": 4614, - "sha1": "f2600dbea893bf8514d71d59dc5e2c5e0c8c43fb", - "md5": "ece7258328b9b7407706a6b64409e4b5", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": 98.34, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.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_151.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 KISA Korea Information" - ], - "holders": [], - "authors": [], - "start_line": 11, - "end_line": 11 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/seed/seed_ofb.c", - "type": "file", - "name": "seed_ofb.c", - "base_name": "seed_ofb", - "extension": ".c", - "date": "2017-05-25", - "size": 709, - "sha1": "898fe5928c5b155acde45f4c0afd61789c61d735", - "md5": "58dba895273fee136ba78131d714c1c6", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/sha/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 3043, - "sha1": "110b6d934d897064d8c206052c2a5b03ba44ba70", - "md5": "0643b9546832b4eb4316d9d13c3dfeb5", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/sha/sha1dgst.c", - "type": "file", - "name": "sha1dgst.c", - "base_name": "sha1dgst", - "extension": ".c", - "date": "2017-05-25", - "size": 500, - "sha1": "0dd5422267d893dc9347efbdcaf6764c208da654", - "md5": "4cbb371b1073ce4a5422e6a31a9842ed", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/sha/sha1_one.c", - "type": "file", - "name": "sha1_one.c", - "base_name": "sha1_one", - "extension": ".c", - "date": "2017-05-25", - "size": 752, - "sha1": "c6c74664b6502d0c74e992007c5f9b6c5941d939", - "md5": "a1dfdd9a66a473d9865cc30ddac873cb", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/sha/sha256.c", - "type": "file", - "name": "sha256.c", - "base_name": "sha256", - "extension": ".c", - "date": "2017-05-25", - "size": 12436, - "sha1": "67a8f8e9d03f2b13fb91f444c864ccb3bf128261", - "md5": "6ca8a6c0afa8513c6a018c667e0e75d4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/sha/sha512.c", - "type": "file", - "name": "sha512.c", - "base_name": "sha512", - "extension": ".c", - "date": "2017-05-25", - "size": 23182, - "sha1": "7aeffd7de529db7156065df82f455fc4539c6b9e", - "md5": "788b71184f1a470ffdda0c0ed2570f07", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/sha/sha_locl.h", - "type": "file", - "name": "sha_locl.h", - "base_name": "sha_locl", - "extension": ".h", - "date": "2017-05-25", - "size": 15590, - "sha1": "20e9e6300d6e98c023352a20ed9c3e023a78cf86", - "md5": "662494692577f84f0400875700d90a9b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/sha/asm", - "type": "directory", - "name": "asm", - "base_name": "asm", - "extension": "", - "date": null, - "size": 602843, - "sha1": null, - "md5": null, - "files_count": 31, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/sha/asm/sha1-586.pl", - "type": "file", - "name": "sha1-586.pl", - "base_name": "sha1-586", - "extension": ".pl", - "date": "2017-05-25", - "size": 44372, - "sha1": "07587966c4aa18aed8877f1ae6cf2016f107ffa1", - "md5": "856f95a862da6000b388ff85b7277c4e", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 91.14, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 91.14, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 91.14, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/sha/asm/sha1-alpha.pl", - "type": "file", - "name": "sha1-alpha.pl", - "base_name": "sha1-alpha", - "extension": ".pl", - "date": "2017-05-25", - "size": 6278, - "sha1": "781c551e7ea2fd121c1f10884be283f07b4a1900", - "md5": "e61f2f33cc33d94c0aabe618edb7186f", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 96.1, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 96.1, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 96.1, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 19097, - "sha1": "1aec10c9758533ae83bf61c2fbfc2cc491d6fdf2", - "md5": "1d48b3932d25540f268dc925da8b654c", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/sha/asm/sha1-armv8.pl", - "type": "file", - "name": "sha1-armv8.pl", - "base_name": "sha1-armv8", - "extension": ".pl", - "date": "2017-05-25", - "size": 8239, - "sha1": "dc88b81f57633455cc30e0a1499ff6120576405f", - "md5": "9515eb203a2f2dd33503ddf4145ce43b", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/sha/asm/sha1-c64xplus.pl", - "type": "file", - "name": "sha1-c64xplus.pl", - "base_name": "sha1-c64xplus", - "extension": ".pl", - "date": "2017-05-25", - "size": 8197, - "sha1": "b51f98b271605b78538e5ffe579473a3d6f9745e", - "md5": "1711a8ee664f1e41b03022b7a8e97c9a", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/sha/asm/sha1-ia64.pl", - "type": "file", - "name": "sha1-ia64.pl", - "base_name": "sha1-ia64", - "extension": ".pl", - "date": "2017-05-25", - "size": 9151, - "sha1": "6b5bd1778e347700dd382b70e537dfa8c13dd0c5", - "md5": "588787b13beafdc492b492a123fb8147", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 96.1, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 96.1, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 96.1, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 38096, - "sha1": "ebf80aad63c05d5eda6f1d4e187e82d1b4664d36", - "md5": "8d6d2f1e124aed95eb605b0d8bd99605", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/sha/asm/sha1-mips.pl", - "type": "file", - "name": "sha1-mips.pl", - "base_name": "sha1-mips", - "extension": ".pl", - "date": "2017-05-25", - "size": 10610, - "sha1": "b438ae7a124676ac5813af161bf56689d4d71fd9", - "md5": "c1f6d4efeaebe0cf3b217163e29db64d", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 96.1, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 96.1, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 96.1, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/sha/asm/sha1-parisc.pl", - "type": "file", - "name": "sha1-parisc.pl", - "base_name": "sha1-parisc", - "extension": ".pl", - "date": "2017-05-25", - "size": 6566, - "sha1": "97000e21502b2bb06378f99c67a4d6178da7ca92", - "md5": "609158b243bfe30c12296bec8d7d4791", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 96.1, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 96.1, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 96.1, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/sha/asm/sha1-ppc.pl", - "type": "file", - "name": "sha1-ppc.pl", - "base_name": "sha1-ppc", - "extension": ".pl", - "date": "2017-05-25", - "size": 8180, - "sha1": "cc949cd36da353bd5dcd9e49ec2170f66e0de40c", - "md5": "dcd2b7087e418c3ad1d17bfac6c361c3", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 96.1, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 96.1, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 96.1, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/sha/asm/sha1-s390x.pl", - "type": "file", - "name": "sha1-s390x.pl", - "base_name": "sha1-s390x", - "extension": ".pl", - "date": "2017-05-25", - "size": 5476, - "sha1": "c380a56d99521e3fdd815472edb95aef8037d7a3", - "md5": "2e6336e703538904c460d6638028ac3f", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 96.1, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 96.1, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 96.1, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/sha/asm/sha1-sparcv9.pl", - "type": "file", - "name": "sha1-sparcv9.pl", - "base_name": "sha1-sparcv9", - "extension": ".pl", - "date": "2017-05-25", - "size": 9437, - "sha1": "059d8c0890b241252e2bc607e111cd1bb5ac11e4", - "md5": "045caaf1f6bf793c23bfb308688708e8", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 96.1, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 96.1, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 96.1, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - }, - { - "statements": [], - "holders": [], - "authors": [ - "David S. Miller " - ], - "start_line": 16, - "end_line": 16 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/sha/asm/sha1-sparcv9a.pl", - "type": "file", - "name": "sha1-sparcv9a.pl", - "base_name": "sha1-sparcv9a", - "extension": ".pl", - "date": "2017-05-25", - "size": 16523, - "sha1": "256017752bc3d83ba12dfd48e7fedc84dcdc482d", - "md5": "609b2bf09fd43c59cfcd76ebf2710b30", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 96.1, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 96.1, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 96.1, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/sha/asm/sha1-thumb.pl", - "type": "file", - "name": "sha1-thumb.pl", - "base_name": "sha1-thumb", - "extension": ".pl", - "date": "2017-05-25", - "size": 5169, - "sha1": "bad3c365efdd07c638eb06a26511bd2fbcfd8f1e", - "md5": "71dab512a8f3a092fb8b33e35f1ca878", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 96.1, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 96.1, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 96.1, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 50967, - "sha1": "f5e154181042baa65b3ba4d23ddcc6a4b9910920", - "md5": "1ca5766a123258f2e04fde4fa4626709", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/sha/asm/sha256-586.pl", - "type": "file", - "name": "sha256-586.pl", - "base_name": "sha256-586", - "extension": ".pl", - "date": "2017-05-25", - "size": 36740, - "sha1": "ff7d6d54bc4a7faa116dbd7df21d474379b8c678", - "md5": "6f02bcbc5ca1019f6e970d08b290e923", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/sha/asm/sha256-armv4.pl", - "type": "file", - "name": "sha256-armv4.pl", - "base_name": "sha256-armv4", - "extension": ".pl", - "date": "2017-05-25", - "size": 18648, - "sha1": "82ee9c71b8510711ada1a4f1bbdd704b9f5a9f90", - "md5": "69210e67e34a2be666b4406dfb043245", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.19, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.19, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.19, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/sha/asm/sha256-c64xplus.pl", - "type": "file", - "name": "sha256-c64xplus.pl", - "base_name": "sha256-c64xplus", - "extension": ".pl", - "date": "2017-05-25", - "size": 8934, - "sha1": "390f08afaa1090913cd5e4e8e92b062d24a675b7", - "md5": "b29cca95457dbaf38424ab429b490046", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 38608, - "sha1": "c7bd00db1e2a4f36c32a3e0ade2dc658e8733936", - "md5": "176129ee9b1296ccf3a260a420d1c80d", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/sha/asm/sha512-586.pl", - "type": "file", - "name": "sha512-586.pl", - "base_name": "sha512-586", - "extension": ".pl", - "date": "2017-05-25", - "size": 26631, - "sha1": "0a6eaf3ab01b060560bf59b165add28a1362093e", - "md5": "ae5b4f3f30179a51099bbd4b5c6be834", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/sha/asm/sha512-armv4.pl", - "type": "file", - "name": "sha512-armv4.pl", - "base_name": "sha512-armv4", - "extension": ".pl", - "date": "2017-05-25", - "size": 17639, - "sha1": "2bcaff014215e2a4c79f8888940f26de1763effc", - "md5": "f12a4e6d904f110792f0fde14112d67a", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.19, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.19, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.19, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/sha/asm/sha512-armv8.pl", - "type": "file", - "name": "sha512-armv8.pl", - "base_name": "sha512-armv8", - "extension": ".pl", - "date": "2017-05-25", - "size": 12326, - "sha1": "873e0e5627ec886643510e5783850e9f1420342f", - "md5": "b47e5489221777fa3d18b13a79120f6a", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/sha/asm/sha512-c64xplus.pl", - "type": "file", - "name": "sha512-c64xplus.pl", - "base_name": "sha512-c64xplus", - "extension": ".pl", - "date": "2017-05-25", - "size": 13485, - "sha1": "dc8a51845789be6a35d423a95db7656270026275", - "md5": "b4ba233ffbd335dc8bcfebf77068647d", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/sha/asm/sha512-ia64.pl", - "type": "file", - "name": "sha512-ia64.pl", - "base_name": "sha512-ia64", - "extension": ".pl", - "date": "2017-05-25", - "size": 21416, - "sha1": "e8169e13b36840948fe753843d77737012f730d1", - "md5": "270a5418d2c9eceebad9473f2f9a6df9", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/sha/asm/sha512-mips.pl", - "type": "file", - "name": "sha512-mips.pl", - "base_name": "sha512-mips", - "extension": ".pl", - "date": "2017-05-25", - "size": 14503, - "sha1": "348001ba269863afd1465193a6021f8591d4e630", - "md5": "65c145677a7b1e59a428e3b9b94285fe", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/sha/asm/sha512-parisc.pl", - "type": "file", - "name": "sha512-parisc.pl", - "base_name": "sha512-parisc", - "extension": ".pl", - "date": "2017-05-25", - "size": 21565, - "sha1": "c0906dd3346a215ddf19f081eb4dfcd898e4cd01", - "md5": "1474d0bddc84df21a7c00b843451bc4c", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 96.1, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 96.1, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 96.1, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/sha/asm/sha512-ppc.pl", - "type": "file", - "name": "sha512-ppc.pl", - "base_name": "sha512-ppc", - "extension": ".pl", - "date": "2017-05-25", - "size": 21247, - "sha1": "d585b45ac45dabd1caee1c13d8889d26b5b9ade6", - "md5": "715e2412be7954dde49cf6c4df0e51cf", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/sha/asm/sha512-s390x.pl", - "type": "file", - "name": "sha512-s390x.pl", - "base_name": "sha512-s390x", - "extension": ".pl", - "date": "2017-05-25", - "size": 9326, - "sha1": "7207b50992919396d3ced778748ce7ed38129ba6", - "md5": "0a18501a12175fea7189c2d86daaaf8e", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 96.1, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 96.1, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 96.1, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/sha/asm/sha512-sparcv9.pl", - "type": "file", - "name": "sha512-sparcv9.pl", - "base_name": "sha512-sparcv9", - "extension": ".pl", - "date": "2017-05-25", - "size": 22006, - "sha1": "074ca2f7d097c8ae49e14b7b4b4875229f7de7f5", - "md5": "39a7ab1d1ffaa3c94e7d3a72de8d0684", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 96.1, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 96.1, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 96.1, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - }, - { - "statements": [], - "holders": [], - "authors": [ - "David S. Miller " - ], - "start_line": 16, - "end_line": 16 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 61446, - "sha1": "15a4e2ccee7143a14381351092edb035f32ca391", - "md5": "6f9daa81809e02be61e0328d2e04f0da", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 69.84, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 69.84, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 69.84, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/sha/asm/sha512p8-ppc.pl", - "type": "file", - "name": "sha512p8-ppc.pl", - "base_name": "sha512p8-ppc", - "extension": ".pl", - "date": "2017-05-25", - "size": 11965, - "sha1": "c9e571f3749efd5931c16eda6a39fa45febdf608", - "md5": "159db1d6b08ac6674b873770a2762129", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/srp/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 65, - "sha1": "994b9ec16ec11f96a1dfade472ecec8c5c837ab4", - "md5": "eaacdd82c253a8967707c431cca6227e", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/srp/srp_lib.c", - "type": "file", - "name": "srp_lib.c", - "base_name": "srp_lib", - "extension": ".c", - "date": "2017-05-25", - "size": 7302, - "sha1": "624360fb75baf8f3498f6d70f7b3c66ed03bfa6c", - "md5": "b5c2f56afc2477d5a1768f97b314fe0f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/srp/srp_vfy.c", - "type": "file", - "name": "srp_vfy.c", - "base_name": "srp_vfy", - "extension": ".c", - "date": "2017-05-25", - "size": 17480, - "sha1": "3f1e3580c1ccba01c7a4a35a55f9300eb4f696de", - "md5": "376521856bed80247001d6963229dd3f", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/stack/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 53, - "sha1": "36ea84fd13fa312edabe2be3d919a26eb974a667", - "md5": "1dd03752a46a22549e45df34323e9ab0", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/stack/stack.c", - "type": "file", - "name": "stack.c", - "base_name": "stack", - "extension": ".c", - "date": "2017-05-25", - "size": 7235, - "sha1": "538228f5348e47132438b1be453b657bec2c003d", - "md5": "ca1bcbeb340dcd3309559e910e85ed73", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/ts/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 219, - "sha1": "65db30cdcb7b8201cab73232fc93a7144bd3a96b", - "md5": "9f5224e53b84573e2736e699bb901c80", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/ts/ts_asn1.c", - "type": "file", - "name": "ts_asn1.c", - "base_name": "ts_asn1", - "extension": ".c", - "date": "2017-05-25", - "size": 8287, - "sha1": "56b0a96c7f208fe2975f6dede86e768e79554e07", - "md5": "8e00d62548611954b32ee3c02e733e33", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ts/ts_conf.c", - "type": "file", - "name": "ts_conf.c", - "base_name": "ts_conf", - "extension": ".c", - "date": "2017-05-25", - "size": 13220, - "sha1": "375fa917f477af65c43921adad78888599ca8e9c", - "md5": "4501ca835d45cb580baa7297ff55da9d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ts/ts_err.c", - "type": "file", - "name": "ts_err.c", - "base_name": "ts_err", - "extension": ".c", - "date": "2017-05-25", - "size": 7289, - "sha1": "109f8b4abf56ec33fa3d1aaac16d96a4229e4c09", - "md5": "4b7bfc129f679f514c47eb90fdd39b88", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ts/ts_lcl.h", - "type": "file", - "name": "ts_lcl.h", - "base_name": "ts_lcl", - "extension": ".h", - "date": "2017-05-25", - "size": 6023, - "sha1": "994ce9fa24c28fff13d901d541d9f14e32ab8102", - "md5": "33fb2ebb00ff8cf2176daa8b4c883809", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ts/ts_lib.c", - "type": "file", - "name": "ts_lib.c", - "base_name": "ts_lib", - "extension": ".c", - "date": "2017-05-25", - "size": 2485, - "sha1": "6f35a320b94d7c48e429b532e782252a657b17d6", - "md5": "b6e05114298789c8ea4e73c9f1cb14fc", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1297, - "sha1": "41a03c7a1ed98e069a259450d2b245bef6ddf4c8", - "md5": "4e809c3420367ba3df25615ed91f7452", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 4176, - "sha1": "a26b0104173b5f887d25887b737a3f82b4de1069", - "md5": "07072d39a4a607e39046e1531b0d8ff5", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 5520, - "sha1": "18bea0b0c892ad5a4e9af6cddc67c519ab83718e", - "md5": "c4019e5ed8f794c581fa00d541962426", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 28100, - "sha1": "634d45bd6729f4f63138389d7f954cb83fda2bee", - "md5": "c4af3563c916deea007fe6946ce39271", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 8518, - "sha1": "2bf7e5b9a56dca7d43c04e59f6e32c744e3a102b", - "md5": "d5dea8cea772444c807d2488c2291757", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 20031, - "sha1": "4a3063830155d4da939fe92052d0b36b0dacb10c", - "md5": "3dc6c06695e5dee13b1681099d409d2c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 3433, - "sha1": "ad3a3a4cf2dbada7c27891ef9d9cbb0bfb6d0db8", - "md5": "870010d5735cccd1fc5a8ee886f0e144", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/txt_db/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 54, - "sha1": "28a30bef28fbdd657c155fc6260e2144e24d2e02", - "md5": "78b2df4c5f346cbbd90ca658c89bce4f", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/txt_db/txt_db.c", - "type": "file", - "name": "txt_db.c", - "base_name": "txt_db", - "extension": ".c", - "date": "2017-05-25", - "size": 8683, - "sha1": "b30f07811f577b50b332b46b0f9f850e0e044b90", - "md5": "f379dd1747705e4732574924c18ea93f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/ui/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 96, - "sha1": "9772986e76eda0a009993b0bf1e199ae5a0f4a0b", - "md5": "4b6f75334ce246f1a25e806dba41f905", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/ui/ui_err.c", - "type": "file", - "name": "ui_err.c", - "base_name": "ui_err", - "extension": ".c", - "date": "2017-05-25", - "size": 2762, - "sha1": "23c21b89f0c68ef283e3242f85e3d72a30fe1cc0", - "md5": "eabbb63d215f05fdfbdc38e71bd90a68", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ui/ui_lib.c", - "type": "file", - "name": "ui_lib.c", - "base_name": "ui_lib", - "extension": ".c", - "date": "2017-05-25", - "size": 23328, - "sha1": "da8248798b0af9fcc8415fba11bc1523e4742deb", - "md5": "7977a9d6921ecd97ebe4f7e90e7cb995", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ui/ui_locl.h", - "type": "file", - "name": "ui_locl.h", - "base_name": "ui_locl", - "extension": ".h", - "date": "2017-05-25", - "size": 3396, - "sha1": "77aa872225cc1df0b731c7138d890b3a9b834ef7", - "md5": "fd8921fb4ad020efc9afe6d33ec54b28", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ui/ui_openssl.c", - "type": "file", - "name": "ui_openssl.c", - "base_name": "ui_openssl", - "extension": ".c", - "date": "2017-05-25", - "size": 18426, - "sha1": "7d657e476c15664878195c13e40c423579dbfd8c", - "md5": "f7a35c37376c4a830177b4de8e7716fd", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/ui/ui_util.c", - "type": "file", - "name": "ui_util.c", - "base_name": "ui_util", - "extension": ".c", - "date": "2017-05-25", - "size": 1268, - "sha1": "004cfe50c9882dec795da0555b3f39b26b0f7dd7", - "md5": "84c69b247e550e811a24a8a0fcaa3909", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/whrlpool/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 266, - "sha1": "9c482f5c5df70d32aef8804bfa571b3178c79ded", - "md5": "d8a771520a8c415fba624c8714ce3d72", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/whrlpool/wp_block.c", - "type": "file", - "name": "wp_block.c", - "base_name": "wp_block", - "extension": ".c", - "date": "2017-05-25", - "size": 35005, - "sha1": "91cc7d1de5be50f795ac427322e542d1505444cb", - "md5": "2086bf50884ff636c2706786f0f1a3c5", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": 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": [] - }, - { - "path": "openssl-1.1.0f/crypto/whrlpool/wp_dgst.c", - "type": "file", - "name": "wp_dgst.c", - "base_name": "wp_dgst", - "extension": ".c", - "date": "2017-05-25", - "size": 8922, - "sha1": "062dcf27aa78ce9502b5359beb4692ffc7fb12ea", - "md5": "7a52c53cb27e18971112328dbbfcb1ba", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": 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": [] - }, - { - "path": "openssl-1.1.0f/crypto/whrlpool/wp_locl.h", - "type": "file", - "name": "wp_locl.h", - "base_name": "wp_locl", - "extension": ".h", - "date": "2017-05-25", - "size": 426, - "sha1": "98f1ffec0d81265237b467e8ef98d8b34b0132c5", - "md5": "14cbdc3132e4d4f37d24f80737acfbed", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/whrlpool/asm", - "type": "directory", - "name": "asm", - "base_name": "asm", - "extension": "", - "date": null, - "size": 41247, - "sha1": null, - "md5": null, - "files_count": 2, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/whrlpool/asm/wp-mmx.pl", - "type": "file", - "name": "wp-mmx.pl", - "base_name": "wp-mmx", - "extension": ".pl", - "date": "2017-05-25", - "size": 20246, - "sha1": "47a1024ccc56d335ac453ba61fedaee13a62c030", - "md5": "135c3b289c132b8c557ff81210da7153", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 70.97, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 70.97, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 70.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": 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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 21001, - "sha1": "8bd709ffbd81dc96e39deea1412c30705ca18829", - "md5": "55c78ebfac64c541a391c3e7ee78ee51", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 70.97, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 70.97, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 70.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": 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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 481, - "sha1": "56e17db7b0f69353ac1fb2349d70be1cda13a69b", - "md5": "f7bce1dd1c2062e2629bbebc7c65e268", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509/by_dir.c", - "type": "file", - "name": "by_dir.c", - "base_name": "by_dir", - "extension": ".c", - "date": "2017-05-25", - "size": 11283, - "sha1": "4cfd5277eab2ba2ef8602b9cfda9122654eb750e", - "md5": "7c805466e06be76d2c470e3031507043", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509/by_file.c", - "type": "file", - "name": "by_file.c", - "base_name": "by_file", - "extension": ".c", - "date": "2017-05-25", - "size": 6409, - "sha1": "e18a863a58726d9fef92aab131439262c35c3fd9", - "md5": "c087fdddcdfb69a68d076ceedc59dbbf", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509/t_crl.c", - "type": "file", - "name": "t_crl.c", - "base_name": "t_crl", - "extension": ".c", - "date": "2017-05-25", - "size": 2741, - "sha1": "1e47c2e69613b0af1ec6bd58c54d01b01c5dae3e", - "md5": "91e488f28f39996641caee92609575fe", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509/t_req.c", - "type": "file", - "name": "t_req.c", - "base_name": "t_req", - "extension": ".c", - "date": "2017-05-25", - "size": 6505, - "sha1": "8e454b1585db0a9c7d81d635e5dff4de47deacd2", - "md5": "0b965b65061cf92b830d66115cd68cc7", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509/t_x509.c", - "type": "file", - "name": "t_x509.c", - "base_name": "t_x509", - "extension": ".c", - "date": "2017-05-25", - "size": 11165, - "sha1": "8d9b39ad1877dadb9e862355c740e2e796769b12", - "md5": "7d5d7b54e4c1a3eb4bc6f5bcbc57fcc2", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509/x509cset.c", - "type": "file", - "name": "x509cset.c", - "base_name": "x509cset", - "extension": ".c", - "date": "2017-05-25", - "size": 4125, - "sha1": "22d66f715ebe9d8cf264fc4bb33e036f2b5d2bf7", - "md5": "2f25161b0dae6b8d8dfae735269a4903", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509/x509name.c", - "type": "file", - "name": "x509name.c", - "base_name": "x509name", - "extension": ".c", - "date": "2017-05-25", - "size": 10163, - "sha1": "016cd81ac6a197f5afad54d7a5f96ef4ed64067b", - "md5": "2c58adc47d79706e01fde56461c3bf75", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509/x509rset.c", - "type": "file", - "name": "x509rset.c", - "base_name": "x509rset", - "extension": ".c", - "date": "2017-05-25", - "size": 1094, - "sha1": "7e317a2fdd2b290968227535d2b5832441e2b9a9", - "md5": "355dcf2be206af93a316f64aa466be17", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509/x509spki.c", - "type": "file", - "name": "x509spki.c", - "base_name": "x509spki", - "extension": ".c", - "date": "2017-05-25", - "size": 2228, - "sha1": "e57eb629ce6ab0910eb9887ce98e4d0b3d1c094d", - "md5": "ed3462c29b99b2554d83fcd647c8fa02", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509/x509type.c", - "type": "file", - "name": "x509type.c", - "base_name": "x509type", - "extension": ".c", - "date": "2017-05-25", - "size": 1839, - "sha1": "e563dd177111158407c7a947e208a0f802579a49", - "md5": "0dd851f462603b8f33cd42634104e15a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509/x509_att.c", - "type": "file", - "name": "x509_att.c", - "base_name": "x509_att", - "extension": ".c", - "date": "2017-05-25", - "size": 9696, - "sha1": "3a26a5c2397eed59b78d9d2f2723275c50adfcf9", - "md5": "7c7862b9b02d758292c9b94d3d1077ec", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509/x509_cmp.c", - "type": "file", - "name": "x509_cmp.c", - "base_name": "x509_cmp", - "extension": ".c", - "date": "2017-05-25", - "size": 12680, - "sha1": "96c0628f14c74df7f9f941d11a61a00cd1f0e9f3", - "md5": "693ff6c2126ee27e992fe233a9883d9e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509/x509_d2.c", - "type": "file", - "name": "x509_d2.c", - "base_name": "x509_d2", - "extension": ".c", - "date": "2017-05-25", - "size": 1640, - "sha1": "52001e002e84e72c0ec3eb563498b29db84b2d5d", - "md5": "04718ff72fbb8668a5a0ce7acde50dd7", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509/x509_def.c", - "type": "file", - "name": "x509_def.c", - "base_name": "x509_def", - "extension": ".c", - "date": "2017-05-25", - "size": 928, - "sha1": "8d7e1d2bfa50135e68e67aece73133264bf94a4f", - "md5": "c9cc9839636eec495d2ceb8f35fe37b5", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509/x509_err.c", - "type": "file", - "name": "x509_err.c", - "base_name": "x509_err", - "extension": ".c", - "date": "2017-05-25", - "size": 6795, - "sha1": "fbca81a56bf292a29b194120dde9b6d8a05b1acb", - "md5": "e3e04e91ac4b72e9eec5680279ad0ffe", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509/x509_ext.c", - "type": "file", - "name": "x509_ext.c", - "base_name": "x509_ext", - "extension": ".c", - "date": "2017-05-25", - "size": 4516, - "sha1": "1bf18c8029cbc299c0f8fcd179c8ec3439c5695b", - "md5": "1db5fa3b78ac01960e95eccdb0fc325f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509/x509_lcl.h", - "type": "file", - "name": "x509_lcl.h", - "base_name": "x509_lcl", - "extension": ".h", - "date": "2017-05-25", - "size": 5766, - "sha1": "4862cc021cacfe0583c390905d5c01f681b39b7a", - "md5": "5a6799d110a155e67cf55cf8851e58c5", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509/x509_lu.c", - "type": "file", - "name": "x509_lu.c", - "base_name": "x509_lu", - "extension": ".c", - "date": "2017-05-25", - "size": 22128, - "sha1": "8f60737c5c3e99934c374506dc46e2dafb912e5c", - "md5": "75928b40b4f90f7e00b5fea3a2665796", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509/x509_obj.c", - "type": "file", - "name": "x509_obj.c", - "base_name": "x509_obj", - "extension": ".c", - "date": "2017-05-25", - "size": 5108, - "sha1": "7ab7cd448bb007cb168ee1b881daa0b21189ae98", - "md5": "1157a069942687d0172f0e2596531ee3", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509/x509_r2x.c", - "type": "file", - "name": "x509_r2x.c", - "base_name": "x509_r2x", - "extension": ".c", - "date": "2017-05-25", - "size": 1832, - "sha1": "534344f619d25eecaea64d5e8cbe3f8b19e63cb3", - "md5": "107eea689de620581b4b68468ce87449", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509/x509_req.c", - "type": "file", - "name": "x509_req.c", - "base_name": "x509_req", - "extension": ".c", - "date": "2017-05-25", - "size": 7746, - "sha1": "59450d332a12b94401701128331e526380875cd4", - "md5": "aa56023a13915a4055ab5c7e22cc2aa4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509/x509_set.c", - "type": "file", - "name": "x509_set.c", - "base_name": "x509_set", - "extension": ".c", - "date": "2017-05-25", - "size": 3569, - "sha1": "65acaa4ac0d6ace53890183b138edaa6d63d6a4c", - "md5": "6f4e3a36d2997dcc779bf4ffafd3c117", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509/x509_trs.c", - "type": "file", - "name": "x509_trs.c", - "base_name": "x509_trs", - "extension": ".c", - "date": "2017-05-25", - "size": 8936, - "sha1": "99eb1cbe38f59f5176eafb7677e5ff3186c36329", - "md5": "9a2453df94fd9cedfc1d79d3b0158ffc", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509/x509_txt.c", - "type": "file", - "name": "x509_txt.c", - "base_name": "x509_txt", - "extension": ".c", - "date": "2017-05-25", - "size": 7875, - "sha1": "05f7fcbc173052ecd576b9664b7767811a53a06e", - "md5": "da24a09e5f85759af0fa76e3213c965e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509/x509_v3.c", - "type": "file", - "name": "x509_v3.c", - "base_name": "x509_v3", - "extension": ".c", - "date": "2017-05-25", - "size": 5862, - "sha1": "07e636e374c3dcf1c614766aba2d62d661e5f6b9", - "md5": "cd912d5b316e99ec26b99fb6329ab1e0", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509/x509_vfy.c", - "type": "file", - "name": "x509_vfy.c", - "base_name": "x509_vfy", - "extension": ".c", - "date": "2017-05-25", - "size": 103705, - "sha1": "e31b1d573ce0bbd54129510a6f7db94d9b1410ed", - "md5": "089e942458430844cd054326a877520f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509/x509_vpm.c", - "type": "file", - "name": "x509_vpm.c", - "base_name": "x509_vpm", - "extension": ".c", - "date": "2017-05-25", - "size": 17651, - "sha1": "89c52430af639af21ff4148ed825ef924c0a4603", - "md5": "e98b6519dc88db09d9d074163b3dbdc9", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509/x_all.c", - "type": "file", - "name": "x_all.c", - "base_name": "x_all", - "extension": ".c", - "date": "2017-05-25", - "size": 14026, - "sha1": "cdc8c8888e58cf0eb4db17a3c810b5a8e9764261", - "md5": "48b1ccf02571abe92eba41aa86b1b464", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509/x_attrib.c", - "type": "file", - "name": "x_attrib.c", - "base_name": "x_attrib", - "extension": ".c", - "date": "2017-05-25", - "size": 1455, - "sha1": "cd8baf8f67bb5feff7b195316a0482850abe5242", - "md5": "a707b25184d5b9af5fa6b377cdb63b39", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509/x_crl.c", - "type": "file", - "name": "x_crl.c", - "base_name": "x_crl", - "extension": ".c", - "date": "2017-05-25", - "size": 14043, - "sha1": "e430ef411cded355543bc796f39ce0d45ff6ef3d", - "md5": "8eedca29b725278fe9d9984b93d3c465", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509/x_exten.c", - "type": "file", - "name": "x_exten.c", - "base_name": "x_exten", - "extension": ".c", - "date": "2017-05-25", - "size": 1040, - "sha1": "3762144ca62e4785bdf2ed1bd40d030a12958402", - "md5": "8ef266fb1b3a951b4f14367aa4b94de9", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509/x_name.c", - "type": "file", - "name": "x_name.c", - "base_name": "x_name", - "extension": ".c", - "date": "2017-05-25", - "size": 16021, - "sha1": "a4c5d1bbd4d36b7e544e6abe1866a09da6122d01", - "md5": "b278ef8ddd22b14661c2b44f4f85d804", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509/x_pubkey.c", - "type": "file", - "name": "x_pubkey.c", - "base_name": "x_pubkey", - "extension": ".c", - "date": "2017-05-25", - "size": 9280, - "sha1": "89b0814ec9b8d54af92f8b25b256d75ce6a818e4", - "md5": "28206502f8c4c5c814d91416a18f9d71", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509/x_req.c", - "type": "file", - "name": "x_req.c", - "base_name": "x_req", - "extension": ".c", - "date": "2017-05-25", - "size": 2346, - "sha1": "faff9ac566f683239558dbce1bda28375fc25515", - "md5": "b2c31998da0d1423828aa2a94c841d04", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509/x_x509.c", - "type": "file", - "name": "x_x509.c", - "base_name": "x_x509", - "extension": ".c", - "date": "2017-05-25", - "size": 6375, - "sha1": "4a976100654f60e4f2c17060020b7b4321f7af70", - "md5": "e10e4f860d025c81b86978f20488f894", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509/x_x509a.c", - "type": "file", - "name": "x_x509a.c", - "base_name": "x_x509a", - "extension": ".c", - "date": "2017-05-25", - "size": 4379, - "sha1": "afbe2b5909ce312b3560150415391fa390077273", - "md5": "80d44cfdcf251891ae55c8a091a59238", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509v3/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 433, - "sha1": "c72e1c902e669e5b30110b81460067b19ec15945", - "md5": "ab3ca1c300447642dfb88b4dc464f223", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509v3/ext_dat.h", - "type": "file", - "name": "ext_dat.h", - "base_name": "ext_dat", - "extension": ".h", - "date": "2017-05-25", - "size": 1291, - "sha1": "206b82396547de00ca29f5d961eb417f6766c692", - "md5": "da821b39fb8a69d9e3364ad9059c68c1", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509v3/pcy_cache.c", - "type": "file", - "name": "pcy_cache.c", - "base_name": "pcy_cache", - "extension": ".c", - "date": "2017-05-25", - "size": 6091, - "sha1": "c2ea63fd7a80956ce16288cfebe16720a4daa3b0", - "md5": "27a84086cd689ab1c13d6a5a5dc576be", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509v3/pcy_data.c", - "type": "file", - "name": "pcy_data.c", - "base_name": "pcy_data", - "extension": ".c", - "date": "2017-05-25", - "size": 2123, - "sha1": "ba84e30cea3ad83c42ebf07111f33b0f9fe30fb9", - "md5": "1239b1ab26e829e022210feee112424e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509v3/pcy_int.h", - "type": "file", - "name": "pcy_int.h", - "base_name": "pcy_int", - "extension": ".h", - "date": "2017-05-25", - "size": 5083, - "sha1": "ccf21dad344c3b9216964b79a899a6ceacdb06dc", - "md5": "2204a857c30de4234a8a6b4875c958ad", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509v3/pcy_lib.c", - "type": "file", - "name": "pcy_lib.c", - "base_name": "pcy_lib", - "extension": ".c", - "date": "2017-05-25", - "size": 2775, - "sha1": "71259470ac4b84914f135e4979de54fbc77d7119", - "md5": "3d7098066fe6cf2f595d4f071be025ed", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509v3/pcy_map.c", - "type": "file", - "name": "pcy_map.c", - "base_name": "pcy_map", - "extension": ".c", - "date": "2017-05-25", - "size": 2648, - "sha1": "cf33b014c44779e03c24b2bbce6d279c947def82", - "md5": "4107cc6c3ee3e5de4b214933f49f1c4b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509v3/pcy_node.c", - "type": "file", - "name": "pcy_node.c", - "base_name": "pcy_node", - "extension": ".c", - "date": "2017-05-25", - "size": 3753, - "sha1": "2e47175c7db383f23c4530bc2528f749657175d3", - "md5": "bcd8d60a4ad1d7f901b281e406230852", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509v3/pcy_tree.c", - "type": "file", - "name": "pcy_tree.c", - "base_name": "pcy_tree", - "extension": ".c", - "date": "2017-05-25", - "size": 22212, - "sha1": "026299e8ea128a5342de19a1c9bceefb0e992ccd", - "md5": "b73b7770ad45aa7c41a06b30a858698d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509v3/tabtest.c", - "type": "file", - "name": "tabtest.c", - "base_name": "tabtest", - "extension": ".c", - "date": "2017-05-25", - "size": 1192, - "sha1": "072d2248c238d8e08ab3e04b6494611be574b195", - "md5": "c57f5c736d3e3cb91e212fc5c3687bb4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509v3/v3conf.c", - "type": "file", - "name": "v3conf.c", - "base_name": "v3conf", - "extension": ".c", - "date": "2017-05-25", - "size": 2159, - "sha1": "eea6a6e4b5104e8774fc24887b17f4a59b59e98d", - "md5": "15ab5bffa163f9dd02a245ba9216be07", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509v3/v3err.c", - "type": "file", - "name": "v3err.c", - "base_name": "v3err", - "extension": ".c", - "date": "2017-05-25", - "size": 9748, - "sha1": "30e11402e53e6217d5b316aa8894fd52ddc1993b", - "md5": "28511936d0a7edd13efc8a61b328cf59", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509v3/v3prin.c", - "type": "file", - "name": "v3prin.c", - "base_name": "v3prin", - "extension": ".c", - "date": "2017-05-25", - "size": 1405, - "sha1": "fdf275785a785e93c79fc6d2ddede403f49c16d4", - "md5": "72f5b3b7c76acf6e6efa9725b6ca8f74", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509v3/v3_addr.c", - "type": "file", - "name": "v3_addr.c", - "base_name": "v3_addr", - "extension": ".c", - "date": "2017-05-25", - "size": 41172, - "sha1": "5114afad736f736e2f4553d33a3410d9195ff688", - "md5": "ed0592e532689a1599f10cd6ebe654d6", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509v3/v3_akey.c", - "type": "file", - "name": "v3_akey.c", - "base_name": "v3_akey", - "extension": ".c", - "date": "2017-05-25", - "size": 5278, - "sha1": "a33bbdb19f443c06cd50e29cef21f11b1978fab4", - "md5": "253d17ab61073b2408848bf24788d305", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509v3/v3_akeya.c", - "type": "file", - "name": "v3_akeya.c", - "base_name": "v3_akeya", - "extension": ".c", - "date": "2017-05-25", - "size": 814, - "sha1": "9da32b240af3c0ef79ce416d1e403f65dc2e9def", - "md5": "853e701178437961a31ef8a20835ccaa", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509v3/v3_alt.c", - "type": "file", - "name": "v3_alt.c", - "base_name": "v3_alt", - "extension": ".c", - "date": "2017-05-25", - "size": 16479, - "sha1": "9d48eb7d7b9d438e0be00db9efbb03d9f646df8e", - "md5": "a83e4dbf4703437651ffd4ef3bc9bff8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509v3/v3_asid.c", - "type": "file", - "name": "v3_asid.c", - "base_name": "v3_asid", - "extension": ".c", - "date": "2017-05-25", - "size": 26076, - "sha1": "ade0161f2cbd47d34c6183e8e435cbf6b44cb09c", - "md5": "ff075cfe1647a834e6ac8fe02844e3ae", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509v3/v3_bcons.c", - "type": "file", - "name": "v3_bcons.c", - "base_name": "v3_bcons", - "extension": ".c", - "date": "2017-05-25", - "size": 2994, - "sha1": "863a89807f2b41f449b6ed1df6008fe1b8915530", - "md5": "7d53369d4ab316346ae4ff8f58e45e60", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509v3/v3_bitst.c", - "type": "file", - "name": "v3_bitst.c", - "base_name": "v3_bitst", - "extension": ".c", - "date": "2017-05-25", - "size": 3171, - "sha1": "11a941d94e2a61399e036a035de4b853527b2b36", - "md5": "b49f6e2c1cfc7d57a2399af05a8cf499", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509v3/v3_conf.c", - "type": "file", - "name": "v3_conf.c", - "base_name": "v3_conf", - "extension": ".c", - "date": "2017-05-25", - "size": 15250, - "sha1": "1394d09200c3fd513bff6ec2d1502278d2f1fa26", - "md5": "0aeea84ae6c47a03969fb3b377077aee", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509v3/v3_cpols.c", - "type": "file", - "name": "v3_cpols.c", - "base_name": "v3_cpols", - "extension": ".c", - "date": "2017-05-25", - "size": 14879, - "sha1": "8592e9b6e2d35c236eeb256cfb584bb1b9ccf02e", - "md5": "6581cb49b22c7a4903169cfdb11ffdf2", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509v3/v3_crld.c", - "type": "file", - "name": "v3_crld.c", - "base_name": "v3_crld", - "extension": ".c", - "date": "2017-05-25", - "size": 15522, - "sha1": "3706985b76ae97b92658dbc460d71ab72233ff82", - "md5": "bec413f8ec4af7ab69ca8a199d1a3340", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509v3/v3_enum.c", - "type": "file", - "name": "v3_enum.c", - "base_name": "v3_enum", - "extension": ".c", - "date": "2017-05-25", - "size": 1830, - "sha1": "96d8da079212f917c0df1ef848dd1fd1e626f3db", - "md5": "fa327096d9eb08ca3c85a0b1840d41c6", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509v3/v3_extku.c", - "type": "file", - "name": "v3_extku.c", - "base_name": "v3_extku", - "extension": ".c", - "date": "2017-05-25", - "size": 3195, - "sha1": "34141a91c26d701d1e53c191359b1ba0fa8277e7", - "md5": "5167fd89fd10884c5a22e35aff34c4d8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509v3/v3_genn.c", - "type": "file", - "name": "v3_genn.c", - "base_name": "v3_genn", - "extension": ".c", - "date": "2017-05-25", - "size": 5186, - "sha1": "57fbb4be97eaff55a08e997e1f4ea7c3619a3571", - "md5": "2daba7fb80b1e7fe56d05ea6cca77fae", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509v3/v3_ia5.c", - "type": "file", - "name": "v3_ia5.c", - "base_name": "v3_ia5", - "extension": ".c", - "date": "2017-05-25", - "size": 1980, - "sha1": "9037c6e7a7a8783d6a2ff021b2a3775901561e33", - "md5": "42107d57b62e7f66b2a486b835cd1efb", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509v3/v3_info.c", - "type": "file", - "name": "v3_info.c", - "base_name": "v3_info", - "extension": ".c", - "date": "2017-05-25", - "size": 5646, - "sha1": "7485904aeff16913757646cb4855efb169835009", - "md5": "f2af09c97ae2ac518cb229b034b12f95", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509v3/v3_int.c", - "type": "file", - "name": "v3_int.c", - "base_name": "v3_int", - "extension": ".c", - "date": "2017-05-25", - "size": 1165, - "sha1": "316f6b5fc7221d27542db151d50261721464cce8", - "md5": "af2c7c5ef1a410016cfb4b4f4809cd76", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509v3/v3_lib.c", - "type": "file", - "name": "v3_lib.c", - "base_name": "v3_lib", - "extension": ".c", - "date": "2017-05-25", - "size": 9510, - "sha1": "5b519f76c7274d16b38efacd729e5b23d88286d7", - "md5": "d7861db483f8b05be16b371c0a9b146b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509v3/v3_ncons.c", - "type": "file", - "name": "v3_ncons.c", - "base_name": "v3_ncons", - "extension": ".c", - "date": "2017-05-25", - "size": 15713, - "sha1": "a27b44b124bc2379acfcda26a6892dd8d17168cf", - "md5": "1ab735bc9da24aecc1c7c4a4ad324fb8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509v3/v3_pci.c", - "type": "file", - "name": "v3_pci.c", - "base_name": "v3_pci", - "extension": ".c", - "date": "2017-05-25", - "size": 11632, - "sha1": "0bf8314a100054d518ba0f5bea9a9cbecabd0506", - "md5": "200a1fa5e00bd7edadecfafc7942ee46", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509v3/v3_pcia.c", - "type": "file", - "name": "v3_pcia.c", - "base_name": "v3_pcia", - "extension": ".c", - "date": "2017-05-25", - "size": 2591, - "sha1": "f6fe1f3545653dbca55bcb4534a25bb1e8926d1d", - "md5": "bf02f7d6170a9e41573aab04ecaef3b0", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509v3/v3_pcons.c", - "type": "file", - "name": "v3_pcons.c", - "base_name": "v3_pcons", - "extension": ".c", - "date": "2017-05-25", - "size": 3280, - "sha1": "80b4e30427523be9c2c938fe586e21b08f544baf", - "md5": "ec3459c8a158fe7e420c31ee1b098b3b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509v3/v3_pku.c", - "type": "file", - "name": "v3_pku.c", - "base_name": "v3_pku", - "extension": ".c", - "date": "2017-05-25", - "size": 2023, - "sha1": "fa7f54f806857649961abb61a52631e42756e3c0", - "md5": "c20ddd2e9278fe807bdd5a96abca97a1", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509v3/v3_pmaps.c", - "type": "file", - "name": "v3_pmaps.c", - "base_name": "v3_pmaps", - "extension": ".c", - "date": "2017-05-25", - "size": 3768, - "sha1": "83ae0ce508a18f298898143cfd66687187dee7f8", - "md5": "9a0ebadfd59f677d8810d6ace0ef0bf1", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509v3/v3_prn.c", - "type": "file", - "name": "v3_prn.c", - "base_name": "v3_prn", - "extension": ".c", - "date": "2017-05-25", - "size": 6043, - "sha1": "8938f2030f8a36717524f8f4e0a14b78e6f9662f", - "md5": "16ec781df201e9b2b237bda60d37dea3", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509v3/v3_purp.c", - "type": "file", - "name": "v3_purp.c", - "base_name": "v3_purp", - "extension": ".c", - "date": "2017-05-25", - "size": 26074, - "sha1": "160381cbfb2e021a8281a3c14b4c0ff31d494d44", - "md5": "4d034b642ce9c9b263e4842d876b514c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509v3/v3_skey.c", - "type": "file", - "name": "v3_skey.c", - "base_name": "v3_skey", - "extension": ".c", - "date": "2017-05-25", - "size": 2888, - "sha1": "16d8a8c7d0276796746392f2e485b4afae976c93", - "md5": "08a22d1f3800dfac584ec20747211ec3", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509v3/v3_sxnet.c", - "type": "file", - "name": "v3_sxnet.c", - "base_name": "v3_sxnet", - "extension": ".c", - "date": "2017-05-25", - "size": 6129, - "sha1": "edd32a411e5198046e9a8f23f5c6b07758e1181c", - "md5": "7fe0dde80c77e830c8bdc6bf1ca3a725", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509v3/v3_tlsf.c", - "type": "file", - "name": "v3_tlsf.c", - "base_name": "v3_tlsf", - "extension": ".c", - "date": "2017-05-25", - "size": 4359, - "sha1": "f52de338d056a1de2dc3486560d687c316b6319f", - "md5": "bb3e3a7f929919b4c53e42b7d6ebbf6c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/crypto/x509v3/v3_utl.c", - "type": "file", - "name": "v3_utl.c", - "base_name": "v3_utl", - "extension": ".c", - "date": "2017-05-25", - "size": 34413, - "sha1": "79e4eaeccd1996960a6486d89d9a21d3d11ef0b6", - "md5": "863ea4337837006a933c28e4b7301843", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/demos/README", - "type": "file", - "name": "README", - "base_name": "README", - "extension": "", - "date": "2017-05-25", - "size": 267, - "sha1": "a75a2c08e342e16c50995123d093bb71370778d9", - "md5": "5222fca0729b5f7dc58d16a470b1122c", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/demos/bio", - "type": "directory", - "name": "bio", - "base_name": "bio", - "extension": "", - "date": null, - "size": 35385, - "sha1": null, - "md5": null, - "files_count": 19, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/demos/certs", - "type": "directory", - "name": "certs", - "base_name": "certs", - "extension": "", - "date": null, - "size": 21349, - "sha1": null, - "md5": null, - "files_count": 13, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/demos/cms", - "type": "directory", - "name": "cms", - "base_name": "cms", - "extension": "", - "date": null, - "size": 22829, - "sha1": null, - "md5": null, - "files_count": 16, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/demos/evp", - "type": "directory", - "name": "evp", - "base_name": "evp", - "extension": "", - "date": null, - "size": 9286, - "sha1": null, - "md5": null, - "files_count": 3, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/demos/pkcs12", - "type": "directory", - "name": "pkcs12", - "base_name": "pkcs12", - "extension": "", - "date": null, - "size": 3468, - "sha1": null, - "md5": null, - "files_count": 3, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/demos/smime", - "type": "directory", - "name": "smime", - "base_name": "smime", - "extension": "", - "date": null, - "size": 15437, - "sha1": null, - "md5": null, - "files_count": 11, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/demos/bio/accept.cnf", - "type": "file", - "name": "accept.cnf", - "base_name": "accept", - "extension": ".cnf", - "date": "2017-05-25", - "size": 401, - "sha1": "92d5e8da710fbcf3b78aa3558842b7e14b7729ec", - "md5": "c2c38f08614fdb3e6a5cb6244e43c5a1", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/demos/bio/client-arg.c", - "type": "file", - "name": "client-arg.c", - "base_name": "client-arg", - "extension": ".c", - "date": "2017-05-25", - "size": 3241, - "sha1": "8556d59f24235e15321bb0aa30185ec541d4aa18", - "md5": "37ee8bac4307d6fca8aac04846ed9bf3", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/demos/bio/client-conf.c", - "type": "file", - "name": "client-conf.c", - "base_name": "client-conf", - "extension": ".c", - "date": "2017-05-25", - "size": 3462, - "sha1": "a6ed22d569abeeebcd1b80b84cd4b45ae802f2e0", - "md5": "4c1379ad5055d5c435c5921eaa6c6a58", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/demos/bio/cmod.cnf", - "type": "file", - "name": "cmod.cnf", - "base_name": "cmod", - "extension": ".cnf", - "date": "2017-05-25", - "size": 537, - "sha1": "6aec6ba73f56b642491676c204f315af0c47cd62", - "md5": "214919fafdf2f7aef287211bfdd8c535", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/demos/bio/connect.cnf", - "type": "file", - "name": "connect.cnf", - "base_name": "connect", - "extension": ".cnf", - "date": "2017-05-25", - "size": 285, - "sha1": "03fcca707af34de2234c87a8cf16c0c81f9026cf", - "md5": "e29c6ef1cc3aaa3adb38c94d402a3d75", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/demos/bio/descrip.mms", - "type": "file", - "name": "descrip.mms", - "base_name": "descrip", - "extension": ".mms", - "date": "2017-05-25", - "size": 1313, - "sha1": "cf1454870a5911cc7f3e3de28a7dc5fa75c838a5", - "md5": "62650249474b2e0ec15fb6ddbc786e82", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/demos/bio/intca.pem", - "type": "file", - "name": "intca.pem", - "base_name": "intca", - "extension": ".pem", - "date": "2017-05-25", - "size": 1359, - "sha1": "19b38c858cda4752028a0c29b1be9f5ea7d39fd3", - "md5": "17ee3a1c13e9fde466ac52d95f24d5d5", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/demos/bio/Makefile", - "type": "file", - "name": "Makefile", - "base_name": "Makefile", - "extension": "", - "date": "2017-05-25", - "size": 975, - "sha1": "7169d026c9411b4cde819ad304a3683814299a0b", - "md5": "346349423c290a107c1203597db92481", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/demos/bio/README", - "type": "file", - "name": "README", - "base_name": "README", - "extension": "", - "date": "2017-05-25", - "size": 255, - "sha1": "e99423571acd14bded922c241cc64d1276eca28f", - "md5": "122e33f4f1108ca3b53fd228a7696a9e", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/demos/bio/root.pem", - "type": "file", - "name": "root.pem", - "base_name": "root", - "extension": ".pem", - "date": "2017-05-25", - "size": 1346, - "sha1": "dbc4396d4631b81d1be9ddd286ee8b00b45fafb7", - "md5": "3f98151b06f2d4cd99f37bc3cc7b742e", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/demos/bio/saccept.c", - "type": "file", - "name": "saccept.c", - "base_name": "saccept", - "extension": ".c", - "date": "2017-05-25", - "size": 2935, - "sha1": "af45d08db0cfa578e4ad68f356e049a026809412", - "md5": "3ae2c01bb73841bd788c301afd4bba7e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/demos/bio/sconnect.c", - "type": "file", - "name": "sconnect.c", - "base_name": "sconnect", - "extension": ".c", - "date": "2017-05-25", - "size": 3131, - "sha1": "83ce066b1fe23fada74f832a89985b6fb1421fe5", - "md5": "b8b9e294557bfa9d32c76cf4e9aeec8a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/demos/bio/server-arg.c", - "type": "file", - "name": "server-arg.c", - "base_name": "server-arg", - "extension": ".c", - "date": "2017-05-25", - "size": 4099, - "sha1": "2b34208a99e447c281a13edf8b10e4e75a7274a9", - "md5": "d83de02a57a38afd0d2c1cd9f524cfca", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/demos/bio/server-cmod.c", - "type": "file", - "name": "server-cmod.c", - "base_name": "server-cmod", - "extension": ".c", - "date": "2017-05-25", - "size": 2448, - "sha1": "9665dcbfe7adced1b6a03adcdeb5133873262b30", - "md5": "422003f3ab95b7d31bc215a49dbde509", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/demos/bio/server-conf.c", - "type": "file", - "name": "server-conf.c", - "base_name": "server-conf", - "extension": ".c", - "date": "2017-05-25", - "size": 3828, - "sha1": "d5745210906f95ccb6efa1462459996d439ac7c7", - "md5": "d97382f3e6a1d65a6ad84a7a897d0dc1", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/demos/bio/server-ec.pem", - "type": "file", - "name": "server-ec.pem", - "base_name": "server-ec", - "extension": ".pem", - "date": "2017-05-25", - "size": 889, - "sha1": "92f49cdcacc821b3dce71684f30a66f083cdf040", - "md5": "02cb90c7a9104d7dfaec5068edd678bf", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/demos/bio/server.pem", - "type": "file", - "name": "server.pem", - "base_name": "server", - "extension": ".pem", - "date": "2017-05-25", - "size": 4799, - "sha1": "fe88dcba1740f5e4044dfe70027e2d1d3c2c2ce1", - "md5": "4360c28f98b2c959abe293e956762927", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/demos/bio/shared.opt", - "type": "file", - "name": "shared.opt", - "base_name": "shared", - "extension": ".opt", - "date": "2017-05-25", - "size": 47, - "sha1": "5c921cc4ac884f3794c3825033c1744cb8e9670c", - "md5": "25b2a39386bdffdc253dbe95243fa502", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/demos/bio/static.opt", - "type": "file", - "name": "static.opt", - "base_name": "static", - "extension": ".opt", - "date": "2017-05-25", - "size": 35, - "sha1": "55ee6c7780e111a256ba2d7a73ed0c687666aafe", - "md5": "a91856026c4b334ca89a5a19f6ebb802", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/demos/certs/ca.cnf", - "type": "file", - "name": "ca.cnf", - "base_name": "ca", - "extension": ".cnf", - "date": "2017-05-25", - "size": 2246, - "sha1": "18b6a95188937bf162db1d70bd1179435c4a11b6", - "md5": "560b3a727bd4160ff1965e151431a40e", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/demos/certs/mkcerts.sh", - "type": "file", - "name": "mkcerts.sh", - "base_name": "mkcerts", - "extension": ".sh", - "date": "2017-05-25", - "size": 3889, - "sha1": "5538a19a1964d99775694bed7edf322b618681b0", - "md5": "55bd086b8059f031e765cc994e7c1b12", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/demos/certs/ocspquery.sh", - "type": "file", - "name": "ocspquery.sh", - "base_name": "ocspquery", - "extension": ".sh", - "date": "2017-05-25", - "size": 798, - "sha1": "abdbfadeea1e2cb471b9e03e433f1e84f4743dfb", - "md5": "692fea99593accca27516e5cbb65781e", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/demos/certs/ocsprun.sh", - "type": "file", - "name": "ocsprun.sh", - "base_name": "ocsprun", - "extension": ".sh", - "date": "2017-05-25", - "size": 392, - "sha1": "ec758e17d24493f894504eb78393337a5bb4827a", - "md5": "98fc053c089f6cf302d66c84e90003f9", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/demos/certs/README", - "type": "file", - "name": "README", - "base_name": "README", - "extension": "", - "date": "2017-05-25", - "size": 860, - "sha1": "2b7f34b20c88aaa356593a058b2ac460981b6200", - "md5": "9c9f8b16be52599d79d65e72023c5c0d", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/demos/certs/apps", - "type": "directory", - "name": "apps", - "base_name": "apps", - "extension": "", - "date": null, - "size": 13164, - "sha1": null, - "md5": null, - "files_count": 8, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/demos/certs/apps/apps.cnf", - "type": "file", - "name": "apps.cnf", - "base_name": "apps", - "extension": ".cnf", - "date": "2017-05-25", - "size": 1794, - "sha1": "b1e136efdfee61f3d35f21e527588e61a3a1cb66", - "md5": "54b6050e47ec8c482634d835d9ad48c9", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/demos/certs/apps/ckey.pem", - "type": "file", - "name": "ckey.pem", - "base_name": "ckey", - "extension": ".pem", - "date": "2017-05-25", - "size": 1679, - "sha1": "88e868d338854b7c3c2d1cab4657d6f3165269f1", - "md5": "838ee902ee6ecd0d27b06db8d01120ff", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/demos/certs/apps/intkey.pem", - "type": "file", - "name": "intkey.pem", - "base_name": "intkey", - "extension": ".pem", - "date": "2017-05-25", - "size": 1675, - "sha1": "1bac78cf5d8f17d3bd398d782a7b4a40ed33aa38", - "md5": "cf6c14827e5e85105378c6581bb667cf", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/demos/certs/apps/mkacerts.sh", - "type": "file", - "name": "mkacerts.sh", - "base_name": "mkacerts", - "extension": ".sh", - "date": "2017-05-25", - "size": 1865, - "sha1": "4a7c4fd81f0ce5b6fdd7fef661172d25b5f6ea86", - "md5": "f2c773a1034ca503deaf9fff35c805b1", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/demos/certs/apps/mkxcerts.sh", - "type": "file", - "name": "mkxcerts.sh", - "base_name": "mkxcerts", - "extension": ".sh", - "date": "2017-05-25", - "size": 1118, - "sha1": "978c3e560e5e62828d2afb40b197c017f9f7a7a7", - "md5": "3f9761800f1fa5ad02600cb8fbfa81d7", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/demos/certs/apps/rootkey.pem", - "type": "file", - "name": "rootkey.pem", - "base_name": "rootkey", - "extension": ".pem", - "date": "2017-05-25", - "size": 1679, - "sha1": "1e6e2b6c8b9d1184cf353b069377b198dfea4df9", - "md5": "a3abd0f21f05e6b80453e240694251f2", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/demos/certs/apps/skey.pem", - "type": "file", - "name": "skey.pem", - "base_name": "skey", - "extension": ".pem", - "date": "2017-05-25", - "size": 1679, - "sha1": "38dfed55e30e2bc9963b3b19c972ef25c062a87f", - "md5": "8f9a3cd144fa1c27bab564b8bc00a81b", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/demos/certs/apps/skey2.pem", - "type": "file", - "name": "skey2.pem", - "base_name": "skey2", - "extension": ".pem", - "date": "2017-05-25", - "size": 1675, - "sha1": "5183c729156f6fa01c28ae5cab56a407ecb2d36d", - "md5": "b5267061b96c6e40e2502a7429922fea", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/demos/cms/cacert.pem", - "type": "file", - "name": "cacert.pem", - "base_name": "cacert", - "extension": ".pem", - "date": "2017-05-25", - "size": 1070, - "sha1": "cd5cb64b8c0d5654b5a768d820a2b1ec03ec365a", - "md5": "fc177713fa6e8124593ccb3da13404b9", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/demos/cms/cakey.pem", - "type": "file", - "name": "cakey.pem", - "base_name": "cakey", - "extension": ".pem", - "date": "2017-05-25", - "size": 891, - "sha1": "6f4461b4797f7521bb72a9ba87d50735c1523dbe", - "md5": "9abc6dc8cd020db653a2d06be1bc3ac9", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/demos/cms/cms_comp.c", - "type": "file", - "name": "cms_comp.c", - "base_name": "cms_comp", - "extension": ".c", - "date": "2017-05-25", - "size": 1370, - "sha1": "24cf3feb5ce06b9f3c8f6043fd48bc86297b9aac", - "md5": "49cdd262679e38d870293e6b1926b117", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/demos/cms/cms_ddec.c", - "type": "file", - "name": "cms_ddec.c", - "base_name": "cms_ddec", - "extension": ".c", - "date": "2017-05-25", - "size": 1950, - "sha1": "f7a5cb8d23ce63966d21bfa2c9cfa07d119be646", - "md5": "f6ac9f3ffb20e6bd5f70a2aacac7fe53", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/demos/cms/cms_dec.c", - "type": "file", - "name": "cms_dec.c", - "base_name": "cms_dec", - "extension": ".c", - "date": "2017-05-25", - "size": 1688, - "sha1": "26023ddff1878aa31cb770669aec003d6eb839a5", - "md5": "e217f4c2e5348fec2032bb482ef7aebc", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/demos/cms/cms_denc.c", - "type": "file", - "name": "cms_denc.c", - "base_name": "cms_denc", - "extension": ".c", - "date": "2017-05-25", - "size": 2214, - "sha1": "c20f87091c0cd43b6209e4c16ad07a6f55596e41", - "md5": "1ccaed5a7f1d46a29afd710c23f05bfc", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/demos/cms/cms_enc.c", - "type": "file", - "name": "cms_enc.c", - "base_name": "cms_enc", - "extension": ".c", - "date": "2017-05-25", - "size": 2067, - "sha1": "7f707329717e8b9622a06c3ada1f6efc09788531", - "md5": "5982a700ed9c9620141781931c346c83", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/demos/cms/cms_sign.c", - "type": "file", - "name": "cms_sign.c", - "base_name": "cms_sign", - "extension": ".c", - "date": "2017-05-25", - "size": 1974, - "sha1": "e1db8b66c24f6d9fc4c2b31fd741921300769416", - "md5": "9aafa425975699bde879c93221b5c862", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/demos/cms/cms_sign2.c", - "type": "file", - "name": "cms_sign2.c", - "base_name": "cms_sign2", - "extension": ".c", - "date": "2017-05-25", - "size": 2122, - "sha1": "0fa8bd86c0961537cd24bbc91f2fa6d6da655124", - "md5": "7faa837c381b3a8c17491495932b6c27", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/demos/cms/cms_uncomp.c", - "type": "file", - "name": "cms_uncomp.c", - "base_name": "cms_uncomp", - "extension": ".c", - "date": "2017-05-25", - "size": 1237, - "sha1": "a4068c0891bc887fdca917a52d42c69b0eef7fce", - "md5": "0832ec7e0bb353d751d50923580236c0", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/demos/cms/cms_ver.c", - "type": "file", - "name": "cms_ver.c", - "base_name": "cms_ver", - "extension": ".c", - "date": "2017-05-25", - "size": 1821, - "sha1": "9ada602a3eace0ef5ce9d8a12c7020d630ed5d05", - "md5": "258ed606ed1d0efa0ddf3dff287d73f8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/demos/cms/comp.txt", - "type": "file", - "name": "comp.txt", - "base_name": "comp", - "extension": ".txt", - "date": "2017-05-25", - "size": 566, - "sha1": "ca0b204ee4acf5a30bed9e6185193e9399df3547", - "md5": "16c11101236469e8b8cd1e8b61c711f3", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/demos/cms/encr.txt", - "type": "file", - "name": "encr.txt", - "base_name": "encr", - "extension": ".txt", - "date": "2017-05-25", - "size": 65, - "sha1": "5166c6c3ed9a4e95420df8232d82422414f103ba", - "md5": "720d954d426fc7fc0ac04c38e1e440a1", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/demos/cms/sign.txt", - "type": "file", - "name": "sign.txt", - "base_name": "sign", - "extension": ".txt", - "date": "2017-05-25", - "size": 58, - "sha1": "7ba6b78642d3c84a38cd58f3285b81fb2d2f22a4", - "md5": "e844b4a4c7dceb87392d4e2264c8ecc8", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/demos/cms/signer.pem", - "type": "file", - "name": "signer.pem", - "base_name": "signer", - "extension": ".pem", - "date": "2017-05-25", - "size": 1868, - "sha1": "112a4fb8f81d81db9a235165afabfc74f6f7c2b4", - "md5": "f2d2839d56e288c39c91410092552001", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/demos/cms/signer2.pem", - "type": "file", - "name": "signer2.pem", - "base_name": "signer2", - "extension": ".pem", - "date": "2017-05-25", - "size": 1868, - "sha1": "c44d3debb2cc278c5ed33d844bc5475fb586117d", - "md5": "72d5ba6cb1eb83a1a9317829320d6971", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/demos/evp/aesccm.c", - "type": "file", - "name": "aesccm.c", - "base_name": "aesccm", - "extension": ".c", - "date": "2017-05-25", - "size": 4614, - "sha1": "881c80749dc71767fe2e368cec0bdaff4c21e3b7", - "md5": "00af20c3a57a561cbbacbc9132b13f6e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/demos/evp/aesgcm.c", - "type": "file", - "name": "aesgcm.c", - "base_name": "aesgcm", - "extension": ".c", - "date": "2017-05-25", - "size": 4172, - "sha1": "9137824a4b2fc810326fe9fdef592fee6b76c578", - "md5": "068e15628e1b721129d88ba984e518af", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/demos/evp/Makefile", - "type": "file", - "name": "Makefile", - "base_name": "Makefile", - "extension": "", - "date": "2017-05-25", - "size": 500, - "sha1": "2a962be15bcc43493d5e8ddd425f98701db06131", - "md5": "89ad7165f7ac8d29c8796303053b399e", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/demos/pkcs12/pkread.c", - "type": "file", - "name": "pkread.c", - "base_name": "pkread", - "extension": ".c", - "date": "2017-05-25", - "size": 1916, - "sha1": "24349969a82c727a42a6b575de30b81b96f26bfc", - "md5": "db09f787a517e75bb17ad0fb8dccd34a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/demos/pkcs12/pkwrite.c", - "type": "file", - "name": "pkwrite.c", - "base_name": "pkwrite", - "extension": ".c", - "date": "2017-05-25", - "size": 1500, - "sha1": "bdbc921863959a2c316cce44f3822b2113181215", - "md5": "5d05f4d00f83dc5ddbd5dbbb6125f203", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/demos/pkcs12/README", - "type": "file", - "name": "README", - "base_name": "README", - "extension": "", - "date": "2017-05-25", - "size": 52, - "sha1": "7861e5463cc997798a9079ad20935f9332d27225", - "md5": "794ba0c042b0aa324675112386504e26", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [], - "holders": [], - "authors": [ - "Steve Henson." - ], - "start_line": 3, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/demos/smime/cacert.pem", - "type": "file", - "name": "cacert.pem", - "base_name": "cacert", - "extension": ".pem", - "date": "2017-05-25", - "size": 1070, - "sha1": "cd5cb64b8c0d5654b5a768d820a2b1ec03ec365a", - "md5": "fc177713fa6e8124593ccb3da13404b9", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/demos/smime/cakey.pem", - "type": "file", - "name": "cakey.pem", - "base_name": "cakey", - "extension": ".pem", - "date": "2017-05-25", - "size": 891, - "sha1": "6f4461b4797f7521bb72a9ba87d50735c1523dbe", - "md5": "9abc6dc8cd020db653a2d06be1bc3ac9", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/demos/smime/encr.txt", - "type": "file", - "name": "encr.txt", - "base_name": "encr", - "extension": ".txt", - "date": "2017-05-25", - "size": 68, - "sha1": "8643e033847f354749eb2d8764cd2240234737f2", - "md5": "ccfc0b4f06eb054f05bae14c1bef7db6", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/demos/smime/sign.txt", - "type": "file", - "name": "sign.txt", - "base_name": "sign", - "extension": ".txt", - "date": "2017-05-25", - "size": 54, - "sha1": "ccfe77e892958809b7c37463bcb6bf19b8ae2257", - "md5": "dc41eee12c887b46dd4f881637740be1", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/demos/smime/signer.pem", - "type": "file", - "name": "signer.pem", - "base_name": "signer", - "extension": ".pem", - "date": "2017-05-25", - "size": 1868, - "sha1": "112a4fb8f81d81db9a235165afabfc74f6f7c2b4", - "md5": "f2d2839d56e288c39c91410092552001", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/demos/smime/signer2.pem", - "type": "file", - "name": "signer2.pem", - "base_name": "signer2", - "extension": ".pem", - "date": "2017-05-25", - "size": 1868, - "sha1": "c44d3debb2cc278c5ed33d844bc5475fb586117d", - "md5": "72d5ba6cb1eb83a1a9317829320d6971", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/demos/smime/smdec.c", - "type": "file", - "name": "smdec.c", - "base_name": "smdec", - "extension": ".c", - "date": "2017-05-25", - "size": 1652, - "sha1": "e68172b9f1e3469b21f33706852c8dcdb91ac673", - "md5": "f3daaef161d889cb8dadb5fc7ba44c2d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/demos/smime/smenc.c", - "type": "file", - "name": "smenc.c", - "base_name": "smenc", - "extension": ".c", - "date": "2017-05-25", - "size": 2041, - "sha1": "a849f10d973d2ad8b19980b335fd55bc3476ed22", - "md5": "208741abb1b47913f3fb7b3265220b75", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/demos/smime/smsign.c", - "type": "file", - "name": "smsign.c", - "base_name": "smsign", - "extension": ".c", - "date": "2017-05-25", - "size": 1969, - "sha1": "cde2b25bcc90b346f349092c68404f1b80135a79", - "md5": "1b9b1e04868afc5abc81ddf58bf8370b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/demos/smime/smsign2.c", - "type": "file", - "name": "smsign2.c", - "base_name": "smsign2", - "extension": ".c", - "date": "2017-05-25", - "size": 2139, - "sha1": "3a2b4a48388211d842596b9f31dabf63419aae33", - "md5": "7781f9174c2ee6d5b1fa8ffe8b0190ae", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/demos/smime/smver.c", - "type": "file", - "name": "smver.c", - "base_name": "smver", - "extension": ".c", - "date": "2017-05-25", - "size": 1817, - "sha1": "66e4d7ec9cdb52b5fc25ef1124bfdf975cb4283f", - "md5": "e2a69cba17885baaaf3ffe3c2a079414", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/doc/dir-locals.example.el", - "type": "file", - "name": "dir-locals.example.el", - "base_name": "dir-locals.example", - "extension": ".el", - "date": "2017-05-25", - "size": 449, - "sha1": "49568a1a7a41fbebe92cf7e1385ab6827fe29996", - "md5": "c8890868d63134e52e41365cb6c71edd", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/fingerprints.txt", - "type": "file", - "name": "fingerprints.txt", - "base_name": "fingerprints", - "extension": ".txt", - "date": "2017-05-25", - "size": 1174, - "sha1": "f46e8eddf7eda8c867cb38215de133cb0edaefe4", - "md5": "22213d10097cd4e0746a65c3aa40c15a", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/openssl-c-indent.el", - "type": "file", - "name": "openssl-c-indent.el", - "base_name": "openssl-c-indent", - "extension": ".el", - "date": "2017-05-25", - "size": 3209, - "sha1": "c8d759e6a74bb7c73ccb71854170f18c23e6184a", - "md5": "87d2c068d8d1e21937aa744fa40a36f7", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/README", - "type": "file", - "name": "README", - "base_name": "README", - "extension": "", - "date": "2017-05-25", - "size": 548, - "sha1": "c16077cf1ee820c842aeb96b1c77b88c2f40b2ae", - "md5": "7daaf725d372014eb79b0475d3e61d39", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/apps", - "type": "directory", - "name": "apps", - "base_name": "apps", - "extension": "", - "date": null, - "size": 433764, - "sha1": null, - "md5": null, - "files_count": 49, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto", - "type": "directory", - "name": "crypto", - "base_name": "crypto", - "extension": "", - "date": null, - "size": 1076231, - "sha1": null, - "md5": null, - "files_count": 274, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/HOWTO", - "type": "directory", - "name": "HOWTO", - "base_name": "HOWTO", - "extension": "", - "date": null, - "size": 19860, - "sha1": null, - "md5": null, - "files_count": 3, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/man3", - "type": "directory", - "name": "man3", - "base_name": "man3", - "extension": "", - "date": null, - "size": 2028, - "sha1": null, - "md5": null, - "files_count": 1, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/ssl", - "type": "directory", - "name": "ssl", - "base_name": "ssl", - "extension": "", - "date": null, - "size": 423117, - "sha1": null, - "md5": null, - "files_count": 123, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/apps/asn1parse.pod", - "type": "file", - "name": "asn1parse.pod", - "base_name": "asn1parse", - "extension": ".pod", - "date": "2017-05-25", - "size": 5828, - "sha1": "ede4ffae03492dbabe1b1098c6b76f3e3a0596c4", - "md5": "25a0b843c40a31e473096c4955401d75", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 201, - "end_line": 201 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/apps/CA.pl.pod", - "type": "file", - "name": "CA.pl.pod", - "base_name": "CA.pl", - "extension": ".pod", - "date": "2017-05-25", - "size": 6942, - "sha1": "3a5864063fef797dfc5d9d1c3457b92ed52bff2b", - "md5": "f4db65ad08e2ee263a04d670e5ce47b7", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 207, - "end_line": 207 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/apps/ca.pod", - "type": "file", - "name": "ca.pod", - "base_name": "ca", - "extension": ".pod", - "date": "2017-05-25", - "size": 23340, - "sha1": "8896e165351618a779aa13a156c800f98502da24", - "md5": "171d6c25effeb932dfcad133a7122573", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 712, - "end_line": 712 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/apps/ciphers.pod", - "type": "file", - "name": "ciphers.pod", - "base_name": "ciphers", - "extension": ".pod", - "date": "2017-05-25", - "size": 25814, - "sha1": "2b8c0d9ef7c056100a803b2045e2752ec1008fa9", - "md5": "56028bd94b15c303a9a0c19760c1b67a", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 723, - "end_line": 723 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/apps/cms.pod", - "type": "file", - "name": "cms.pod", - "base_name": "cms", - "extension": ".pod", - "date": "2017-05-25", - "size": 23921, - "sha1": "edea6a02f4806b947404cbcbf465c0b547090fb8", - "md5": "02ff2d6ee7c810fdf62464c106c79533", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 730, - "end_line": 730 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/apps/config.pod", - "type": "file", - "name": "config.pod", - "base_name": "config", - "extension": ".pod", - "date": "2017-05-25", - "size": 13031, - "sha1": "cb802ee14cbec4f765183632c692deaeaf97e594", - "md5": "25e849c2138375cc2c2442d642afff69", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 380, - "end_line": 380 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/apps/crl.pod", - "type": "file", - "name": "crl.pod", - "base_name": "crl", - "extension": ".pod", - "date": "2017-05-25", - "size": 2820, - "sha1": "56b3754b851520370efa336e90288050a6d2393d", - "md5": "a49064121e01f3525147f1aec51acdee", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 135, - "end_line": 135 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/apps/crl2pkcs7.pod", - "type": "file", - "name": "crl2pkcs7.pod", - "base_name": "crl2pkcs7", - "extension": ".pod", - "date": "2017-05-25", - "size": 2773, - "sha1": "3dbfd3feb96fba49e09516831bb5fe5de5b3302c", - "md5": "8ca74fbab93f0f6d11480da1bd6a8295", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 98, - "end_line": 98 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/apps/dgst.pod", - "type": "file", - "name": "dgst.pod", - "base_name": "dgst", - "extension": ".pod", - "date": "2017-05-25", - "size": 6341, - "sha1": "824cff1c3c87cdce5b80536c2029650787e7b65f", - "md5": "85b8340960aa0d13d4065d6745959be0", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 231, - "end_line": 231 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/apps/dhparam.pod", - "type": "file", - "name": "dhparam.pod", - "base_name": "dhparam", - "extension": ".pod", - "date": "2017-05-25", - "size": 4326, - "sha1": "9e39eada0f851b8abe966b7abee0dcebb10b65fe", - "md5": "e4faca5f5b736e4b0b8054daa76b9af3", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 152, - "end_line": 152 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/apps/dsa.pod", - "type": "file", - "name": "dsa.pod", - "base_name": "dsa", - "extension": ".pod", - "date": "2017-05-25", - "size": 4830, - "sha1": "ddf6702fe4fa7828bbcf45ee618486bd50d1524c", - "md5": "c1fc66d9ff87658b94bf36c21d8a0210", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 171, - "end_line": 171 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/apps/dsaparam.pod", - "type": "file", - "name": "dsaparam.pod", - "base_name": "dsaparam", - "extension": ".pod", - "date": "2017-05-25", - "size": 3178, - "sha1": "60040598817c80e32d22d92463d78bd31fc47aff", - "md5": "17bc6a261505657b5b4195430dee1457", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 117, - "end_line": 117 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/apps/ec.pod", - "type": "file", - "name": "ec.pod", - "base_name": "ec", - "extension": ".pod", - "date": "2017-05-25", - "size": 5889, - "sha1": "98d284ae7680e0a17b4923e7e4817a04a8b395a0", - "md5": "45ed0c950f2366f66ce6912ad5dcc9d5", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 199, - "end_line": 199 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/apps/ecparam.pod", - "type": "file", - "name": "ecparam.pod", - "base_name": "ecparam", - "extension": ".pod", - "date": "2017-05-25", - "size": 4971, - "sha1": "1edf073d86696eac643854d86ba77b77297037e4", - "md5": "b9faf0d743b39dfb5c7a3b552953bb6b", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 178, - "end_line": 178 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/apps/enc.pod", - "type": "file", - "name": "enc.pod", - "base_name": "enc", - "extension": ".pod", - "date": "2017-05-25", - "size": 10415, - "sha1": "e5e613c6129279c6564a6556f347d3b058fedd10", - "md5": "b933f1186f3e2491e7d939b26ef04df8", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 346, - "end_line": 346 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/apps/engine.pod", - "type": "file", - "name": "engine.pod", - "base_name": "engine", - "extension": ".pod", - "date": "2017-05-25", - "size": 2735, - "sha1": "d79fd5d395dee1225d0018cf8984c5af6acae5e6", - "md5": "d64464e678c3955de550ede6e6d5398a", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 97, - "end_line": 97 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/apps/errstr.pod", - "type": "file", - "name": "errstr.pod", - "base_name": "errstr", - "extension": ".pod", - "date": "2017-05-25", - "size": 941, - "sha1": "f2449b04731e41ea5d68eac8fc4dedd5773be76b", - "md5": "0922f9849554682de8952f442dfb5de5", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 38, - "end_line": 38 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/apps/gendsa.pod", - "type": "file", - "name": "gendsa.pod", - "base_name": "gendsa", - "extension": ".pod", - "date": "2017-05-25", - "size": 2296, - "sha1": "311af5ffc72220a7f66838de8611f97ab236de4c", - "md5": "838163810f2772c256724d343da3d140", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 84, - "end_line": 84 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/apps/genpkey.pod", - "type": "file", - "name": "genpkey.pod", - "base_name": "genpkey", - "extension": ".pod", - "date": "2017-05-25", - "size": 7607, - "sha1": "2cbc28e1498213070ee890a62c6233639e3bdd03", - "md5": "5fbf9eaf0cb5ceea55e9f1e905c22d3d", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 270, - "end_line": 270 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/apps/genrsa.pod", - "type": "file", - "name": "genrsa.pod", - "base_name": "genrsa", - "extension": ".pod", - "date": "2017-05-25", - "size": 3168, - "sha1": "f3d0a16204080632885193709706fb04260a4da6", - "md5": "022d9793e629f0ff93c081a1ec44e4a1", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 111, - "end_line": 111 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/apps/list.pod", - "type": "file", - "name": "list.pod", - "base_name": "list", - "extension": ".pod", - "date": "2017-05-25", - "size": 1715, - "sha1": "f0c62958e2f2f77e37b3f64bb48bbc590547beb4", - "md5": "3d22dd306f13dec7ba26737c9c0d1cfd", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 74, - "end_line": 74 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/apps/nseq.pod", - "type": "file", - "name": "nseq.pod", - "base_name": "nseq", - "extension": ".pod", - "date": "2017-05-25", - "size": 2069, - "sha1": "7d09041151f1249f356e3a1132be8140b17c8ead", - "md5": "01eef24e615b6a1f0849f728a253b9af", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 77, - "end_line": 77 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/apps/ocsp.pod", - "type": "file", - "name": "ocsp.pod", - "base_name": "ocsp", - "extension": ".pod", - "date": "2017-05-25", - "size": 15177, - "sha1": "d1b9001ded0841743cb13661ff698a98b38a40d5", - "md5": "1ec0e9a404d17f3adf3358d24e4f75c7", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 459, - "end_line": 459 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/apps/openssl.pod", - "type": "file", - "name": "openssl.pod", - "base_name": "openssl", - "extension": ".pod", - "date": "2017-05-25", - "size": 10546, - "sha1": "9ea466153fdf26a882f96a97fdd0ade69649888b", - "md5": "f21dfee72a8bb5b7a849e4160cb17a82", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 443, - "end_line": 443 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/apps/passwd.pod", - "type": "file", - "name": "passwd.pod", - "base_name": "passwd", - "extension": ".pod", - "date": "2017-05-25", - "size": 2053, - "sha1": "b5ef420dc9b6fad6c854cb28b39317f5f3a107e0", - "md5": "bd35e95656dde827081cdf786cdd8b4a", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 89, - "end_line": 89 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/apps/pkcs12.pod", - "type": "file", - "name": "pkcs12.pod", - "base_name": "pkcs12", - "extension": ".pod", - "date": "2017-05-25", - "size": 11628, - "sha1": "0379719f04537f6d266f305444a09b6da1613855", - "md5": "a26f719e46f190bc7d5c5c2a4a1f9344", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 373, - "end_line": 373 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/apps/pkcs7.pod", - "type": "file", - "name": "pkcs7.pod", - "base_name": "pkcs7", - "extension": ".pod", - "date": "2017-05-25", - "size": 2626, - "sha1": "77b408b0affde9f357734548af28d33e9ef9c88b", - "md5": "a0f64295bcd15898d9db6874171556e1", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 112, - "end_line": 112 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/apps/pkcs8.pod", - "type": "file", - "name": "pkcs8.pod", - "base_name": "pkcs8", - "extension": ".pod", - "date": "2017-05-25", - "size": 9555, - "sha1": "24aead9e3d822a9d34caf479a7fc32004d3e523c", - "md5": "285e495b95105cfe80d74e90eccd23eb", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 294, - "end_line": 294 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/apps/pkey.pod", - "type": "file", - "name": "pkey.pod", - "base_name": "pkey", - "extension": ".pod", - "date": "2017-05-25", - "size": 3878, - "sha1": "3923325ec691ef7bf66183d252917ac6d762c2f4", - "md5": "53383ef14ae4d2ae5ae8f9ab502f22b4", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 148, - "end_line": 148 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/apps/pkeyparam.pod", - "type": "file", - "name": "pkeyparam.pod", - "base_name": "pkeyparam", - "extension": ".pod", - "date": "2017-05-25", - "size": 1837, - "sha1": "14e150b0826c306dab1c6ac5218a7a5ba2cefa92", - "md5": "c661629d2189b144d47ba0915be81244", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 75, - "end_line": 75 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/apps/pkeyutl.pod", - "type": "file", - "name": "pkeyutl.pod", - "base_name": "pkeyutl", - "extension": ".pod", - "date": "2017-05-25", - "size": 8221, - "sha1": "335b954acfe93da0ce86188904ee87ca553875a4", - "md5": "8749dba351ff1c9c10e9cc7465f404fa", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 285, - "end_line": 285 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/apps/rand.pod", - "type": "file", - "name": "rand.pod", - "base_name": "rand", - "extension": ".pod", - "date": "2017-05-25", - "size": 1470, - "sha1": "6b87b9538feb19fac31c9097a02f20fb9e5b229a", - "md5": "628938537edd1093fbc47a4a75e58f72", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 62, - "end_line": 62 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/apps/rehash.pod", - "type": "file", - "name": "rehash.pod", - "base_name": "rehash", - "extension": ".pod", - "date": "2017-05-25", - "size": 4026, - "sha1": "1385230fea01416092c6a9f178ce19298f48bf36", - "md5": "a31ecdc7522b44a07304aa8a12bcb440", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "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": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 132, - "end_line": 132 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/apps/req.pod", - "type": "file", - "name": "req.pod", - "base_name": "req", - "extension": ".pod", - "date": "2017-05-25", - "size": 21586, - "sha1": "e33b1484b0b0e1b93a571bddb4c3e75af5b74ea1", - "md5": "2eb19e5ed714b8b98fef162f67854016", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 654, - "end_line": 654 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/apps/rsa.pod", - "type": "file", - "name": "rsa.pod", - "base_name": "rsa", - "extension": ".pod", - "date": "2017-05-25", - "size": 6070, - "sha1": "b34db5fc0d3867d1f7107c19c8d25c8d9793033d", - "md5": "d1d0d76822b8267e361053e254cb738f", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 209, - "end_line": 209 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/apps/rsautl.pod", - "type": "file", - "name": "rsautl.pod", - "base_name": "rsautl", - "extension": ".pod", - "date": "2017-05-25", - "size": 5450, - "sha1": "e97fe7f3aa98b6883259df9b182e225c63f077fd", - "md5": "5435a26180ef3fa1f75ff73ee29edd4f", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 197, - "end_line": 197 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/apps/sess_id.pod", - "type": "file", - "name": "sess_id.pod", - "base_name": "sess_id", - "extension": ".pod", - "date": "2017-05-25", - "size": 4142, - "sha1": "74a1fa94b9065b908edb06ecd031e8d45812e08c", - "md5": "cadf5a1ad1312da6c0bd8f745ee4f1ce", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 156, - "end_line": 156 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/apps/smime.pod", - "type": "file", - "name": "smime.pod", - "base_name": "smime", - "extension": ".pod", - "date": "2017-05-25", - "size": 16568, - "sha1": "c5ac71e64b0715677c0d5cc5b18cf089ccc135be", - "md5": "277fcdea85b62a8e3c78e69547138232", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 510, - "end_line": 510 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/apps/speed.pod", - "type": "file", - "name": "speed.pod", - "base_name": "speed", - "extension": ".pod", - "date": "2017-05-25", - "size": 1517, - "sha1": "9d83cf034237a37cfee57e611b443b3e6775b99f", - "md5": "028c4543ded357e5c9647beaf43f574f", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 60, - "end_line": 60 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/apps/spkac.pod", - "type": "file", - "name": "spkac.pod", - "base_name": "spkac", - "extension": ".pod", - "date": "2017-05-25", - "size": 3723, - "sha1": "9ea15192639a5c263530dc1e802a1b38195209c6", - "md5": "5246213ad64c86eea24a62231e8a0cc0", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 140, - "end_line": 140 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/apps/s_client.pod", - "type": "file", - "name": "s_client.pod", - "base_name": "s_client", - "extension": ".pod", - "date": "2017-05-25", - "size": 19620, - "sha1": "237465ac0da2099c1db3d90d1a5a85ada7d82d3e", - "md5": "9e0b5581491a4649f201ff066f8eefb0", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 609, - "end_line": 609 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/apps/s_server.pod", - "type": "file", - "name": "s_server.pod", - "base_name": "s_server", - "extension": ".pod", - "date": "2017-05-25", - "size": 18000, - "sha1": "187108bf17fd9797b12d4f2a36f7474f6cf5ea51", - "md5": "8f40103112c9de004636a7fb4f4820d8", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 611, - "end_line": 611 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/apps/s_time.pod", - "type": "file", - "name": "s_time.pod", - "base_name": "s_time", - "extension": ".pod", - "date": "2017-05-25", - "size": 6431, - "sha1": "d04e67a0d0f3cb7a9f81e7fdb32bfbd36b06d8d7", - "md5": "1dd5026dfa2f5bfeae917162e5fb5456", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 187, - "end_line": 187 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/apps/ts.pod", - "type": "file", - "name": "ts.pod", - "base_name": "ts", - "extension": ".pod", - "date": "2017-05-25", - "size": 20920, - "sha1": "54f8e125a184c6c6bacf3e5103df43d3e7fdb4fa", - "md5": "ca0e3215f7400dc47d5d1aa192bf16a4", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 654, - "end_line": 654 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/apps/tsget.pod", - "type": "file", - "name": "tsget.pod", - "base_name": "tsget", - "extension": ".pod", - "date": "2017-05-25", - "size": 6374, - "sha1": "c6d440608e8fefd009cc369416d5489d571de619", - "md5": "593df6ca9b6e31bfe75bd2425e43ea4e", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 192, - "end_line": 192 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/apps/verify.pod", - "type": "file", - "name": "verify.pod", - "base_name": "verify", - "extension": ".pod", - "date": "2017-05-25", - "size": 22058, - "sha1": "1c879db5432fe9bf2590de218da54dc1fd678c35", - "md5": "9bf0195550797795530b41b82a003e42", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 100.0, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.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": 100.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": 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": 717, - "end_line": 717 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/apps/version.pod", - "type": "file", - "name": "version.pod", - "base_name": "version", - "extension": ".pod", - "date": "2017-05-25", - "size": 1187, - "sha1": "1fe867bd8b84c9e5ecf2aa402be4ad9ab3433831", - "md5": "06a8190695e1840d8ffb22a75bc767cf", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 73, - "end_line": 73 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/apps/x509.pod", - "type": "file", - "name": "x509.pod", - "base_name": "x509", - "extension": ".pod", - "date": "2017-05-25", - "size": 27542, - "sha1": "6e2fb5e1f826b3f55e85676064130b41d4ac0317", - "md5": "fbfce658be9df46b72c466683127690a", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 898, - "end_line": 898 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/apps/x509v3_config.pod", - "type": "file", - "name": "x509v3_config.pod", - "base_name": "x509v3_config", - "extension": ".pod", - "date": "2017-05-25", - "size": 16609, - "sha1": "3564531112e737e1cd19a80e48f7f6c4305b2f0c", - "md5": "bbeef94c54e2d11949388bc94ceba153", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 534, - "end_line": 534 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 7767, - "sha1": "a4a0baab05fbdd904c4caf00356d14df0786437e", - "md5": "bc651183ee148d4fd792db13a29845b1", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 263, - "end_line": 263 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 5262, - "sha1": "2ee41f1b6b061a0ccb9040c4255f2837e280ca5e", - "md5": "c6125e02e75c21696cb15c5708c6b296", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 126, - "end_line": 126 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1368, - "sha1": "287635326086f1a1414d71ddb1a6c2570d8d6c9c", - "md5": "ebd3047be5b25c5add957ca440c26d26", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 44, - "end_line": 44 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 3301, - "sha1": "c6e2a5184283d890a8636b921b655f54af467907", - "md5": "353a77ab969e2bd01ca80118f4ecae83", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 86, - "end_line": 86 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1254, - "sha1": "3ea75169208cc58fdc04c43a37ea0134f0ce24d3", - "md5": "24a16cff6644e803fa23de00c1e68101", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 45, - "end_line": 45 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 4186, - "sha1": "cdd8bf7c87e8c392f5be50bc41203219e48ae071", - "md5": "40bbcb016c67745315328ff9d40f7397", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 98, - "end_line": 98 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 5025, - "sha1": "2dd32d9b2336fe109ffa6d1c6f2a3f63f4a27c16", - "md5": "b3f6d4d20e32c455d4099d334df6690d", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 131, - "end_line": 131 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 4058, - "sha1": "72efde7abab2f0f13dc6f1c8d8922506631e4bb9", - "md5": "154571263b3593c8b8999863123f0925", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 93, - "end_line": 93 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 12260, - "sha1": "eada39302fad8f1ade455331364481fdb471e24a", - "md5": "784c55f693c12470ed5f4b9bcfbc7f9e", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 323, - "end_line": 323 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 7327, - "sha1": "57ec13a888cb24677c32527835cd46f49dd64778", - "md5": "299c3ef46293d538172f2eb1a60a3d28", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 137, - "end_line": 137 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/BF_encrypt.pod", - "type": "file", - "name": "BF_encrypt.pod", - "base_name": "BF_encrypt", - "extension": ".pod", - "date": "2017-05-25", - "size": 5075, - "sha1": "b562db91b21f22f284a6d170cbfd1f3a36b03ddd", - "md5": "63c02b0d2f3bd8be3f1d1a5a0b5436d5", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 110, - "end_line": 110 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/bio.pod", - "type": "file", - "name": "bio.pod", - "base_name": "bio", - "extension": ".pod", - "date": "2017-05-25", - "size": 2792, - "sha1": "ddf290adc1ec611907a41193cb52a5722c67a1c1", - "md5": "716717f3120f51efb07e29b358c709ef", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 82, - "end_line": 82 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/BIO_ADDR.pod", - "type": "file", - "name": "BIO_ADDR.pod", - "base_name": "BIO_ADDR", - "extension": ".pod", - "date": "2017-05-25", - "size": 5020, - "sha1": "fcbde6ce3b351599d3b8452f42b0e601cb954e5c", - "md5": "a7f80462c409b5e2f7c3425e18c95676", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 118, - "end_line": 118 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/BIO_ADDRINFO.pod", - "type": "file", - "name": "BIO_ADDRINFO.pod", - "base_name": "BIO_ADDRINFO", - "extension": ".pod", - "date": "2017-05-25", - "size": 3020, - "sha1": "9c9c1efcc43ce2bc44525b189b23e2336cd219f1", - "md5": "9900520e62e55e3747a409d0ca852515", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 84, - "end_line": 84 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/BIO_connect.pod", - "type": "file", - "name": "BIO_connect.pod", - "base_name": "BIO_connect", - "extension": ".pod", - "date": "2017-05-25", - "size": 3519, - "sha1": "f8e197cb95c3da932d18f1667c75c2d0dc7f445f", - "md5": "850ce070641b0bf4e1d56e4d99e47529", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 105, - "end_line": 105 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/BIO_ctrl.pod", - "type": "file", - "name": "BIO_ctrl.pod", - "base_name": "BIO_ctrl", - "extension": ".pod", - "date": "2017-05-25", - "size": 5224, - "sha1": "d5b5260942f5264b54d0386bd14c0c20f80fe715", - "md5": "5953ce641303a2183db5f1756709fde5", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 129, - "end_line": 129 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1928, - "sha1": "25deb50d5a442fb0c7c1cd9ad31edc8414d1d3a1", - "md5": "6d88cb3b739754d1e8cadb6c84992ebf", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 62, - "end_line": 62 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2281, - "sha1": "9e4588ba38012c2718a4ae4f4fc663e09a5aeb24", - "md5": "e625a4199b09b49415c1afeaa2c1bfc5", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 84, - "end_line": 84 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 3005, - "sha1": "99096bcfecb0dad9eff5ae2c176f17a34d6ad7ba", - "md5": "eb10992463aac6488bb5f89dd9977ec6", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 85, - "end_line": 85 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2805, - "sha1": "dc38721aee0fb12ada43d163725474213c2ffcb8", - "md5": "bcbe7e07734ae8fa9e660373cc1733bf", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 74, - "end_line": 74 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 4836, - "sha1": "2728420be5d2ef699823bc8ed1ee7cc71d2f9f87", - "md5": "e347637fc649468e167318bebbe8b777", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 149, - "end_line": 149 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 918, - "sha1": "596922b305fa36d70b0f4a76ca9434efca5bfc2f", - "md5": "c103bdfdf4ab6d9df613ab5b248602c3", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 32, - "end_line": 32 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 9691, - "sha1": "502a62de5b063e6dfe42885610abd25b75fc7629", - "md5": "709ffa245e6236f6a2bafbecb8d664dd", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 291, - "end_line": 291 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2214, - "sha1": "ce2813445d0ade4d5c5f8028fd1e4b8baa23c88b", - "md5": "94053d651da2e4dac68d9f1799f5272d", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 58, - "end_line": 58 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2055, - "sha1": "ca681ad17dd4c303d1014a92b06fdaed364cdf41", - "md5": "a31493f29e9a7c83b9ab4e8249a91f55", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 57, - "end_line": 57 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 6309, - "sha1": "fec2b79099c3f97438534e8181f2cca82c65ab05", - "md5": "f1ae45df638ec260455d973f4cf51985", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 124, - "end_line": 124 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/BIO_new.pod", - "type": "file", - "name": "BIO_new.pod", - "base_name": "BIO_new", - "extension": ".pod", - "date": "2017-05-25", - "size": 1997, - "sha1": "302695a7f6825ee693531f79e20fdb168ec55925", - "md5": "58ee59410c6fa046fdf542b4352a3277", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 65, - "end_line": 65 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2418, - "sha1": "a35004b3c69e9f051c5bd014c5a539b8dfa08a1a", - "md5": "ec530c5b285aff9b113ebcf0aa23fa70", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 68, - "end_line": 68 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2192, - "sha1": "d821b213644609cd5d5fb7da2154b88fe7d0c119", - "md5": "1d41affca9f1899b6266e8eb24fd1c3f", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 67, - "end_line": 67 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/BIO_printf.pod", - "type": "file", - "name": "BIO_printf.pod", - "base_name": "BIO_printf", - "extension": ".pod", - "date": "2017-05-25", - "size": 1635, - "sha1": "6299d2f71de5bee5673a055067c1f912a1fd33fd", - "md5": "4ff0a4375f588c0e9d7b3bc5122c3c71", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 43, - "end_line": 43 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/BIO_push.pod", - "type": "file", - "name": "BIO_push.pod", - "base_name": "BIO_push", - "extension": ".pod", - "date": "2017-05-25", - "size": 2511, - "sha1": "faa27cbcf8ec581190057b05df8d20e00db36fe9", - "md5": "d30f73514b98ff43aa4246bacd4a89bf", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 82, - "end_line": 82 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/BIO_read.pod", - "type": "file", - "name": "BIO_read.pod", - "base_name": "BIO_read", - "extension": ".pod", - "date": "2017-05-25", - "size": 2866, - "sha1": "a9f82511256caf279c4f19dfcd8c4112208f70d8", - "md5": "610bf86c648bc4c9c21e601168d79e18", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 70, - "end_line": 70 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 5991, - "sha1": "093300f37a3caae1610f0a39f8ad8f859b860404", - "md5": "8cd28c56450229fdc4162c2fbaddbcca", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "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": 214, - "end_line": 214 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 5148, - "sha1": "823315b44a7d76500800b865d3e74754915fadb1", - "md5": "837c967f46fb6dba538764d8aa0fc2dc", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 125, - "end_line": 125 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 8213, - "sha1": "1f4c98cd7b6cffca7702569aec40a6a75c31008a", - "md5": "7d7c36606cf41549a0b76e8c2fbaeab0", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 215, - "end_line": 215 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 8185, - "sha1": "83c160836bd673999595687960239cc898ad80b5", - "md5": "0a13f37a600205ae9651581ef8505b0c", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 194, - "end_line": 194 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 6977, - "sha1": "aeca6a0e3b329e98cd815bf64928a7c50485ec31", - "md5": "15623186ce367b182f01f032de5f9ba2", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 193, - "end_line": 193 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2676, - "sha1": "9d9d8513f83bd45f6185bfcab22b27faed9b697b", - "md5": "7803ffc0aa72f54047b4417a3a8f0c9b", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 91, - "end_line": 91 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 4762, - "sha1": "61282d82579b2525aa9a507e7503d857de887b90", - "md5": "453453f39e951e099f15e65eb3941cc6", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 152, - "end_line": 152 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 4400, - "sha1": "5b3d487a08eb58ee42d13ebd830961f92b774b7b", - "md5": "48cbac47b6f1749d020653b242fe6c50", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 117, - "end_line": 117 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1132, - "sha1": "0c4cff3d3092d7ea3133ba745fdb3f60dce6fc56", - "md5": "07ea9e1ab6677289825bd6969d29bcd8", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 37, - "end_line": 37 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1409, - "sha1": "6525bef940dff3d349cfe0ee04f3932e7a641dbd", - "md5": "d361d7e164f60a0788d48b785b0dda50", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 47, - "end_line": 47 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/BN_add.pod", - "type": "file", - "name": "BN_add.pod", - "base_name": "BN_add", - "extension": ".pod", - "date": "2017-05-25", - "size": 4218, - "sha1": "fe8cedf84d0338eab75e78ee5f648567b70b4752", - "md5": "fdd612cf59dcba4c208fcae5245311a8", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 120, - "end_line": 120 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1578, - "sha1": "aecdb40045821a7fdbacdb2c3c66d705a9c952ed", - "md5": "5b486e4a727fcf9bd7dc937aa92ab358", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 54, - "end_line": 54 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 4900, - "sha1": "994233914934be30d8e26258734a72b2816cbe64", - "md5": "38d8025e0749905f22e5307562837bf1", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 115, - "end_line": 115 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/BN_bn2bin.pod", - "type": "file", - "name": "BN_bn2bin.pod", - "base_name": "BN_bn2bin", - "extension": ".pod", - "date": "2017-05-25", - "size": 4334, - "sha1": "b03c89618dfa2e2d62292d0f6b39cb9489063dec", - "md5": "44408bf62e9a4b05018bbefa38515aa1", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 109, - "end_line": 109 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/BN_cmp.pod", - "type": "file", - "name": "BN_cmp.pod", - "base_name": "BN_cmp", - "extension": ".pod", - "date": "2017-05-25", - "size": 1273, - "sha1": "f1207f51bbb75032c73bbe5c5ffcb0dca45a81ab", - "md5": "b9ee38828022e481da17959ce1237d7e", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 40, - "end_line": 40 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/BN_copy.pod", - "type": "file", - "name": "BN_copy.pod", - "base_name": "BN_copy", - "extension": ".pod", - "date": "2017-05-25", - "size": 2018, - "sha1": "cee51ea3f96ab7166eb619806ec235bca8dbf990", - "md5": "05c09f3265978be616338453c556b903", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 62, - "end_line": 62 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2018, - "sha1": "ed1e1f28591be3dcc5179665b654be014965c60d", - "md5": "a990313a22a982c6c1c37219e3b15b99", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 69, - "end_line": 69 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1672, - "sha1": "c5622067e48f3e64e49c9222df51b1b78f3008b2", - "md5": "1c244614f43274fbebb21a992db40d95", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 50, - "end_line": 50 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 6520, - "sha1": "0ff45779158ea5c60e92f7e90c303b3cb245e6b3", - "md5": "53ed8902787cc17e4cf384bf1582c203", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 187, - "end_line": 187 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1033, - "sha1": "e757320854716a26e238c6b6bcc533f881bc7c64", - "md5": "faceafe99cb8ec92c3f3b15883fc6030", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 34, - "end_line": 34 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2631, - "sha1": "31bdf584ea2493514b2b3223330923062a09d6be", - "md5": "460a6c74c7f0d7ed5475cce0b188536d", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 83, - "end_line": 83 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2268, - "sha1": "0dc2d38e13a7046d0dde241afaf42e76af9bc0bf", - "md5": "524d0c494de9df0e8ca3b117a3ed00f1", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 69, - "end_line": 69 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/BN_new.pod", - "type": "file", - "name": "BN_new.pod", - "base_name": "BN_new", - "extension": ".pod", - "date": "2017-05-25", - "size": 1592, - "sha1": "79af92e3d671a3f61e1b5e291087838ca722f528", - "md5": "5b93dbe86b5552842b1a788d69a266cd", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 55, - "end_line": 55 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1750, - "sha1": "76b076795fd8325733396b6090712b84cd1d5b93", - "md5": "1e49c5c0ac450ee083210d634ec66a44", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 54, - "end_line": 54 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/BN_rand.pod", - "type": "file", - "name": "BN_rand.pod", - "base_name": "BN_rand", - "extension": ".pod", - "date": "2017-05-25", - "size": 2366, - "sha1": "4da202b7ef8d2b76f9134908f7fe0db002313352", - "md5": "707163d1a275fc548a040cc1bdd28702", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 60, - "end_line": 60 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2010, - "sha1": "e0dc5a9ee913cbc87e0688219c63e0814d28edff", - "md5": "b6d1862b7e93fb9f4211ffcd869be11b", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 62, - "end_line": 62 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/BN_swap.pod", - "type": "file", - "name": "BN_swap.pod", - "base_name": "BN_swap", - "extension": ".pod", - "date": "2017-05-25", - "size": 535, - "sha1": "91701913a95025cb98687dd85474b5db5c491951", - "md5": "3e31d7122a4a3f9a66e1a2a815e4c61f", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 19, - "end_line": 19 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/BN_zero.pod", - "type": "file", - "name": "BN_zero.pod", - "base_name": "BN_zero", - "extension": ".pod", - "date": "2017-05-25", - "size": 1626, - "sha1": "64a3dd81e50334704998d20d811dcf07d0eb68d9", - "md5": "7a8388cca3422ce5f30410631cdaa498", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 60, - "end_line": 60 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2080, - "sha1": "b4ee27f6de885d1f729c536d74deba15dc363216", - "md5": "98420a18faf50995842a6da63661d6ef", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 70, - "end_line": 70 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2142, - "sha1": "7dc75e42debbf13a3467ce1a71bad08330c38f72", - "md5": "694ce684cfc3a7759e063ee929d4e787", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 64, - "end_line": 64 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2543, - "sha1": "42f29c982cddd3c50ed13d2d3ec12dee666c23fe", - "md5": "52823da5f260cf9d7846598a16efd966", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 59, - "end_line": 59 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 4252, - "sha1": "3a6510438214c3f26e3320aef8e2fdac0b68c788", - "md5": "4a1722467e5fe5af9db0dc22075d3596", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 99, - "end_line": 99 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/CMS_compress.pod", - "type": "file", - "name": "CMS_compress.pod", - "base_name": "CMS_compress", - "extension": ".pod", - "date": "2017-05-25", - "size": 2644, - "sha1": "7acf513f32709d1d8d5ea6fcbb81cfde2807dd3d", - "md5": "61f27f8ee05ce564b355fc87da5f140a", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 74, - "end_line": 74 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/CMS_decrypt.pod", - "type": "file", - "name": "CMS_decrypt.pod", - "base_name": "CMS_decrypt", - "extension": ".pod", - "date": "2017-05-25", - "size": 3097, - "sha1": "f1a98eae25ab581e4c85fad71160c0fae6201c46", - "md5": "1711433bbd1a1d2eb7cce32073d2e441", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 74, - "end_line": 74 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/CMS_encrypt.pod", - "type": "file", - "name": "CMS_encrypt.pod", - "base_name": "CMS_encrypt", - "extension": ".pod", - "date": "2017-05-25", - "size": 3863, - "sha1": "9381b85927a2b00f82406cade51a87fa1668383b", - "md5": "e33b8c9184a366c33181710e71d5a55a", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 97, - "end_line": 97 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/CMS_final.pod", - "type": "file", - "name": "CMS_final.pod", - "base_name": "CMS_final", - "extension": ".pod", - "date": "2017-05-25", - "size": 1304, - "sha1": "be8e85acc97678d0e49b896f3619b0d28b88371d", - "md5": "4f02fa1d25771497b9d772cf146009ed", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 39, - "end_line": 39 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 6057, - "sha1": "e8f21df58a116d25f5dfed49ea4c3d87fb4fc4a3", - "md5": "db3b2e9f5cd68b52990e28a63f63f5d9", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 123, - "end_line": 123 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 3166, - "sha1": "3534836b341a00044298ed8e9aa52bb887813c62", - "md5": "ababacd4ec3e61cd4d9efcab650ca2fa", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 82, - "end_line": 82 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2718, - "sha1": "7c527a3fe497d75862f03b4092395c9c3cd50692", - "md5": "3c5ca83349f55a0a627d3d8e7f5041db", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 74, - "end_line": 74 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2862, - "sha1": "aff33178d77c77c29dd2a354b602eaae1f0d0c6d", - "md5": "2253f5f334c517cb3708ff1350d2c018", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 65, - "end_line": 65 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/CMS_sign.pod", - "type": "file", - "name": "CMS_sign.pod", - "base_name": "CMS_sign", - "extension": ".pod", - "date": "2017-05-25", - "size": 5252, - "sha1": "7aa4c95012b85eb3f3b2c7698e1f8ceb378d7b66", - "md5": "7897370398e1ad40b52449a94a1ca12d", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 121, - "end_line": 121 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1517, - "sha1": "b5736234a5f1c91c08793beea8c6bffc2c95a5d5", - "md5": "b0ab6420a7697e8d59fdd9344208ab33", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 43, - "end_line": 43 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/CMS_uncompress.pod", - "type": "file", - "name": "CMS_uncompress.pod", - "base_name": "CMS_uncompress", - "extension": ".pod", - "date": "2017-05-25", - "size": 1701, - "sha1": "8582c19043b3f5811a361d4c10a1fb8ebdce1add", - "md5": "c6e9f0c3dcd89c00cb13d837fe328343", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 52, - "end_line": 52 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/CMS_verify.pod", - "type": "file", - "name": "CMS_verify.pod", - "base_name": "CMS_verify", - "extension": ".pod", - "date": "2017-05-25", - "size": 5024, - "sha1": "4f86d105c978dedfd7d23a8e00e3e2da2aaf3784", - "md5": "02b02afb1c41cb38c65cd844a43be28d", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 124, - "end_line": 124 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1503, - "sha1": "a30dac22d7323a79b92ce7d33d38d6801bbb1fff", - "md5": "7896ec7b5152bf19a3078f17f1e4c7ec", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 45, - "end_line": 45 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1657, - "sha1": "6a2366707d938b272889c156b072685f169ef2ea", - "md5": "51ac0dec4f3475f4d86c10d2810a36e8", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 55, - "end_line": 55 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 4786, - "sha1": "b36909ac57bbc8121283e4598dc73ba27439e703", - "md5": "4736dee0523e10112d33b4523ed29670", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 128, - "end_line": 128 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/crypto.pod", - "type": "file", - "name": "crypto.pod", - "base_name": "crypto", - "extension": ".pod", - "date": "2017-05-25", - "size": 1875, - "sha1": "572749e7ebc9d504c6378c9ed1e58b701506b3db", - "md5": "a0a459022d79edf48d779685e25cf30c", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 55, - "end_line": 55 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 6754, - "sha1": "b8418e205d1a174f5d4c032c6bdf875fff589910", - "md5": "f88a659d7d5e5f246a58dad2da7d256e", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 158, - "end_line": 158 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 4796, - "sha1": "6432a8472e2a796a2426acdb95e2f123cbe2b836", - "md5": "b4a83d5494159fc81b60a1b79c69aea0", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 163, - "end_line": 163 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/ct.pod", - "type": "file", - "name": "ct.pod", - "base_name": "ct", - "extension": ".pod", - "date": "2017-05-25", - "size": 1399, - "sha1": "8f69184c8e20710f25378b03e9cf1e4abd0b2e64", - "md5": "725c4f30597a6a7ac05bb556953d7df5", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 46, - "end_line": 46 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/CTLOG_new.pod", - "type": "file", - "name": "CTLOG_new.pod", - "base_name": "CTLOG_new", - "extension": ".pod", - "date": "2017-05-25", - "size": 2446, - "sha1": "5641564739a6a0a197cfbba508121d39b42ada3e", - "md5": "3551db17e684c9b5e49af598f9f31798", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 65, - "end_line": 65 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1344, - "sha1": "678b9b1a5a60e050099c1ae199eaaaf31cf2a3a3", - "md5": "870368847f0753ed425af9fb3e75f1b7", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 42, - "end_line": 42 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2438, - "sha1": "2075ec165d24524adb206bb12269783c8d8a9340", - "md5": "f3a016f8b35271ddf9e302313e40a009", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 72, - "end_line": 72 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 3881, - "sha1": "6f9c1396ce15a5ac8165da10d0016b6afae8e0a0", - "md5": "7058a1fa1293575ed89b7a1d656784d0", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 104, - "end_line": 104 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/d2i_DHparams.pod", - "type": "file", - "name": "d2i_DHparams.pod", - "base_name": "d2i_DHparams", - "extension": ".pod", - "date": "2017-05-25", - "size": 843, - "sha1": "ce7e4bb1c457f855749f2d46e50b493bd884b230", - "md5": "7c9df4d153cfd4c1df0975681ea5ba63", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 28, - "end_line": 28 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1004, - "sha1": "c0b5b00118152459fba0d16565a57607d20db831", - "md5": "172f2f1a395e9034cdf2a082fa2040a4", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 31, - "end_line": 31 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2229, - "sha1": "1f6adfa35e859cbb8fb1956c262b50bfe4b690aa", - "md5": "2d47262babc7155111773f0ff4cc3d5e", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 54, - "end_line": 54 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/d2i_PrivateKey.pod", - "type": "file", - "name": "d2i_PrivateKey.pod", - "base_name": "d2i_PrivateKey", - "extension": ".pod", - "date": "2017-05-25", - "size": 2453, - "sha1": "72de8492c9ed10790e7edbe19e22e48bf3932f3d", - "md5": "be9c0a396ec495de4236f20db2ce3af4", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 64, - "end_line": 64 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/d2i_X509.pod", - "type": "file", - "name": "d2i_X509.pod", - "base_name": "d2i_X509", - "extension": ".pod", - "date": "2017-05-25", - "size": 14356, - "sha1": "8d700bfd2adcff97643e7981b4653274c2599eff", - "md5": "e1a1962bcf44620ff5aff3948dcf3f9f", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 591, - "end_line": 591 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 9951, - "sha1": "96f168b80d61bad6c00a1a9b7e4c4deb57e56ea9", - "md5": "ec82c5504f0b279801dea301a0939ce2", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 234, - "end_line": 234 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/des_modes.pod", - "type": "file", - "name": "des_modes.pod", - "base_name": "des_modes", - "extension": ".pod", - "date": "2017-05-25", - "size": 6208, - "sha1": "8d3aaeafcfa64e7797eebfaa0f0c72aa5c042bed", - "md5": "6a94fe6dd422ee8486e02a348161164f", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 253, - "end_line": 253 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 14021, - "sha1": "fb85ecdc3daeadc3c934f869d4d734121b22b264", - "md5": "23015fee94b0b72fa9446584bf254e36", - "files_count": null, - "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, - "scan_errors": [], - "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": 303, - "end_line": 303 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1587, - "sha1": "5377ac3bca3a1fe1463d1179a552fb7a116f2aec", - "md5": "59975500bd8fe2bc70a0e4266fe37dc4", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 47, - "end_line": 47 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 3724, - "sha1": "a4fa399175f18f0717654b93d55a018b789d09e9", - "md5": "7552150b6313a0bb15fac669fe13a46d", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 127, - "end_line": 127 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 4821, - "sha1": "ea1b0241a4c55b80878e1a52a308c02c043a3c61", - "md5": "020df504514a29ea78efa092975daa43", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 105, - "end_line": 105 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2265, - "sha1": "ca159e8853bba15987d74c3c20828cf5a8392d6b", - "md5": "12fd1850ffe1a8f4d7f30e7498e35152", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 67, - "end_line": 67 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 7299, - "sha1": "23b068fc4762820c07004e9b0ce9be493fd668ec", - "md5": "174e7ceb1c3e776fd41700b589388069", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 149, - "end_line": 149 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/DH_new.pod", - "type": "file", - "name": "DH_new.pod", - "base_name": "DH_new", - "extension": ".pod", - "date": "2017-05-25", - "size": 1060, - "sha1": "f3f4118ba0a09d1856709b5d10468549649ccf47", - "md5": "92bfbf74a04c71e3c619409212310305", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 39, - "end_line": 39 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 3072, - "sha1": "6baadc453c7eef24f0f5440562eccfdc44d79761", - "md5": "543f32f99c7a9cfb66ea971e2003dbd8", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 78, - "end_line": 78 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/DH_size.pod", - "type": "file", - "name": "DH_size.pod", - "base_name": "DH_size", - "extension": ".pod", - "date": "2017-05-25", - "size": 949, - "sha1": "f5a273d5704845834c29077f4ba504c07f29a99b", - "md5": "cec57d388d89dc3e5e20ae5251038127", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 40, - "end_line": 40 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1413, - "sha1": "fb7f5e82a2c1c5d9dfc618d88ce11d31236dd3b7", - "md5": "68914e73b2a20fdee8873cdaf5c91e68", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 45, - "end_line": 45 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 940, - "sha1": "7e7dde65579ebfc2906313767e8b7aefd8fdaf2b", - "md5": "16e06a5639f8aceb1ddf7027a2572d34", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 34, - "end_line": 34 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 927, - "sha1": "d2d7acced284760830a82d3e098782c95037c5bd", - "md5": "240b1cb08fbc74e7e4d5e2ca75dbe2c1", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 32, - "end_line": 32 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 3805, - "sha1": "7a363457b7bb10b19d095897016a541c31f06554", - "md5": "3d9992187349c79245399b6cb9009776", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 115, - "end_line": 115 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 4353, - "sha1": "da38f63dd82e73f300dc862f079f5854aeaf6f52", - "md5": "8cdc42ee53b82be2f30ff8ddfbc52964", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 95, - "end_line": 95 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 9313, - "sha1": "21f2cb8fdb0647245002fd142c74b95aa637edcb", - "md5": "54a46ba0487b7d5fe1db78ff540bcf00", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 186, - "end_line": 186 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/DSA_new.pod", - "type": "file", - "name": "DSA_new.pod", - "base_name": "DSA_new", - "extension": ".pod", - "date": "2017-05-25", - "size": 1129, - "sha1": "004c6b94660ea19f219ade3b550f034b5ea524c7", - "md5": "a4b1f870850a1d195ae1bc84c4955225", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 41, - "end_line": 41 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 3097, - "sha1": "ce1cf045bedcac38f19b07eaa5e04722823226eb", - "md5": "cdd2947b289d38b88173ecb076644048", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 78, - "end_line": 78 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/DSA_sign.pod", - "type": "file", - "name": "DSA_sign.pod", - "base_name": "DSA_sign", - "extension": ".pod", - "date": "2017-05-25", - "size": 2255, - "sha1": "38e79c7983085e9cfd2ee5dc8f96bf9b9f1df039", - "md5": "247bdca019696fec41ffec563ca81c2c", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 63, - "end_line": 63 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1706, - "sha1": "82927f13714bffe4f34cf21c8016c8dce2ccc15d", - "md5": "b877016678a4acfe52db81a081df504b", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 51, - "end_line": 51 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/DSA_size.pod", - "type": "file", - "name": "DSA_size.pod", - "base_name": "DSA_size", - "extension": ".pod", - "date": "2017-05-25", - "size": 1014, - "sha1": "3bdc2869d157e30f08d308a8812b37783a3bf932", - "md5": "b2117e269e0e78913241863ce085eebd", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 37, - "end_line": 37 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 7683, - "sha1": "155d0a2f3a3718438d4dee9fe5c5e1ea8d4209cf", - "md5": "c7b11a7c151b7220a086dc4a806ffb4b", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 200, - "end_line": 200 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/ECPKParameters_print.pod", - "type": "file", - "name": "ECPKParameters_print.pod", - "base_name": "ECPKParameters_print", - "extension": ".pod", - "date": "2017-05-25", - "size": 1281, - "sha1": "932f47a25bbbff1beadda4ce6ffa46422d81e2bb", - "md5": "60e5ccec4d3c8ba3e136fd4db6a95b49", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 37, - "end_line": 37 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 3057, - "sha1": "28866f37c28262fd637edff31bb4fc47175123b3", - "md5": "db6d6ceca9746c9539586215550b780a", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 62, - "end_line": 62 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 11105, - "sha1": "5d11b1838b6e362b90ba41111ad7db706e52aa5b", - "md5": "42502f9ed5b5f0e2f6bd4bed3207537f", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 199, - "end_line": 199 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 5943, - "sha1": "ca466e14912ab8b073f0340ec33285060abbeb78", - "md5": "c8232e7edbb7dddef851e1a7d5970b25", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 113, - "end_line": 113 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2067, - "sha1": "088f038a0a80875cfb80dc07e6abfa7c7bedbaf7", - "md5": "5fab2f3f637e439a3ea4925ad39a3af3", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 52, - "end_line": 52 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 8106, - "sha1": "4c66bbb5cb16ed97b64d7fc52a51ad2a8ec28ac8", - "md5": "57b1f74b051069e324634424f8da9cad", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 176, - "end_line": 176 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 4003, - "sha1": "32ef984a43c8f460df531912d91929e2406b2073", - "md5": "07315a17c84089f267c1f4887fc75052", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 73, - "end_line": 73 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 9750, - "sha1": "d68a041c77f596f6b1e026ef8ed1cfc68ba5c4db", - "md5": "2312e1f78d1b235681cdcd3217c0f6f1", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 189, - "end_line": 189 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/ENGINE_add.pod", - "type": "file", - "name": "ENGINE_add.pod", - "base_name": "ENGINE_add", - "extension": ".pod", - "date": "2017-05-25", - "size": 30300, - "sha1": "a43bfdb73ed379bd9b69e6246213d11283bd9eaf", - "md5": "b04211d7a4b03fc72f66590c59a3b078", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "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": 604, - "end_line": 604 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 652, - "sha1": "cc82b83a4eef6722e7db21f34543554117519bc8", - "md5": "f17f58713831123e04ea41f4b78a454b", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 27, - "end_line": 27 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2345, - "sha1": "243aa33ea4cec5041aa2405a9fbd1f0e3f74293c", - "md5": "eb7ba75145ee31008d8b5feb2637e85b", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 67, - "end_line": 67 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2688, - "sha1": "cdfa4bed5bb6e0cca3ac46c01895d87b1e42365f", - "md5": "9c422c823d5e70cd0020d5d156049070", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 72, - "end_line": 72 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1811, - "sha1": "014bc25114fca70e10804de466ab7bdcc65dc758", - "md5": "3231d3e25bfd841844f684207502b631", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 59, - "end_line": 59 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1607, - "sha1": "98f83b4579cb582813dd76e288280a97430e93dd", - "md5": "9911b2bdc34e467cdfbbd3d22f7ebb85", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 55, - "end_line": 55 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1398, - "sha1": "16eeb7809367b4d002dfc539e939856248e78465", - "md5": "c1d3199f16c05c7a012b090f2a88b136", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 51, - "end_line": 51 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1726, - "sha1": "fb602f695d0ccecec72466745a7531aa924d5982", - "md5": "fc6e31c3a087d67a0948a0906319eb38", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 53, - "end_line": 53 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2503, - "sha1": "b63c16d844a8f3a8e142671121caf58df2eb124e", - "md5": "386d52d2361f030c90cf390b9b9a3040", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 69, - "end_line": 69 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1277, - "sha1": "c74f32e6b6e3885b171cf3fcb1b94aa79a9897de", - "md5": "533daa259ffea99d6462a81c4edf1dfc", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 46, - "end_line": 46 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 995, - "sha1": "a5e6a0a7eb48473b85bfb26b8b825f8cd093d4ef", - "md5": "8e74130db564de182840ff85b0bb46af", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 32, - "end_line": 32 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/evp.pod", - "type": "file", - "name": "evp.pod", - "base_name": "evp", - "extension": ".pod", - "date": "2017-05-25", - "size": 4221, - "sha1": "1c9c430a397ad37cc499c0a8e5ef0d452a6198cd", - "md5": "5935c7523efc27cea1efe75c532290ec", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 109, - "end_line": 109 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/EVP_BytesToKey.pod", - "type": "file", - "name": "EVP_BytesToKey.pod", - "base_name": "EVP_BytesToKey", - "extension": ".pod", - "date": "2017-05-25", - "size": 2611, - "sha1": "db6ae058de424d6e4ced1af35f3c7ee5f4792cbe", - "md5": "b004fa115c37f1d63b79daadfc38f07a", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 71, - "end_line": 71 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1771, - "sha1": "29cc2f472a71bee07d92bf26f23968ba00a99603", - "md5": "b0460fb26947879a3061e1111abe8d09", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 44, - "end_line": 44 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 9249, - "sha1": "b8e73bfa478ebd47802093ed61f1341f34d9dcd1", - "md5": "be8916ba4564ec9a42fd1367ee364bbe", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 231, - "end_line": 231 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/EVP_DigestInit.pod", - "type": "file", - "name": "EVP_DigestInit.pod", - "base_name": "EVP_DigestInit", - "extension": ".pod", - "date": "2017-05-25", - "size": 9333, - "sha1": "3bb0fad7086ead4414eff5c96113c776d98dfa0d", - "md5": "ef88215496dbeedbaba4a921c977a72b", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 252, - "end_line": 252 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/EVP_DigestSignInit.pod", - "type": "file", - "name": "EVP_DigestSignInit.pod", - "base_name": "EVP_DigestSignInit", - "extension": ".pod", - "date": "2017-05-25", - "size": 3745, - "sha1": "0f78aaa1790094ad0de639ac91fa43d571efa77e", - "md5": "7a54577295f16e007b17ffa70e9d5df4", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 89, - "end_line": 89 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/EVP_DigestVerifyInit.pod", - "type": "file", - "name": "EVP_DigestVerifyInit.pod", - "base_name": "EVP_DigestVerifyInit", - "extension": ".pod", - "date": "2017-05-25", - "size": 3405, - "sha1": "1c6d3e5febb54e1822e3a7bd5650177e27302975", - "md5": "3ceece8cbe6359edb0d5e2e432224c5f", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 84, - "end_line": 84 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/EVP_EncodeInit.pod", - "type": "file", - "name": "EVP_EncodeInit.pod", - "base_name": "EVP_EncodeInit", - "extension": ".pod", - "date": "2017-05-25", - "size": 8205, - "sha1": "f9d20bba8c5643a1bfd831fd08f73a799d0e8c8b", - "md5": "84444b484a5d36f93cf2e87071f1acd1", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 155, - "end_line": 155 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/EVP_EncryptInit.pod", - "type": "file", - "name": "EVP_EncryptInit.pod", - "base_name": "EVP_EncryptInit", - "extension": ".pod", - "date": "2017-05-25", - "size": 28487, - "sha1": "6a4328836986a1bea7758bb72ba5f0acdbf1d22f", - "md5": "0c8b4cb485b31691cfdd25c2d07a1ba0", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 655, - "end_line": 655 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 6936, - "sha1": "ddcc8d60fcf2f88127ba525c88a723b367522a5b", - "md5": "3651944cb6e47cc0dd97541ef8a5410f", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 163, - "end_line": 163 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/EVP_OpenInit.pod", - "type": "file", - "name": "EVP_OpenInit.pod", - "base_name": "EVP_OpenInit", - "extension": ".pod", - "date": "2017-05-25", - "size": 2257, - "sha1": "06337cc81a0cd403449d50988d29a2b3cdf8ca9a", - "md5": "f76edd1bcd3354df56f4ac89d2f7469b", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 63, - "end_line": 63 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2440, - "sha1": "9ad20acf6019e4b3bbf45a6783cae49fe72a3f8b", - "md5": "0782f2b21752b6101b62f0a02f43d61a", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 66, - "end_line": 66 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 6814, - "sha1": "bf711c2046990fdf9609447ab43d69d8e20d8b47", - "md5": "bf3d5887106699f784af054147ddb70e", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 147, - "end_line": 147 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1908, - "sha1": "ae09b93690f3d3a4f923b071cf138a56ba7aa943", - "md5": "7f9e0818a46c7ae99b497f45cb48c026", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 55, - "end_line": 55 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 4174, - "sha1": "88c2bb0ed450443abf0f7d16c45f08c48889c888", - "md5": "add035aa323921471952071f2afd1a33", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 121, - "end_line": 121 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 3597, - "sha1": "aee9e3d60b06969dfe20cb69d6837786941f6a84", - "md5": "4d88f199007d0b99aac887eba3460f9d", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 101, - "end_line": 101 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2941, - "sha1": "f9a65c104009d7e04d6f6b1d693dc07a7c41a744", - "md5": "a0ef380dc530dbeb71389cade980fa77", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 95, - "end_line": 95 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2877, - "sha1": "aaf93da2b7d72a25a0d46b3270f821fbce5e7e47", - "md5": "4fdcbe4fcb26b533c320b410cf36ca05", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 95, - "end_line": 95 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 3199, - "sha1": "495932ef3b6f5c9a204778f3fc78c8890657c08e", - "md5": "8cb59147196fc5bb01d3986d2ca8187a", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 101, - "end_line": 101 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1343, - "sha1": "5ee8db867eb0812cd2a82f00b155724952f8f626", - "md5": "91c5139d12a13eba32cf621dd8bfd2e8", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 43, - "end_line": 43 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 5680, - "sha1": "332d0f4d91816688ff4e01253441f1f3eaeb2478", - "md5": "34bb01a86a33936cde0eb576c67d244b", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 168, - "end_line": 168 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1660, - "sha1": "1fb4db3ea675ab2f33e20bdb2d1adf32b859ebff", - "md5": "9a3e04a9cde02f16d5386761079225bf", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 54, - "end_line": 54 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2033, - "sha1": "d836a6eca6e738e7f9ac73a101151e229affa073", - "md5": "eadfe9a91ceb5d57f3c3ff4439e92ace", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 55, - "end_line": 55 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 4577, - "sha1": "be205209d8dae2db95afcb207ff0abf6459377c9", - "md5": "221fc79da19612596965963d91286211", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 113, - "end_line": 113 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 3437, - "sha1": "9d52582ab273c73f786ef590bc9a4d979e6c1223", - "md5": "0dd426f0bd4ec7c7475c1a5fb89dad9b", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 108, - "end_line": 108 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 3067, - "sha1": "0102906ad9622101f36fb56cf5de9bce4670363f", - "md5": "32dac640e3e9f5c5c4c03cfd33ea0c2a", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 93, - "end_line": 93 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 3538, - "sha1": "297dab14db199ab33dbc4055bb11ba9cb70859b6", - "md5": "f0759c350d790a121e4fc88257160134", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 105, - "end_line": 105 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/EVP_SealInit.pod", - "type": "file", - "name": "EVP_SealInit.pod", - "base_name": "EVP_SealInit", - "extension": ".pod", - "date": "2017-05-25", - "size": 3274, - "sha1": "6996bf59164326b52703dcfe6f5e26666dadff76", - "md5": "dd56bd4f371577d96fbc555bdb8ca4d0", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 83, - "end_line": 83 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/EVP_SignInit.pod", - "type": "file", - "name": "EVP_SignInit.pod", - "base_name": "EVP_SignInit", - "extension": ".pod", - "date": "2017-05-25", - "size": 3867, - "sha1": "cc8159fe4e1dda153f9555ad176bdf0ed58516d4", - "md5": "8b8f6cfb0bbbb75950d6439eb2ca17f3", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 103, - "end_line": 103 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/EVP_VerifyInit.pod", - "type": "file", - "name": "EVP_VerifyInit.pod", - "base_name": "EVP_VerifyInit", - "extension": ".pod", - "date": "2017-05-25", - "size": 3355, - "sha1": "3bc3ac416cc2891b226f84b1daf8bad323885d52", - "md5": "53c2aa45928e32d0059c0ee002a20ddd", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 92, - "end_line": 92 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/HMAC.pod", - "type": "file", - "name": "HMAC.pod", - "base_name": "HMAC", - "extension": ".pod", - "date": "2017-05-25", - "size": 4940, - "sha1": "4d8797153be8bda6c88476f2753dd2c45734539b", - "md5": "21fcf53ca90290e1dff9c52f60bfc36a", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 144, - "end_line": 144 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1204, - "sha1": "dd1772e81b813f4923087c5d2f6e02db785e0459", - "md5": "4b99300771954fcfa6ddc74c8d351e7c", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 46, - "end_line": 46 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1201, - "sha1": "7cb8bb600ba8789dd508c07510a2a4094441f6c9", - "md5": "531ba0e15bc4399370e6da01befedf67", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 46, - "end_line": 46 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2825, - "sha1": "deace8a3e86718de9acb475390c8fe5eadb6d12e", - "md5": "439ab401a7e1bd1a7de4111fe0287915", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 72, - "end_line": 72 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/MD5.pod", - "type": "file", - "name": "MD5.pod", - "base_name": "MD5", - "extension": ".pod", - "date": "2017-05-25", - "size": 2916, - "sha1": "f70cc6a3affce700e3241649315a95c632e412d7", - "md5": "0d6568f6f066edf29b49894f9ad60ce6", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 94, - "end_line": 94 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/MDC2_Init.pod", - "type": "file", - "name": "MDC2_Init.pod", - "base_name": "MDC2_Init", - "extension": ".pod", - "date": "2017-05-25", - "size": 1872, - "sha1": "5759cca10de3b691963f279405dec9460c3079b2", - "md5": "ee034a52b18c30f0ea415a7618a46342", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 61, - "end_line": 61 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1333, - "sha1": "33f0dcdafa49c72c87a55b57f4f734daa5ab7bf0", - "md5": "7ab375b52d490462c4466e259f103630", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 41, - "end_line": 41 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/OBJ_nid2obj.pod", - "type": "file", - "name": "OBJ_nid2obj.pod", - "base_name": "OBJ_nid2obj", - "extension": ".pod", - "date": "2017-05-25", - "size": 6933, - "sha1": "b37ffa5c742bab6d7b4845c6830486093e38d236", - "md5": "07c9bfe2ab8a74d4801ba6812901aec5", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 191, - "end_line": 191 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2851, - "sha1": "0a5a917be2b76a11ef3bb8e9269d9fa60001dc88", - "md5": "b6ef374fd625668f361a9120778e359d", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 82, - "end_line": 82 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 3096, - "sha1": "e85be8d59e5b93de8e5fb631530f57fc3c206720", - "md5": "35d1834f31c69e1a6bea913a9ed10d47", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 77, - "end_line": 77 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 3509, - "sha1": "2c627ac04912031d109bcf60d2383e0024443a48", - "md5": "4de20822da05d1337122c6097fad70ca", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 111, - "end_line": 111 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 3253, - "sha1": "bb424589763501a62407af2b274e5028c3b6a19c", - "md5": "baac8f9bbe2241a15617ec8fea044b6e", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 93, - "end_line": 93 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 5615, - "sha1": "523a76866054e26e2e6d2960bcbe9029c28888aa", - "md5": "342740a2dd43ff9df0b74e7e0110b92a", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 132, - "end_line": 132 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 4581, - "sha1": "4dbb8d0dddd578ebd475242b7b93f408027b8104", - "md5": "7898cc0a075a6e7a5d76ea2eb2a575ec", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 115, - "end_line": 115 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2913, - "sha1": "fee4fb8807749f10c9dde9b4948d08ab6b2b7db0", - "md5": "cf04b1090d7430cd04ec58c3d23ff983", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 83, - "end_line": 83 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/OPENSSL_Applink.pod", - "type": "file", - "name": "OPENSSL_Applink.pod", - "base_name": "OPENSSL_Applink", - "extension": ".pod", - "date": "2017-05-25", - "size": 1048, - "sha1": "d5b74bb9eb5a788733f27e353f6968f1bbfdd599", - "md5": "856eb5cfb0ef20ff68f62b941a4d138b", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 24, - "end_line": 24 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/OPENSSL_config.pod", - "type": "file", - "name": "OPENSSL_config.pod", - "base_name": "OPENSSL_config", - "extension": ".pod", - "date": "2017-05-25", - "size": 2447, - "sha1": "9c69317e1d51ab467bb85533f9b4f05d9b5b2f72", - "md5": "101adb7d9d80bf433fb3742f924a0ef1", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 67, - "end_line": 67 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/OPENSSL_ia32cap.pod", - "type": "file", - "name": "OPENSSL_ia32cap.pod", - "base_name": "OPENSSL_ia32cap", - "extension": ".pod", - "date": "2017-05-25", - "size": 5016, - "sha1": "be7f937970cde94cec1f07986819caa5efc0e63c", - "md5": "9d3a9cbb141eb5ff9086ccd8caf26571", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 133, - "end_line": 133 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 10178, - "sha1": "75c1eb40a0e081d73f77a3de74ac0423912aa7d7", - "md5": "db968cdc5588169349eff477a0e32aa3", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 238, - "end_line": 238 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2021, - "sha1": "760ed95c7a64566c4bb79329ea758b4e2f9f0eb1", - "md5": "d06bee9c1e7712c6325d9af49a191ea1", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 46, - "end_line": 46 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 9134, - "sha1": "312b910acf59e4fe7cd15c7e52dde659c69aaeb4", - "md5": "b14d22cfd61bd43ad71dfec35e7b9895", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 232, - "end_line": 232 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2217, - "sha1": "80e3e5175b4d4252864a52d01e6ac35a6b3bee77", - "md5": "9107ed77ff44d1caa300514ae3efeb59", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 57, - "end_line": 57 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1574, - "sha1": "681c58ee3892110a70aa45dfd0e3abaabcf089ca", - "md5": "258829fb9e8ce16179ba07b830dd8a09", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 49, - "end_line": 49 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/OPENSSL_malloc.pod", - "type": "file", - "name": "OPENSSL_malloc.pod", - "base_name": "OPENSSL_malloc", - "extension": ".pod", - "date": "2017-05-25", - "size": 8697, - "sha1": "59242393af3a1d4d9ece18df3d64ac5eb22cc3f4", - "md5": "d67a42110f4e079ff372f7a8d032a262", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 200, - "end_line": 200 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 4538, - "sha1": "31b724d5e3a3838c8ce0ee9136f973247783874d", - "md5": "dddcb3741c1c71d9cdb76fab35dc8bc3", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 116, - "end_line": 116 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2574, - "sha1": "5a7d20d7c8f6992c0d070b9e2830c74b04ae3dd7", - "md5": "d4b25103b496fb52d084c9c438c3be48", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 99, - "end_line": 99 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/PEM_read.pod", - "type": "file", - "name": "PEM_read.pod", - "base_name": "PEM_read", - "extension": ".pod", - "date": "2017-05-25", - "size": 5186, - "sha1": "1cb57937623751a3e8249c76e3f352430fdcad8d", - "md5": "d72aed233001882716368a052bf8ebed", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 120, - "end_line": 120 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 19519, - "sha1": "73754b2d5667539bd92c3356fa2c64403cd7cfed", - "md5": "6ef8ec96388ee4cbf79af03846c46d07", - "files_count": null, - "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, - "scan_errors": [], - "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": 474, - "end_line": 474 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2742, - "sha1": "798f46e44a2c59c51046be4bebc5ca3ef8cd32b7", - "md5": "6411ef397ac43c483bc71d2126c3444e", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 90, - "end_line": 90 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1161, - "sha1": "654ff9be8d60c68016de1d13cfab4d749bd2830e", - "md5": "d80999e6ec822bc966ef7d8c359a2a9d", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 43, - "end_line": 43 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1141, - "sha1": "58e205088e7f93f58b8a3af827b6018834d9b035", - "md5": "ae5e36c86068f63d0cb2d712a3599061", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 42, - "end_line": 42 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/PKCS12_create.pod", - "type": "file", - "name": "PKCS12_create.pod", - "base_name": "PKCS12_create", - "extension": ".pod", - "date": "2017-05-25", - "size": 2873, - "sha1": "aafd2e7f01915da30bad8113dfadfbe40df5f5cf", - "md5": "3eadefb3e410c6ed9d72ffbeadb71eb3", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 69, - "end_line": 69 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/PKCS12_newpass.pod", - "type": "file", - "name": "PKCS12_newpass.pod", - "base_name": "PKCS12_newpass", - "extension": ".pod", - "date": "2017-05-25", - "size": 3229, - "sha1": "7bf8120ef06c51d43bcde0e5722a2c57e23934eb", - "md5": "19581aa5d18375e0d4b47e0a433a6695", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 108, - "end_line": 108 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/PKCS12_parse.pod", - "type": "file", - "name": "PKCS12_parse.pod", - "base_name": "PKCS12_parse", - "extension": ".pod", - "date": "2017-05-25", - "size": 2302, - "sha1": "d815ad7bb95a8070afb012261fd166765abff83c", - "md5": "e3a77f4577888b59ae8da4ae65f15f05", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 64, - "end_line": 64 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2524, - "sha1": "52dbe32e6da091df7ace9d62692df515d834918d", - "md5": "9123d664b0dd6d89e59597998ea19cac", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 66, - "end_line": 66 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/PKCS7_decrypt.pod", - "type": "file", - "name": "PKCS7_decrypt.pod", - "base_name": "PKCS7_decrypt", - "extension": ".pod", - "date": "2017-05-25", - "size": 1749, - "sha1": "5479f41d09f6181d5d42d5d075f488e4668f3d80", - "md5": "77175bc55b89d12460eac2ba6150b2ff", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 50, - "end_line": 50 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/PKCS7_encrypt.pod", - "type": "file", - "name": "PKCS7_encrypt.pod", - "base_name": "PKCS7_encrypt", - "extension": ".pod", - "date": "2017-05-25", - "size": 3040, - "sha1": "52d51ae5e197947e5309ea55664a62aa3ffff09c", - "md5": "5131bb49be92d0c682d60370119d20f9", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 81, - "end_line": 81 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/PKCS7_sign.pod", - "type": "file", - "name": "PKCS7_sign.pod", - "base_name": "PKCS7_sign", - "extension": ".pod", - "date": "2017-05-25", - "size": 4750, - "sha1": "7d4eac7abf8af203955b91fbed1246591b7ca86e", - "md5": "bf4d5647536f03dbc97fa3a48e152560", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 117, - "end_line": 117 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 3473, - "sha1": "5e359e1d4a1e235662b12738e77396dd4163f1de", - "md5": "f647cf126350d8e356da2f77d8de91be", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 89, - "end_line": 89 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/PKCS7_verify.pod", - "type": "file", - "name": "PKCS7_verify.pod", - "base_name": "PKCS7_verify", - "extension": ".pod", - "date": "2017-05-25", - "size": 5088, - "sha1": "787d644e9b44441cfeb9013e7bead31a8a33a7ab", - "md5": "2eb1993be9e839de8114b764bd5e22c3", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 121, - "end_line": 121 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/RAND_add.pod", - "type": "file", - "name": "RAND_add.pod", - "base_name": "RAND_add", - "extension": ".pod", - "date": "2017-05-25", - "size": 2384, - "sha1": "bfcddad8335974a546ee0b627ef86339657c4ffa", - "md5": "81aa077fa101863842caa0a38286ed66", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 72, - "end_line": 72 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/RAND_bytes.pod", - "type": "file", - "name": "RAND_bytes.pod", - "base_name": "RAND_bytes", - "extension": ".pod", - "date": "2017-05-25", - "size": 1780, - "sha1": "40231448b9f54aa6cad3a86e2c3c89973a3eb879", - "md5": "32dd6b4a3d8803531a51a3faf2d3cf08", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 51, - "end_line": 51 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/RAND_cleanup.pod", - "type": "file", - "name": "RAND_cleanup.pod", - "base_name": "RAND_cleanup", - "extension": ".pod", - "date": "2017-05-25", - "size": 913, - "sha1": "f82aea3eb4c0589b1d5bcbf6aa60e9543c819707", - "md5": "e6ed45cbcee9a2bf027dc8d5ac398bfe", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 35, - "end_line": 35 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/RAND_egd.pod", - "type": "file", - "name": "RAND_egd.pod", - "base_name": "RAND_egd", - "extension": ".pod", - "date": "2017-05-25", - "size": 3324, - "sha1": "39246ec151280d01cc144108b97a4e6353f49d57", - "md5": "59caa3dd4aa55eb6321e478462d7c165", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 80, - "end_line": 80 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1986, - "sha1": "51fd5af7e5b77b453572d44052f741548b0dbfa9", - "md5": "a2f15f0187097525daf128f2b0a56772", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 72, - "end_line": 72 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2726, - "sha1": "942ee37c41030d3d855441dbdab277c2b0bbd87c", - "md5": "ce4b3de89d51d6083406760cd8b8347f", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 74, - "end_line": 74 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1921, - "sha1": "05c945cbdb355c4f165871ce10655cfaaddae254", - "md5": "27632144d11290351d62ee8e2a3dfb66", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 59, - "end_line": 59 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/RIPEMD160_Init.pod", - "type": "file", - "name": "RIPEMD160_Init.pod", - "base_name": "RIPEMD160_Init", - "extension": ".pod", - "date": "2017-05-25", - "size": 1927, - "sha1": "4a0e49656c53b811b383a8d4ed420b1d10eab5e0", - "md5": "2f544d8750c133069d0236e15642a881", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 65, - "end_line": 65 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1236, - "sha1": "67e86e9830810c16f28ff39bf0656b85e986ff68", - "md5": "294b93329ccf18c5560e77355861470b", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 37, - "end_line": 37 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2783, - "sha1": "e62c9063384461be54592bf5780552e81fa13115", - "md5": "7c293685c9696176028326c72c8b1309", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 77, - "end_line": 77 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2500, - "sha1": "7ce05a2750dec9321cfd742ff84e6718d1a84da9", - "md5": "be0b1639a0f55d72d61e7ceddebf8c5d", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 81, - "end_line": 81 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 4490, - "sha1": "a288c3a483fc62d743297d0055a995249ee22c33", - "md5": "4ab257a75660ba61d1acd5392cc1b5dd", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 101, - "end_line": 101 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 10893, - "sha1": "a9e8ca5c5882d8a2f4acb637796f1edef513af8b", - "md5": "da7f5c1fdbc770f59b7620d713c3bf5c", - "files_count": null, - "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, - "scan_errors": [], - "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": 228, - "end_line": 228 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/RSA_new.pod", - "type": "file", - "name": "RSA_new.pod", - "base_name": "RSA_new", - "extension": ".pod", - "date": "2017-05-25", - "size": 1107, - "sha1": "85e1fd0ad7a48e28971af472b27537d7ed29338e", - "md5": "c49e4ca99e770451779be8c3b9fe5d71", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 40, - "end_line": 40 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 3614, - "sha1": "657d45ff9dd623c9dd10600d7974f739017f9f47", - "md5": "df0abb75e1ef761a2e921ca18a7e92eb", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 115, - "end_line": 115 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/RSA_print.pod", - "type": "file", - "name": "RSA_print.pod", - "base_name": "RSA_print", - "extension": ".pod", - "date": "2017-05-25", - "size": 1277, - "sha1": "b63f3fb7aa7dc8ae22049c9f05f79eb0848ca26b", - "md5": "20a700668f1f2b8e375d53d982d69c0b", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 45, - "end_line": 45 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2144, - "sha1": "1d794ea07d4b99149747b40992b6ddbc78b949ed", - "md5": "4415aeadd35743b640fd0768e435b777", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 67, - "end_line": 67 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2527, - "sha1": "9733fb3e0429957476cd6ccba7e004f9e3feaced", - "md5": "1a0b2038c6e56a475db6958426ffed5f", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 81, - "end_line": 81 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 6859, - "sha1": "ef88746b00bce4a6f232425fcb33a359da36d911", - "md5": "fc46e3d7954e9a25ddc019a350070b62", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 173, - "end_line": 173 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/RSA_sign.pod", - "type": "file", - "name": "RSA_sign.pod", - "base_name": "RSA_sign", - "extension": ".pod", - "date": "2017-05-25", - "size": 1895, - "sha1": "085bbeb680414b3f8d1affcf1631df7955933c26", - "md5": "29a1a772f3500ec6ea86394380fd0251", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 58, - "end_line": 58 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1767, - "sha1": "9aeb3452ef46c511e5e60a0e6a4a8682bd05f7bd", - "md5": "dafa3be417909a911883da17f5ba431e", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 56, - "end_line": 56 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/RSA_size.pod", - "type": "file", - "name": "RSA_size.pod", - "base_name": "RSA_size", - "extension": ".pod", - "date": "2017-05-25", - "size": 888, - "sha1": "fe04875c2417c4f7d2966af09565ddbf13952d8f", - "md5": "719fd9dd67ae9566f7ca385bbcab0f93", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 39, - "end_line": 39 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/SCT_new.pod", - "type": "file", - "name": "SCT_new.pod", - "base_name": "SCT_new", - "extension": ".pod", - "date": "2017-05-25", - "size": 6408, - "sha1": "346cb4ab1a3d1fe54d1b7d99208a8368bbc9b4b8", - "md5": "d2faae7d91d55f5fd2bdd14016b8fc8b", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 187, - "end_line": 187 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/SCT_print.pod", - "type": "file", - "name": "SCT_print.pod", - "base_name": "SCT_print", - "extension": ".pod", - "date": "2017-05-25", - "size": 1702, - "sha1": "6b7363b1513eeb0a76766bd89945b4f4860f4410", - "md5": "f5ffc28780d01464b38185080d32962f", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 45, - "end_line": 45 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/SCT_validate.pod", - "type": "file", - "name": "SCT_validate.pod", - "base_name": "SCT_validate", - "extension": ".pod", - "date": "2017-05-25", - "size": 3136, - "sha1": "8f70c946a39aa85c26eeadad04a7c168436eb558", - "md5": "4cb5ce8ee9dac7d0fd1e405ba06e9d8d", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 91, - "end_line": 91 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/SHA256_Init.pod", - "type": "file", - "name": "SHA256_Init.pod", - "base_name": "SHA256_Init", - "extension": ".pod", - "date": "2017-05-25", - "size": 3793, - "sha1": "096fb2cbd3ff6487eb270ca70d289487c0e7cc1c", - "md5": "5b3628c7fa525f134ef4ea8f6d9d577d", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 101, - "end_line": 101 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2094, - "sha1": "cda1d1a3bdbf252c831992b5acb1623b67722c2a", - "md5": "0ff0c44cabf4585382bd164a9eab3220", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 68, - "end_line": 68 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2085, - "sha1": "f909bd7b54010f4f0b3e6a9b4399132a8385e6e5", - "md5": "db8df7e276a69c1c662dbb3a0812f401", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 71, - "end_line": 71 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2144, - "sha1": "7c58010d6b8cf156f51bfdd5a52cc9728e8dbd32", - "md5": "eb2f7cdd7c61e14c4e18c34cf152d9e5", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 62, - "end_line": 62 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2170, - "sha1": "ad34e94993451f5111fb9dfe12e310186e34387b", - "md5": "1e33be3baf4284401667fa2c7089212a", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 63, - "end_line": 63 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 7071, - "sha1": "ca827f9f0b9fc3535bc14dcfb824cc6a92dd7129", - "md5": "1de0832adb4582079337e62bd5e13a7b", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 195, - "end_line": 195 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/UI_new.pod", - "type": "file", - "name": "UI_new.pod", - "base_name": "UI_new", - "extension": ".pod", - "date": "2017-05-25", - "size": 8944, - "sha1": "3c8f40501d8634964f3f36f7b3b378daf9c6894b", - "md5": "e78df6860285f5bf14a5abf0118e5954", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 196, - "end_line": 196 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/UI_STRING.pod", - "type": "file", - "name": "UI_STRING.pod", - "base_name": "UI_STRING", - "extension": ".pod", - "date": "2017-05-25", - "size": 5002, - "sha1": "eefeb942709850113c57f6832d528a858afd2356", - "md5": "5a79ecaee20314d720aeaa21bf0b3095", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 127, - "end_line": 127 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/x509.pod", - "type": "file", - "name": "x509.pod", - "base_name": "x509", - "extension": ".pod", - "date": "2017-05-25", - "size": 2234, - "sha1": "665f1b1a68e6a94e10c67bdfc4c0ab8595b8cbc6", - "md5": "148700432a059a3898c58ff675ed6b19", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 66, - "end_line": 66 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 9321, - "sha1": "93b82dfbc31f08a64fc56f8a6a34af3501b5531f", - "md5": "9e79784b7ac85feb81818f53aececdeb", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 234, - "end_line": 234 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 6342, - "sha1": "605d4d76625e63687a1a294135a17c44b7818a66", - "md5": "04476b158627e0acf71392799ab22d3a", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 133, - "end_line": 133 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1767, - "sha1": "21f9f51805e780612e3ef7405eebe4b2a7c1e8f8", - "md5": "0da8bd2e300abaa2e7bbe42526bb8a23", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 41, - "end_line": 41 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1232, - "sha1": "b132c9ea55d5d80c8b2c8035d3926b1def3b7532", - "md5": "3ebcaf95664dad3170c13fb1a2243fed", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 38, - "end_line": 38 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 6257, - "sha1": "1647208210134c5ec1f8c76f94698dd55a8a02c0", - "md5": "ec1b8fa751d8e9c913b8fb3b124c93c3", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 150, - "end_line": 150 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1209, - "sha1": "12c713242a87ce09fba0844a11b923ac74fde6dd", - "md5": "6d7565166ea2eb40fb33762949e77758", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 38, - "end_line": 38 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 3797, - "sha1": "8260e613fef3b7dc9ea2fe8e6edb1d4314d361c7", - "md5": "918273ac762d7c20982f88ee6bb069cb", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 108, - "end_line": 108 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/X509_digest.pod", - "type": "file", - "name": "X509_digest.pod", - "base_name": "X509_digest", - "extension": ".pod", - "date": "2017-05-25", - "size": 2045, - "sha1": "647f4858d889554f3509d0a4e258cac5a7f13080", - "md5": "32652c69d34f7ee863672c3b2483d565", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 58, - "end_line": 58 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/X509_dup.pod", - "type": "file", - "name": "X509_dup.pod", - "base_name": "X509_dup", - "extension": ".pod", - "date": "2017-05-25", - "size": 6620, - "sha1": "f8235b77c5f816843d96647c0689d956a48110ac", - "md5": "221b316ea74509bde241608c1ce3e80a", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 296, - "end_line": 296 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 3720, - "sha1": "ebe2ff80907e743780fd6fea12209eaaaf67d8c0", - "md5": "84a7df66c31aef8132c1aeae4afba467", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 89, - "end_line": 89 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 3029, - "sha1": "cc558cfff29c0cbc8a4e2aef68397a03df8b8ac8", - "md5": "2c8465e2280547c23a08dab6acece0c2", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 90, - "end_line": 90 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1385, - "sha1": "989667962574f0dfd53d8d80576e9570c2a6e02c", - "md5": "c794f400e585daba47900616bd5eb574", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 50, - "end_line": 50 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 5859, - "sha1": "93917f887056f78e73eee42766aa8ddf5cd56373", - "md5": "0601666247743967d436c10c61b45c7a", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 168, - "end_line": 168 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 3421, - "sha1": "60e1efaf226a65651badbb3ec4d376de12973b5b", - "md5": "0927f6bfc2b59e28daf3264344854821", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 96, - "end_line": 96 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2815, - "sha1": "390964ba7c3850937a4b63a9ef5ba36a792980e2", - "md5": "d4fa908566429e8a8fa3c72e5053b614", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 80, - "end_line": 80 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1992, - "sha1": "b5fe6021ec0ccabf771670afc83e7809fc0996ee", - "md5": "a59b61722e0c212669316a328fcd87ed", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 64, - "end_line": 64 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2721, - "sha1": "33ece99ab32156334f174ef3f4322e99209f1609", - "md5": "8c12896c01d95fa1e14fcaf671367cf6", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 79, - "end_line": 79 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2494, - "sha1": "58474e7fb35ebb3c074862dfeec2a711e4d8d2e6", - "md5": "a139abcf6f1504dc15de83185a2ebd82", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 76, - "end_line": 76 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 4730, - "sha1": "d6246ad669955021c71a2dfdcc022d395d94a8a6", - "md5": "d776b827c66197fb794f2ce460929a6f", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 123, - "end_line": 123 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 4458, - "sha1": "52d3432beff62da5e25a2a2b89c25b9d5d3ad795", - "md5": "1b366ecaa87e12b6e6182d532652d5b5", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 116, - "end_line": 116 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 3020, - "sha1": "3e120a25d07120ded67100c482e85771f7bf1718", - "md5": "302a9a69454716f38038ed432e47ff5b", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 70, - "end_line": 70 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 990, - "sha1": "3f7265b11bb8dbe23257f5149b899528a255c767", - "md5": "64cf29e01403b952a567500dd0cc2c96", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 33, - "end_line": 33 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 4345, - "sha1": "30ed87377eb07ce58f42802447ff4fa6826ed096", - "md5": "b4415be955d082139cbea3a02cad4c5e", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 116, - "end_line": 116 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 4731, - "sha1": "f6d4086c3488fcb167508ce3ba1f1d5a0cee587d", - "md5": "25ea6f951f1e8df56ded504f9768796c", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 105, - "end_line": 105 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/X509_new.pod", - "type": "file", - "name": "X509_new.pod", - "base_name": "X509_new", - "extension": ".pod", - "date": "2017-05-25", - "size": 2427, - "sha1": "4f8663a663dfd16625566ecc3610d62001a6a4c3", - "md5": "5c18c8c311a079ccd5c21bcdb3fa12b1", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 76, - "end_line": 76 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 4456, - "sha1": "74c1e9e3e8d8d8be764719fbfb77ad9ea1cbe1c4", - "md5": "050461efb6a2e7f5e596bc45c7348b9c", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 113, - "end_line": 113 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/crypto/X509_sign.pod", - "type": "file", - "name": "X509_sign.pod", - "base_name": "X509_sign", - "extension": ".pod", - "date": "2017-05-25", - "size": 3414, - "sha1": "843cddfa6c0771a160be4b8449abd6bca0393e00", - "md5": "69e07bd63b8490b282fa32ffeec7f93f", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 92, - "end_line": 92 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 970, - "sha1": "c698d9da1fedd6fd6f4873bc4930cfc09087a530", - "md5": "af02d72120b5038b9ec25967f3b7c70b", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 29, - "end_line": 29 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 12855, - "sha1": "19ecedbc4034ddea01b0a567e5efff4356cd83f8", - "md5": "e848265a2a8c39def9265c34e476ed52", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 331, - "end_line": 331 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 6732, - "sha1": "a05ad044822b6f961af058375089b382779132c8", - "md5": "8096f3f195e40b6fdb285c48b2d253e4", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 167, - "end_line": 167 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 8019, - "sha1": "5f0a7e16313ec9e49aa6a4018c97c968de558b9e", - "md5": "428141829a78a27b384fcebf75167b06", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 208, - "end_line": 208 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1573, - "sha1": "d4ac6313267d6fd3a4a7911c597154a3ca77d1ec", - "md5": "500ef19b8dee5e93dd8aa9fe5906eba5", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 50, - "end_line": 50 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1510, - "sha1": "c70267d53a9b54d99d82e53d4fca3be6e167e349", - "md5": "95bc3c5f663da3904d0d86a625186297", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 51, - "end_line": 51 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 11455, - "sha1": "799b34cd76c15a3fd16965a7524b9481b432e114", - "md5": "d89de8040a8157282af576e6389fc7e7", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 258, - "end_line": 258 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1860, - "sha1": "a091b17166bf1dce8d19e5a3250a0a8debff3564", - "md5": "b3881fbd6ec43b2a46dec7d619f9bda8", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 53, - "end_line": 53 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 15126, - "sha1": "b35b29d90b5e367acf8678d956cb48ede3ca23c8", - "md5": "ca8cd50f236f8c86fdc4accfe340e355", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 334, - "end_line": 334 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/HOWTO/certificates.txt", - "type": "file", - "name": "certificates.txt", - "base_name": "certificates", - "extension": ".txt", - "date": "2017-05-25", - "size": 4744, - "sha1": "3d25c30aeef18b1197de87d8bcb47662c6508ae8", - "md5": "45247871056142c8526c6f8cd168e830", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/HOWTO/keys.txt", - "type": "file", - "name": "keys.txt", - "base_name": "keys", - "extension": ".txt", - "date": "2017-05-25", - "size": 2568, - "sha1": "a178fea584cfa8bb4c6f1b8323c3845d20f2aeca", - "md5": "0442b71a14dfee97a0e1e7e436646972", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/HOWTO/proxy_certificates.txt", - "type": "file", - "name": "proxy_certificates.txt", - "base_name": "proxy_certificates", - "extension": ".txt", - "date": "2017-05-25", - "size": 12548, - "sha1": "46a05687414a9f3975a901f92c780b398dc13e4b", - "md5": "847cf8e431b79016381a25867fdbf9e7", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2028, - "sha1": "6262b39db85abe37c6dff4f4abc0073df49747c2", - "md5": "797fdcfd571454548b98492027229be8", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 55, - "end_line": 55 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1529, - "sha1": "bad7e439eeb3fca404cc82d8219f8dcfb0a6931e", - "md5": "d2ed87d558732f7f8414963fe8839f76", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 42, - "end_line": 42 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/ssl/DTLSv1_listen.pod", - "type": "file", - "name": "DTLSv1_listen.pod", - "base_name": "DTLSv1_listen", - "extension": ".pod", - "date": "2017-05-25", - "size": 4497, - "sha1": "673dec4cd9d03d7cd97bed02e8d204db09a5dfa9", - "md5": "d4b26a15a1fc39917b197b44a1d923e8", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 95, - "end_line": 95 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2792, - "sha1": "f884424301c96d68ee2f8c1c99ddba4e75894c24", - "md5": "67cfdc6a9eac3c8cdb055260b14feb1d", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 77, - "end_line": 77 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/ssl/ssl.pod", - "type": "file", - "name": "ssl.pod", - "base_name": "ssl", - "extension": ".pod", - "date": "2017-05-25", - "size": 25985, - "sha1": "f53fcd304c4f6529fa26584657a9cad4536a8b76", - "md5": "dff4c00ec553ef94d912db582c57bb77", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "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": 830, - "end_line": 830 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/ssl/SSL_accept.pod", - "type": "file", - "name": "SSL_accept.pod", - "base_name": "SSL_accept", - "extension": ".pod", - "date": "2017-05-25", - "size": 2574, - "sha1": "9f6558fe055b022a3fd06691115e0796ee39d5e4", - "md5": "e2c471a9adbb080bdcd98a4cf16e17c5", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 75, - "end_line": 75 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 7535, - "sha1": "5bede5cadac79bfc026e09975a81e5a48e84a54b", - "md5": "e26e9ff32ef3bca19218563f88f7899b", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "apache-2.0", - "score": 78.95, - "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": 235, - "end_line": 235 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 3162, - "sha1": "96ea5a315153a4cf673e544915ff8be76f88f864", - "md5": "44ce7c3e731a31474e030c03eb94a24e", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 87, - "end_line": 87 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 4043, - "sha1": "3bc32cf95a9fbb4370b016f0a968a05522248c52", - "md5": "d3acf1a87590fb1514c5ff8557102e3e", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 121, - "end_line": 121 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/ssl/SSL_clear.pod", - "type": "file", - "name": "SSL_clear.pod", - "base_name": "SSL_clear", - "extension": ".pod", - "date": "2017-05-25", - "size": 2567, - "sha1": "7c42cf3b4e1c982ae433415f2bdacacf108d7b5c", - "md5": "c4c4fe51fb83c560c2075c118a130da2", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 77, - "end_line": 77 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 4095, - "sha1": "9595097f8a05166da1f69907e3d6e5c7fb69ce68", - "md5": "e74adc3d09a2b4254727e5d7c7c4f5c2", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 109, - "end_line": 109 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 19616, - "sha1": "1d57354194b2ded8f4ddfe1c5437f35d6c1177a6", - "md5": "9701e8afff5337cc94528c8ded6f593a", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 546, - "end_line": 546 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1369, - "sha1": "3a4669d48cdfb70ffdc4f2eb916638f41a294b5e", - "md5": "bfb1df0fb32ab801be622457b259284b", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 44, - "end_line": 44 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1211, - "sha1": "a709d428ac692d6f222e2fa1d7cd87f08b9a3f50", - "md5": "a9b8863b2683d679cc3a116f2dab1574", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 43, - "end_line": 43 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1724, - "sha1": "d0f762dbbac0b63989953a049dc33505b521c45d", - "md5": "1696ee73b85d99f21a1d2f9a1dc06adc", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 51, - "end_line": 51 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2300, - "sha1": "54e17ce6067c3c492e7bf13f5c459095fc0575e6", - "md5": "79e611d04d481032791e2b83f031a8e8", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 77, - "end_line": 77 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1538, - "sha1": "48c9958c8a5948684b43a73fc1ecebb1f7dc3435", - "md5": "973b29d930728ee6817d52848f1ce8d0", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 49, - "end_line": 49 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/ssl/SSL_connect.pod", - "type": "file", - "name": "SSL_connect.pod", - "base_name": "SSL_connect", - "extension": ".pod", - "date": "2017-05-25", - "size": 2564, - "sha1": "4137777681280db9fae6a1020c25f3d818faaf2c", - "md5": "e8b17fbe9f24dc09d0cba24fd73ec5a3", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 75, - "end_line": 75 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 6913, - "sha1": "3bac968351cc0394e39cdaf3cb75186ef8ba8526", - "md5": "95f3a60448f3dfe2e5613943b739b70b", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 151, - "end_line": 151 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2431, - "sha1": "5e66ba70b80f990487783a4ff1a2e7de6e9da599", - "md5": "c9bb27db5ebb01a80bc2a28c832c80ba", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 73, - "end_line": 73 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2587, - "sha1": "4ce1e86db3b64059c68f6ce73fae72377fad57b8", - "md5": "6a937fd11d557da81e1a4aa8c272a767", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 75, - "end_line": 75 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2247, - "sha1": "7322a20a1ac4a1e4236db3c59f39bdd650e1f494", - "md5": "3194abf136333ff8c1292804aabcd445", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 86, - "end_line": 86 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1258, - "sha1": "061b83d49fa6076652b4bdd8362e576567167905", - "md5": "6e00e7038fec2edff3e0963c149d9757", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 36, - "end_line": 36 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 16230, - "sha1": "4622fbb3ae607479f67fcb139f4b3de536a619e4", - "md5": "010f4922cabf416da4db17830d65b747", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 375, - "end_line": 375 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1729, - "sha1": "63abb71dad430d83e88abdbaa4a303e7cc6290d4", - "md5": "11b423448c9e9a840838403517f24fc1", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 49, - "end_line": 49 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1482, - "sha1": "797b4c51944a5bfed7fde412e368992942f36f80", - "md5": "f9e707b310bcfa833b2e1e7e34871783", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 44, - "end_line": 44 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1781, - "sha1": "941e13b3d1c0673f054d4944aa586c8537eaa2c2", - "md5": "272d7a7ddd6c2cd563af9b9628bd5798", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 57, - "end_line": 57 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1982, - "sha1": "e217d32667c3e454e4c2c687d833bd1405a5d593", - "md5": "9166bce52398c847fc21ee83dbd95851", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 52, - "end_line": 52 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 889, - "sha1": "a5f24963d7e22f48939bd98859e73b3b44056fe8", - "md5": "c58c83bb0606a7fd269e33bc9955415e", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 30, - "end_line": 30 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 5734, - "sha1": "0402f4e8b977d36e30757f0a839e1181e280b64a", - "md5": "06395356bf22e8d19b25b9ca6f8497f1", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 154, - "end_line": 154 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 7753, - "sha1": "8e4dd1e899353f519d2f02b141da3e14065bc9e8", - "md5": "d8dbcbf62ef735ec6685b4ef8dda6c86", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 211, - "end_line": 211 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1130, - "sha1": "34b9cb980a4148462d433cb5ba10950e76acc614", - "md5": "355c409be87be654aa64180e82993ae0", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 36, - "end_line": 36 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 3097, - "sha1": "b8f5d0b9c9256464fda2a5731775480cd06bce22", - "md5": "8fec84f9fdb2a6d3749d4b023e3211b5", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 78, - "end_line": 78 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1872, - "sha1": "d5072ed4683ed8e35332a998ed3643c59c8f0ae5", - "md5": "71c8bed463eff05ccf6d1c1de0a02d70", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 55, - "end_line": 55 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 4142, - "sha1": "86a5b41004754002a99d0e54289892a0f63dd66a", - "md5": "9515daffac725d0be7e6433771f394d0", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 89, - "end_line": 89 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 3174, - "sha1": "f0279297ea46b4ee972f251379d31ccedf952ac1", - "md5": "5c3887377bd6ea90c1492fb5bbd89fd1", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 83, - "end_line": 83 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 4242, - "sha1": "1ab2f2fb49025fc1f0a373a669633ba196242d92", - "md5": "1f4251a66d72f92725256b9d8efd471c", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 106, - "end_line": 106 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 3488, - "sha1": "5639eb3a897c159f0929632851387179a2c12e2d", - "md5": "ca87229aec17b9d3ae4dd16681dda270", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 93, - "end_line": 93 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 8439, - "sha1": "d3e2cc46b44903d7b448afbeff04f594ad7cd2d2", - "md5": "492aefffda311f4513191749db14787b", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 190, - "end_line": 190 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2943, - "sha1": "472645c0f30b19c8d2e3a062df9bb7ddb924c74d", - "md5": "91cd2dfae5443ebe1e41100a313893fa", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 70, - "end_line": 70 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2448, - "sha1": "1cc74500c90b6f464f582fafcf945fd77483b9b3", - "md5": "a7b6bf75f749a3bc242232ad3576c517", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 66, - "end_line": 66 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2780, - "sha1": "530fe9af89e06615a6c8b91a05f89c0343bc58a5", - "md5": "7ff7491982e92efdb66af3f7f9d8c1ae", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 67, - "end_line": 67 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2700, - "sha1": "35be6b0bc6338b99a95fb3bccb6d64d1bc2b8821", - "md5": "88b353fd6f546e107fd8bf2ced1f6947", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 67, - "end_line": 67 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 3261, - "sha1": "638afdf55167a796444fe1d4d1f4c814b6740f4e", - "md5": "2d30debb5b179a63c3178cb294bd4e56", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 96, - "end_line": 96 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 4555, - "sha1": "32704b96905596898c21ee1127ef00a8ba592ff1", - "md5": "6e5b9262989a3f0b5bfa0215c214e5c3", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 96, - "end_line": 96 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1578, - "sha1": "07a0777153184b948736d3dcc6fcfd84cd9c3a0b", - "md5": "ca0fa51cabd1e36b888a0c086101edd8", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 46, - "end_line": 46 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 6011, - "sha1": "fa71ef8d523b7f347926b39392d4d677f5b19404", - "md5": "7e689d96ee8f3b6317e0fe28d43bbd73", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 138, - "end_line": 138 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 4285, - "sha1": "8d122cdf8028516c138e51cc911195d67ddafbea", - "md5": "6e46d1c8c9c39846b40b1a694c0caed5", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 106, - "end_line": 106 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1496, - "sha1": "b95b774a84303323703a6c3ee2ab6dbfa480b5d5", - "md5": "d27f2741c0dd8c9a44e679d852958b45", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 45, - "end_line": 45 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 5705, - "sha1": "3aaf13fdb12b117f665fed9a101ac5d7e0bfb84a", - "md5": "8a6d3c04b9937d8784c8fe60b6872ba4", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 132, - "end_line": 132 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 5096, - "sha1": "f6578adfa0037d895aebf8186a1238728e3eb4a0", - "md5": "9da470e83179291ee8d5085f42416e9a", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 155, - "end_line": 155 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2957, - "sha1": "40fbd688e457dc4f6a66ef482a0dde61b7aa8067", - "md5": "37861d75d7d2088cb0c50fd52d3af860", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 75, - "end_line": 75 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1732, - "sha1": "d303ccf822229e256575bf2354a90b97f4c8019d", - "md5": "32e1db1ed95a92d8eaba80c49bd6a228", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 53, - "end_line": 53 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 3649, - "sha1": "721097a9ffac89fc5a21b8b176679ea5ebac97cd", - "md5": "f70d1fa716f58f29ddae3470fdf5e4ef", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 107, - "end_line": 107 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 3575, - "sha1": "a1fbe34f0bc7a1f3581cd691ee60bc0a37de0ca3", - "md5": "70a8b78a97b8fba941b0ba3966f9f266", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 96, - "end_line": 96 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 9852, - "sha1": "baa67d3df48d32d183ece94b6a16f261b822ed70", - "md5": "447a7022f317ccb1d18c2e768d7c37c3", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 285, - "end_line": 285 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2109, - "sha1": "e84be4b68b134d503539147d4c9b9d502fe57f14", - "md5": "651810bcf9e00a1782175683b20f8c43", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 54, - "end_line": 54 - }, - { - "statements": [ - "Copyright 2005 Nokia." - ], - "holders": [], - "authors": [], - "start_line": 61, - "end_line": 61 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2342, - "sha1": "eb0a9c3d8977090edc84b52b0054a7dc1c01d0c8", - "md5": "2eb38ed4765d3dafd0196463c0eb1418", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 65, - "end_line": 65 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1966, - "sha1": "1e18df99f445184afe001f4016f1a03bf709f205", - "md5": "ae528c7824ebd2602f8c82e51611c000", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 53, - "end_line": 53 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 7097, - "sha1": "534e28c91f97fd81b4309e4d0067176e4ad6d5af", - "md5": "75be8df9313e34e868ade52882c1cf4c", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 162, - "end_line": 162 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 5033, - "sha1": "84afe590b9b9c6ee96c821c5470b3ce24263efd3", - "md5": "c23976c08006f28e1e205df5cbb1727e", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 134, - "end_line": 134 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 3054, - "sha1": "4dbc2cd024e6a1e6fc78938a563d3dffe68e6730", - "md5": "b6b91b46d899acc6afc539c20320cf24", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 85, - "end_line": 85 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 5885, - "sha1": "6ca55c6386925c1219ed193a9bcfd323b78a5f89", - "md5": "78862df4272dabd1dab9c114e07f8c5c", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 125, - "end_line": 125 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1755, - "sha1": "13991a0541c3885d7aceef1cd8bd250ed4081997", - "md5": "5c4678b7cdea9798115a9918f1583810", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 63, - "end_line": 63 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2118, - "sha1": "c5e77ac79fcbcb61fb157893bab8236211d5083f", - "md5": "9c1545328d20b52e49f658d7ffb002d7", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 61, - "end_line": 61 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 5705, - "sha1": "94b456b454f231fbca2b41f37f4f3351e39ab980", - "md5": "e8ed102a8717c909ca44f2dd53cd0649", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 118, - "end_line": 118 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 7705, - "sha1": "1de6673a71d43fc0056f33cc4066259ba0351e5f", - "md5": "ca97c7982cac2d484188373530559125", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 191, - "end_line": 191 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 4980, - "sha1": "e28e67f6193f8c76ad23ffc21d56ba1f688dc60e", - "md5": "3942d081b6fa28649bd77d6eeb2af39f", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 130, - "end_line": 130 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 11432, - "sha1": "98c5d819edf3cd1b2a9dd957ccb51e5c7a808b07", - "md5": "7887cae252559b6be43d89676282249c", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 300, - "end_line": 300 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 8433, - "sha1": "e932ae78aae2b6db45b5c933857ddbfc3bc2bf69", - "md5": "b31815210ed98c2f39167cf93aab1c4f", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 173, - "end_line": 173 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2952, - "sha1": "a58fec83593c1e3c789455dea99ac28425756077", - "md5": "468ce05fbb48c73386847c1d5f098328", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 78, - "end_line": 78 - }, - { - "statements": [ - "Copyright 2005 Nokia." - ], - "holders": [], - "authors": [], - "start_line": 85, - "end_line": 85 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2063, - "sha1": "c94e330eb03ed4c36ad7e76bb312f5cb0cac41e6", - "md5": "80d71a4abb785d359ee3c60d6e85cd3c", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 49, - "end_line": 49 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2584, - "sha1": "bb48dc8e47e2803b4414f980a0dc3b4a3f92d518", - "md5": "b6b4ad4987debd733c960856c820140a", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 74, - "end_line": 74 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 6084, - "sha1": "9bb30ef80ed89f0468fd6d3b71645edd883b8e11", - "md5": "bfdfd70389328181d46551eab537402e", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 138, - "end_line": 138 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/ssl/SSL_free.pod", - "type": "file", - "name": "SSL_free.pod", - "base_name": "SSL_free", - "extension": ".pod", - "date": "2017-05-25", - "size": 1644, - "sha1": "295a67685e3a0d343ccce289d3336115a9a78811", - "md5": "2696977577d1ce7d1bf177c1199af022", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 47, - "end_line": 47 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1256, - "sha1": "6dc232f6b787e6afe3ab64f9632cc81bb1cc66f4", - "md5": "69df51de09e03c1a5d4494c412474ce4", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 38, - "end_line": 38 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 3486, - "sha1": "74eb86fd6448030a47ad08d97eb006cd27d7ce9b", - "md5": "80818f01696c78d565babb2570d271d2", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 81, - "end_line": 81 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 3119, - "sha1": "360863c490e0791eee67605372570e9e710b5d80", - "md5": "3ef17570d1095e12d84d68470353a11c", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 77, - "end_line": 77 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1636, - "sha1": "0ca51ff82d1b6942c6e27edfdf1bc5162e8d2750", - "md5": "5b746bcf501e7e19e56d31bfe33b545a", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 55, - "end_line": 55 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 3363, - "sha1": "4a11dcc27b8774c7adbba91cd9cbd14be3dae578", - "md5": "8f02e8b4100e8d7b374eda70b9656135", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 81, - "end_line": 81 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1524, - "sha1": "eabf03bef17d7cb4020f95c2f01ea124cde75cac", - "md5": "3a5a9565c554e386bd8896b8bcd208eb", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 48, - "end_line": 48 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1257, - "sha1": "fbe777954c5c187786a18a9f3acbdb8b970d4955", - "md5": "e234f2373ef91cea969e129a45362df7", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 43, - "end_line": 43 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 5549, - "sha1": "deed2b5e8186a34895d02ecc16b0bde9bda77f5a", - "md5": "64b0a19f116a48cc64fcad0478092881", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 136, - "end_line": 136 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 922, - "sha1": "9281c37b3107597b8540a99002ad06a3021ac51f", - "md5": "71a6a7cd0c4b8f4127aaae7f818be3d1", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 33, - "end_line": 33 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1219, - "sha1": "d6a4e7cf2483d087613197cd23ae447bda165967", - "md5": "13df7eec598004675483705f25775631", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 46, - "end_line": 46 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1697, - "sha1": "261317573fa1654c205ba635a2d224f3161cd008", - "md5": "b327a9096c4db6bdb4eba1492dc6aee2", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 57, - "end_line": 57 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2569, - "sha1": "27dc2b5b953c1c7c82631dd4ae864f7e6b743d6f", - "md5": "d00094490fd47afbb8c32bb878d12420", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 70, - "end_line": 70 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1252, - "sha1": "efcbbc2357eb54cc9ce52ce13adc93b095450519", - "md5": "610acbfb7d88774261e4bc47c8899518", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 35, - "end_line": 35 - }, - { - "statements": [ - "Copyright 2005 Nokia." - ], - "holders": [], - "authors": [], - "start_line": 42, - "end_line": 42 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 957, - "sha1": "4f8c07eae94542052ab7348a9d84d7326de86e35", - "md5": "b599a7d81e412b2dd240984fef03610e", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 42, - "end_line": 42 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2492, - "sha1": "da6dadf5066b40a935d1c51e291b39c4ba098274", - "md5": "9ec2e5139369b392f642bbe5d17fecdc", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 75, - "end_line": 75 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 3335, - "sha1": "d47938b467528185b23d5d93e5be5d63297f27e1", - "md5": "e48bc7ae02080d913cb25552b16ea210", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 79, - "end_line": 79 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 751, - "sha1": "9067e7551075da0302813183e39ff3818218c422", - "md5": "78614f1baafb15128ad5eb3ed7d827c4", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 28, - "end_line": 28 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1622, - "sha1": "35b2f0e86935b61bb82dc3bb0e86c9c6e8f72f44", - "md5": "59e0c30be6bc43a5695c48618f894b2b", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 59, - "end_line": 59 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1233, - "sha1": "4f9f6ca95e730aa27f5c4d1e05166f46f85e0bd5", - "md5": "8fe3e6a77ab355abc5c08f678f4e2a28", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 60, - "end_line": 60 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1270, - "sha1": "dda48d5947f9cad170d24c0d082eef08195d6780", - "md5": "4481bd683df41c023a606f0eef019865", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 50, - "end_line": 50 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1572, - "sha1": "fea41df558f2f11f62b422bb236b98e5dfb757c2", - "md5": "d2d1b44a55976aa746545d4f90e66096", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 64, - "end_line": 64 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/ssl/SSL_new.pod", - "type": "file", - "name": "SSL_new.pod", - "base_name": "SSL_new", - "extension": ".pod", - "date": "2017-05-25", - "size": 1576, - "sha1": "0821f6274a2d3bdf047721223f9ee130da25be81", - "md5": "87065cb017722cf93f52375973b85737", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 54, - "end_line": 54 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/ssl/SSL_pending.pod", - "type": "file", - "name": "SSL_pending.pod", - "base_name": "SSL_pending", - "extension": ".pod", - "date": "2017-05-25", - "size": 2698, - "sha1": "4a7bc6627582a5527eb9d18d225faa92b89a2e96", - "md5": "a42c57b8b279f7761af7f4d22ae97f31", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 61, - "end_line": 61 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/ssl/SSL_read.pod", - "type": "file", - "name": "SSL_read.pod", - "base_name": "SSL_read", - "extension": ".pod", - "date": "2017-05-25", - "size": 4570, - "sha1": "abd89081445e3a0d3824a1dbc81826597a579c4b", - "md5": "94f2119ece3a0ed1066b05ef5260e835", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 114, - "end_line": 114 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1563, - "sha1": "7404bdf4abcc0c2786c47c7970c48c4a09eb3855", - "md5": "2c08dd8187f3418b2b786e7a3f013604", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 61, - "end_line": 61 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2726, - "sha1": "f8806749189cfaab05cdc1332e1eb358df321c15", - "md5": "f22647f0b16559c0eb407f0e520a4a3a", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 71, - "end_line": 71 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1015, - "sha1": "ff2656ffcbe51323383c7bc6326062ce6fd381d9", - "md5": "ca3e23a5be193ccacdf0c6837429af8e", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 35, - "end_line": 35 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 896, - "sha1": "fd7a71fefc0c1d9e7bdfbec7d7a485d698436820", - "md5": "4cb2374f7009edb4ce59d2819799c3c2", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 30, - "end_line": 30 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1641, - "sha1": "c72c7930469193cc856cf1285f364cd77a8f76b8", - "md5": "8019da105daa144c4605f6aa1957c042", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 49, - "end_line": 49 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 927, - "sha1": "a93d14883187d41379b7cdb9b702001d34377b43", - "md5": "c58fc060d1c2698e076980af1a92e683", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 31, - "end_line": 31 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 937, - "sha1": "472cc5b1b15f9e707ad476d872c072a30d652f4d", - "md5": "0c3c7c57b017b2270f5d2e81a77da1ab", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 32, - "end_line": 32 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1350, - "sha1": "c4313b259df60c4b9f743349ccf972c677aa9503", - "md5": "f18c68bd1a46b0ec26d18384dfc5ddda", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 40, - "end_line": 40 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1098, - "sha1": "bd71b17d6560ddfe2ee7a473b2394d0ac374ba2f", - "md5": "ecd265c85e0c866f04f4795927911934", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 37, - "end_line": 37 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2334, - "sha1": "8a7e5616cc0cd06f05b21509915d4292f4d7dcd8", - "md5": "4940b65be3f84db3f5130c17168aa746", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 69, - "end_line": 69 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1660, - "sha1": "7bf3505093ca57f737dc5efcff90bc12be6e713a", - "md5": "9cde65049b42b626eb11767660efd31a", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 46, - "end_line": 46 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1164, - "sha1": "3059cc516b0e984059cccfe8e350b410495f045e", - "md5": "8c5b45bc22e80ea46e9e8ca55a904e7e", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 40, - "end_line": 40 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1117, - "sha1": "c06abee09d4946b3adb908a6402d842d08abfd8b", - "md5": "1ed87829379cf20f6ad4000388ba743c", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 47, - "end_line": 47 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1407, - "sha1": "d623736a3b1454f6fb03f8bd48874c547099ec36", - "md5": "db5ff56795e1af0cdcf57966535e4ad5", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 43, - "end_line": 43 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 4564, - "sha1": "0ba0005e6673614180f96484dea4ad67dbd419d6", - "md5": "edde7d73932a75c5f15e337f1758b627", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 114, - "end_line": 114 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 3653, - "sha1": "d1d17149e6b60b1d87a8466c79f87c855764a512", - "md5": "49cde302bef8bb9e4d5e2cddc9c33feb", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 101, - "end_line": 101 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1941, - "sha1": "371c764dab379c4d9fb6b065d385cb749b3c2701", - "md5": "a6f604552cc528499b30c777c75d7fda", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 57, - "end_line": 57 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1667, - "sha1": "d78ee4aaa0d19b0d7224569d1760050715dd499f", - "md5": "beaf3fbbbab4d043b6e31a6b4be223b3", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 56, - "end_line": 56 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2114, - "sha1": "fbaa1114b05607149539968b57066b4bce70cf09", - "md5": "16a8d2687351c53a16691057e131e922", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 63, - "end_line": 63 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2212, - "sha1": "bb7c6a788c7b92bd02e0d4be82d5a2cbd02bc4d2", - "md5": "b072f7bb4191180f2ae20c7f34beeb1b", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 74, - "end_line": 74 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1230, - "sha1": "e7079621043771597f1c26135fc11dfe579e60a2", - "md5": "b108ed5c862da9908dfcf6183e7b9827", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 40, - "end_line": 40 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/ssl/SSL_shutdown.pod", - "type": "file", - "name": "SSL_shutdown.pod", - "base_name": "SSL_shutdown", - "extension": ".pod", - "date": "2017-05-25", - "size": 5077, - "sha1": "3f761206e63ed12ba418f106977cbd9c82337ca2", - "md5": "6c82f51432b92cc461796283e3b46901", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 125, - "end_line": 125 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1591, - "sha1": "68dc39ce54c289ca213dc6269853d201b5c75648", - "md5": "61298edd54805e23b783bf0297a1a231", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 47, - "end_line": 47 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/ssl/SSL_want.pod", - "type": "file", - "name": "SSL_want.pod", - "base_name": "SSL_want", - "extension": ".pod", - "date": "2017-05-25", - "size": 3029, - "sha1": "f4eb1ee6a286bc6c20ddf7e3d5447084854ff165", - "md5": "f1b29af2d1bb279476772c649dbbf93d", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 96, - "end_line": 96 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/doc/ssl/SSL_write.pod", - "type": "file", - "name": "SSL_write.pod", - "base_name": "SSL_write", - "extension": ".pod", - "date": "2017-05-25", - "size": 4014, - "sha1": "88fd4458583dfe62e4241641d8484b4b1fef5148", - "md5": "ef4812a3a7dc9d5aa8c2a3e48ad3bd50", - "files_count": null, - "mime_type": "text/plain", - "file_type": "Perl POD document, ASCII text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": 104, - "end_line": 104 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/engines/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 987, - "sha1": "12c249e73059d1568ccf5cf2cf10de30b29f8525", - "md5": "5160578600f4bb5ba1d25c736c109835", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/engines/e_capi.c", - "type": "file", - "name": "e_capi.c", - "base_name": "e_capi", - "extension": ".c", - "date": "2017-05-25", - "size": 54992, - "sha1": "d8eff8a15a92e7bf2f863d8056f52ccadfb762ac", - "md5": "2a80a663ad4e3f1f44c0edb0ecaa4490", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/engines/e_capi.ec", - "type": "file", - "name": "e_capi.ec", - "base_name": "e_capi", - "extension": ".ec", - "date": "2017-05-25", - "size": 42, - "sha1": "790538b0f4dd12e30f216494371fddc74809fd65", - "md5": "a25fa1307b2f27749962c90ec1151da4", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/engines/e_capi_err.c", - "type": "file", - "name": "e_capi_err.c", - "base_name": "e_capi_err", - "extension": ".c", - "date": "2017-05-25", - "size": 5626, - "sha1": "52fead31f38b709260c5002fe2cf8c3ad4b759f1", - "md5": "3b77748f8388180642d9f0f1f827c148", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/engines/e_capi_err.h", - "type": "file", - "name": "e_capi_err.h", - "base_name": "e_capi_err", - "extension": ".h", - "date": "2017-05-25", - "size": 4105, - "sha1": "f150398c82aea5a272c859591f759e125d949917", - "md5": "34dfed265993370a5ef5e54aa920cd07", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/engines/e_chil.c", - "type": "file", - "name": "e_chil.c", - "base_name": "e_chil", - "extension": ".c", - "date": "2017-05-25", - "size": 39996, - "sha1": "1778ba217250113a2996b6ef625422e1a4e918af", - "md5": "2a2e329de1ad4fd7941904b0080f6159", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/engines/e_chil.ec", - "type": "file", - "name": "e_chil.ec", - "base_name": "e_chil", - "extension": ".ec", - "date": "2017-05-25", - "size": 37, - "sha1": "534330e7cf065c45096619e0f424aa9cc9c2f1c5", - "md5": "d11dd96d764ad670fb334f78a9d4fa04", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/engines/e_chil_err.c", - "type": "file", - "name": "e_chil_err.c", - "base_name": "e_chil_err", - "extension": ".c", - "date": "2017-05-25", - "size": 3738, - "sha1": "af0136e0e56457a5e735188994f53fa8107cb7a7", - "md5": "031d3faa6c3df90e0821fbb029a9ceba", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/engines/e_chil_err.h", - "type": "file", - "name": "e_chil_err.h", - "base_name": "e_chil_err", - "extension": ".h", - "date": "2017-05-25", - "size": 2635, - "sha1": "7d060e79bcb0098b6406994e6f7290c8e29b34a9", - "md5": "1bcb5f3628849cfd79ceb69d2a8faf06", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/engines/e_dasync.c", - "type": "file", - "name": "e_dasync.c", - "base_name": "e_dasync", - "extension": ".c", - "date": "2017-05-25", - "size": 25064, - "sha1": "4ff13c8b8589993f2c996588926d2756cc33ad6e", - "md5": "56e3db87affb9475ec6be4828335b7d2", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/engines/e_dasync.ec", - "type": "file", - "name": "e_dasync.ec", - "base_name": "e_dasync", - "extension": ".ec", - "date": "2017-05-25", - "size": 48, - "sha1": "e9c49a5b7eb225c713bbd51298001cfafabf3a73", - "md5": "6792de6c953ec612abf9c93497e200fe", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/engines/e_dasync_err.c", - "type": "file", - "name": "e_dasync_err.c", - "base_name": "e_dasync_err", - "extension": ".c", - "date": "2017-05-25", - "size": 3251, - "sha1": "d6075654ada5c5c46d6007e67fee66154c811f1f", - "md5": "9c91043ff812b596c73d12fc76d2948f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/engines/e_dasync_err.h", - "type": "file", - "name": "e_dasync_err.h", - "base_name": "e_dasync_err", - "extension": ".h", - "date": "2017-05-25", - "size": 1891, - "sha1": "04cd6a08693ed4789346b2db3fa4cc918e99f2e5", - "md5": "55b9680c7c941114689ef342b8e3d3b4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/engines/e_ossltest.c", - "type": "file", - "name": "e_ossltest.c", - "base_name": "e_ossltest", - "extension": ".c", - "date": "2017-05-25", - "size": 16600, - "sha1": "54cabbe7557f954da0bc9aa3114438b555f2b715", - "md5": "240f1ba86c85b5497dcbd566b4ca583b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/engines/e_ossltest.ec", - "type": "file", - "name": "e_ossltest.ec", - "base_name": "e_ossltest", - "extension": ".ec", - "date": "2017-05-25", - "size": 54, - "sha1": "a43cf1ec184de57ec489530664503211c2c54fbf", - "md5": "54df8703df8ec0c1fb78f75d274c0ea1", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/engines/e_ossltest_err.c", - "type": "file", - "name": "e_ossltest_err.c", - "base_name": "e_ossltest_err", - "extension": ".c", - "date": "2017-05-25", - "size": 2494, - "sha1": "50a9d29ad179a86d841ca2ff14adff3a8a44c091", - "md5": "1883d858dac7947a81432f49bce11818", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/engines/e_ossltest_err.h", - "type": "file", - "name": "e_ossltest_err.h", - "base_name": "e_ossltest_err", - "extension": ".h", - "date": "2017-05-25", - "size": 1225, - "sha1": "18c11226380ed943fb7eb1160223bee5cb0d0e8b", - "md5": "2904ad7ad34d604ce541868fb4dd5247", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/engines/e_padlock.c", - "type": "file", - "name": "e_padlock.c", - "base_name": "e_padlock", - "extension": ".c", - "date": "2017-05-25", - "size": 23226, - "sha1": "deb24586895e40a65bf8e67edde51dca710dbbac", - "md5": "47ff84ea49e3b07b79c68e82c7afa55e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/engines/e_padlock.ec", - "type": "file", - "name": "e_padlock.ec", - "base_name": "e_padlock", - "extension": ".ec", - "date": "2017-05-25", - "size": 44, - "sha1": "cf5e1063f00ab46ca0e30e1f1f628f34daaa4c79", - "md5": "99c314c41df4c3a8c57d3a67816aa3ff", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/engines/afalg", - "type": "directory", - "name": "afalg", - "base_name": "afalg", - "extension": "", - "date": null, - "size": 32119, - "sha1": null, - "md5": null, - "files_count": 6, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/engines/asm", - "type": "directory", - "name": "asm", - "base_name": "asm", - "extension": "", - "date": null, - "size": 31614, - "sha1": null, - "md5": null, - "files_count": 2, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/engines/vendor_defns", - "type": "directory", - "name": "vendor_defns", - "base_name": "vendor_defns", - "extension": "", - "date": null, - "size": 23062, - "sha1": null, - "md5": null, - "files_count": 1, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/engines/afalg/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 353, - "sha1": "af26de4e2a4bdb0caa34f5d7a9eb0271d5106e8b", - "md5": "c6729a28142eb4b822e607f5ca3ea57c", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/engines/afalg/e_afalg.c", - "type": "file", - "name": "e_afalg.c", - "base_name": "e_afalg", - "extension": ".c", - "date": "2017-05-25", - "size": 23602, - "sha1": "63c3a3e2bc0e2acffb18028523f992106502150a", - "md5": "5c0f62fd9d61920be28b5dd7f315ebba", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/engines/afalg/e_afalg.ec", - "type": "file", - "name": "e_afalg.ec", - "base_name": "e_afalg", - "extension": ".ec", - "date": "2017-05-25", - "size": 45, - "sha1": "da31abbcca9fde4077116438c8a393a50b2ac979", - "md5": "8f0b4940f65eafa23a96df40a3af92fe", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/engines/afalg/e_afalg.h", - "type": "file", - "name": "e_afalg.h", - "base_name": "e_afalg", - "extension": ".h", - "date": "2017-05-25", - "size": 2034, - "sha1": "11b8d1c49c2d645d309a0a48cacb55d9ca870059", - "md5": "a99b54ae5d9a2c94a495757bc047366e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 3733, - "sha1": "5aa0320beb5ded2c30079ac77db3b803080183cc", - "md5": "50e8bb19152efef791da57610688a92a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2352, - "sha1": "fb6185e07c10fc1ebd533f7c27f04f6ae8c3d7e7", - "md5": "737381e06ea46c7ffc3e324fcf5b91a8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 18599, - "sha1": "fb8b10559c0b4dd39b58e80cca0fdf09a6408493", - "md5": "0efe1cc85a7be9f2e865afd566ae0dea", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 13015, - "sha1": "5a37d4652dd42c0e5e9a342fdcb38603acff7045", - "md5": "548c7a2f0bda0d03f4e8402ebdeafc64", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 94.87, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 94.87, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 94.87, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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 " - ], - "start_line": 11, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/engines/vendor_defns/hwcryptohook.h", - "type": "file", - "name": "hwcryptohook.h", - "base_name": "hwcryptohook", - "extension": ".h", - "date": "2017-05-25", - "size": 23062, - "sha1": "c24066ec131bbaaef7e8b7912c32b1102b05cc92", - "md5": "6a2b5edc8e0082562fe7e82082e3840d", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": 72.46, - "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": 94.12, - "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": [] - }, - { - "path": "openssl-1.1.0f/external/perl", - "type": "directory", - "name": "perl", - "base_name": "perl", - "extension": "", - "date": null, - "size": 142908, - "sha1": null, - "md5": null, - "files_count": 27, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/external/perl/Downloaded.txt", - "type": "file", - "name": "Downloaded.txt", - "base_name": "Downloaded", - "extension": ".txt", - "date": "2017-05-25", - "size": 397, - "sha1": "7ff1851e04b14d7ec3c96e03805d4bd3b76b4b5f", - "md5": "e6163775b89433b8b6b500a7cf95e1b8", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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": "", - "date": null, - "size": 141680, - "sha1": null, - "md5": null, - "files_count": 25, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/external/perl/transfer", - "type": "directory", - "name": "transfer", - "base_name": "transfer", - "extension": "", - "date": null, - "size": 831, - "sha1": null, - "md5": null, - "files_count": 1, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/external/perl/Text-Template-1.46/Artistic", - "type": "file", - "name": "Artistic", - "base_name": "Artistic", - "extension": "", - "date": "2017-05-25", - "size": 6111, - "sha1": "be0627fff2e8aef3d2a14d5d7486babc8a4873ba", - "md5": "f921793d03cc6d63ec4b15e9be8fd3f8", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "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": [] - }, - { - "path": "openssl-1.1.0f/external/perl/Text-Template-1.46/COPYING", - "type": "file", - "name": "COPYING", - "base_name": "COPYING", - "extension": "", - "date": "2017-05-25", - "size": 18043, - "sha1": "ab8577d3eb0eedf3f98004e381a9cee30e7224e1", - "md5": "361b6b837cad26c6900a926b62aada5f", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "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": [] - }, - { - "path": "openssl-1.1.0f/external/perl/Text-Template-1.46/INSTALL", - "type": "file", - "name": "INSTALL", - "base_name": "INSTALL", - "extension": "", - "date": "2017-05-25", - "size": 584, - "sha1": "b457bd56a70b838ccc55d183ab09de64b6996958", - "md5": "e6e20eb00e2c04d90de9a649e2f55ace", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/external/perl/Text-Template-1.46/Makefile.PL", - "type": "file", - "name": "Makefile.PL", - "base_name": "Makefile", - "extension": ".PL", - "date": "2017-05-25", - "size": 217, - "sha1": "5950942a8aa07dc9755f354151e833c269dbd3ef", - "md5": "db9397bb70131be47edae35b75e95397", - "files_count": null, - "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, - "scan_errors": [], - "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": [] - } - ] - }, - { - "path": "openssl-1.1.0f/external/perl/Text-Template-1.46/MANIFEST", - "type": "file", - "name": "MANIFEST", - "base_name": "MANIFEST", - "extension": "", - "date": "2017-05-25", - "size": 476, - "sha1": "d55ef286f57719261f7b57d12e4f8264f32c2a4f", - "md5": "6fe30124e308b9dd506cf22b85344170", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "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": [] - } - ] - }, - { - "path": "openssl-1.1.0f/external/perl/Text-Template-1.46/META.json", - "type": "file", - "name": "META.json", - "base_name": "META", - "extension": ".json", - "date": "2017-05-25", - "size": 791, - "sha1": "4863680e4a35d96d2f4f170ab96dada500b4a690", - "md5": "2d18f8c1549faba584c8307a3fd8ea19", - "files_count": null, - "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, - "scan_errors": [], - "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": [] - } - ] - }, - { - "path": "openssl-1.1.0f/external/perl/Text-Template-1.46/META.yml", - "type": "file", - "name": "META.yml", - "base_name": "META", - "extension": ".yml", - "date": "2017-05-25", - "size": 429, - "sha1": "3a60e91dbb96b2afc0e06c065f0e778102c7e0c1", - "md5": "c98937fe236331b264beb6a33329a9b0", - "files_count": null, - "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, - "scan_errors": [], - "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": [] - } - ] - }, - { - "path": "openssl-1.1.0f/external/perl/Text-Template-1.46/README", - "type": "file", - "name": "README", - "base_name": "README", - "extension": "", - "date": "2017-05-25", - "size": 11701, - "sha1": "5d77dacc6fbc44c87a96bbf67cb5c988be4ce5ee", - "md5": "59f394e63299cd817b2eaf741cff1fd2", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/external/perl/Text-Template-1.46/lib", - "type": "directory", - "name": "lib", - "base_name": "lib", - "extension": "", - "date": null, - "size": 66373, - "sha1": null, - "md5": null, - "files_count": 2, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/external/perl/Text-Template-1.46/t", - "type": "directory", - "name": "t", - "base_name": "t", - "extension": "", - "date": null, - "size": 36955, - "sha1": null, - "md5": null, - "files_count": 15, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/external/perl/Text-Template-1.46/lib/Text", - "type": "directory", - "name": "Text", - "base_name": "Text", - "extension": "", - "date": null, - "size": 66373, - "sha1": null, - "md5": null, - "files_count": 2, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 62082, - "sha1": "113b79701a4a976b654ad81402e2207226e34c19", - "md5": "a73f87adea447f454d235795ca741f0f", - "files_count": null, - "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, - "scan_errors": [], - "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": 98.63, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/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": [] - }, - { - "path": "openssl-1.1.0f/external/perl/Text-Template-1.46/lib/Text/Template", - "type": "directory", - "name": "Template", - "base_name": "Template", - "extension": "", - "date": null, - "size": 4291, - "sha1": null, - "md5": null, - "files_count": 1, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 4291, - "sha1": "02684c91af41c92de45f0d3ca610e913a0b17d00", - "md5": "fd9081a561787275786aef330d65ddf0", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "gpl-2.0-plus", - "score": 79.07, - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 149, - "sha1": "4e6099155d8afe89d50339ba682cea804e785071", - "md5": "524f90207c648af8309909ed4f00dc47", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 6172, - "sha1": "29e008c1e05c5b2e75eb12a9ace5b625422daf6c", - "md5": "d14772090c8bbbd70b68daae10616b6f", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 3215, - "sha1": "891e4a6f0a6564877452bec1e4026af1fbce462a", - "md5": "11a9c0284f53862ab310f78e4d1edca2", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1221, - "sha1": "cb6de64424c205dbdeb71d8ea530e8f472b02aa6", - "md5": "0b271452f90f253b03f1816683d12c88", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 4508, - "sha1": "463cbc6b0e95aa458f6481414f11102cd687c6c4", - "md5": "0fc26cb1f621824e9a9d211bee70b865", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2801, - "sha1": "a52465b366e85c23f758f0db2998fec1fc363b93", - "md5": "db4ad97da803b50f217b11b0a0621ce1", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 835, - "sha1": "2b86167a768c1a811c8c66b3b53f471b4d780b87", - "md5": "2ba20960dacd0893976ec5bb77fed0d9", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2167, - "sha1": "7415cb479c01b81d94496f6b49beb4a3726f23c5", - "md5": "ec4078901a7be3a4093117f6f6fc738a", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2283, - "sha1": "75e96ed59a3da15999194fcf76208b7511f9baf2", - "md5": "a5298ea901131cf7f58b4df12c386f3e", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1275, - "sha1": "4c615f1e1851620fc77194d112570f8ab6a523a7", - "md5": "a639c5542d00bea81f086f2c439142d8", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 3051, - "sha1": "88fbc0c11ca2f741b3be9fa56494ce8972653b56", - "md5": "32f9a1d6cc02d6da5fb18f78bcd1b0fb", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2483, - "sha1": "70a93244a424ebff566ebb12bffeaa94d5052950", - "md5": "1c27bc86b7ddfddc18118a19798953dc", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1451, - "sha1": "9d54e6b10b998e90e5ca045738211d6b787f8d5a", - "md5": "7a32234eae48cb5b1d2550e4cc6c048d", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 3023, - "sha1": "ce35a9fcec37796920dd6c6093e1066bfe4bc121", - "md5": "9678d9b42bef5d0eda64bc435a2bf296", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2321, - "sha1": "c3b024906a09905da5c5dec4193e2968dcf2b1fb", - "md5": "066c2c9b74576091ad2c624dbf50920c", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/external/perl/transfer/Text", - "type": "directory", - "name": "Text", - "base_name": "Text", - "extension": "", - "date": null, - "size": 831, - "sha1": null, - "md5": null, - "files_count": 1, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/external/perl/transfer/Text/Template.pm", - "type": "file", - "name": "Template.pm", - "base_name": "Template", - "extension": ".pm", - "date": "2017-05-25", - "size": 831, - "sha1": "6217708eca82118f60b1434d18df290e28115fa8", - "md5": "cc8517c66838d54272fccfdfa82c525d", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/fuzz/asn1.c", - "type": "file", - "name": "asn1.c", - "base_name": "asn1", - "extension": ".c", - "date": "2017-05-25", - "size": 6828, - "sha1": "2326ef7d3a540703e0b4654a01fb2bc69e98f242", - "md5": "5d5723ea1943215950ae0c96a11337e4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "apache-2.0", - "score": 92.86, - "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": [] - }, - { - "path": "openssl-1.1.0f/fuzz/asn1parse.c", - "type": "file", - "name": "asn1parse.c", - "base_name": "asn1parse", - "extension": ".c", - "date": "2017-05-25", - "size": 837, - "sha1": "0b5ce525458fda83a8b3a2a15d27674e26f71a89", - "md5": "1fd9e7ef550dc6267e219355946376d8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "apache-2.0", - "score": 92.86, - "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": [] - }, - { - "path": "openssl-1.1.0f/fuzz/bignum.c", - "type": "file", - "name": "bignum.c", - "base_name": "bignum", - "extension": ".c", - "date": "2017-05-25", - "size": 2396, - "sha1": "a17eb84388c0db6e0c5d239423c49d4c51bedaa2", - "md5": "0a9cfcd0fe6f67ee8cc02b3420397334", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "apache-2.0", - "score": 92.86, - "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": [] - }, - { - "path": "openssl-1.1.0f/fuzz/bndiv.c", - "type": "file", - "name": "bndiv.c", - "base_name": "bndiv", - "extension": ".c", - "date": "2017-05-25", - "size": 3089, - "sha1": "3448e61945d868210c86f130dcd51f36203c40de", - "md5": "9ca64a426974f0ab47e98d36b888d2b4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "apache-2.0", - "score": 92.86, - "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": [] - }, - { - "path": "openssl-1.1.0f/fuzz/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 3229, - "sha1": "201b88ef29bfcafae7c44e36b60fe2c76c1cdc5a", - "md5": "7fdd7501d4a5268f2ab7e41814229054", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/fuzz/cms.c", - "type": "file", - "name": "cms.c", - "base_name": "cms", - "extension": ".c", - "date": "2017-05-25", - "size": 837, - "sha1": "a7867f196b7a692b77bb587e0b104db17c2b3467", - "md5": "563142bda260525466118429dd7281e1", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "apache-2.0", - "score": 92.86, - "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": [] - }, - { - "path": "openssl-1.1.0f/fuzz/conf.c", - "type": "file", - "name": "conf.c", - "base_name": "conf", - "extension": ".c", - "date": "2017-05-25", - "size": 853, - "sha1": "70a526ca701c856f5a330b08fe9029d0ff6007db", - "md5": "167a86fad93e9a9069f77f12039de9ac", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "apache-2.0", - "score": 92.86, - "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": [] - }, - { - "path": "openssl-1.1.0f/fuzz/crl.c", - "type": "file", - "name": "crl.c", - "base_name": "crl", - "extension": ".c", - "date": "2017-05-25", - "size": 891, - "sha1": "bb785c21bfe362223ec05a16f4fd96dacf6700e8", - "md5": "6f908b07eb3eb5e1f7bd3ce394aec4a7", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "apache-2.0", - "score": 92.86, - "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": [] - }, - { - "path": "openssl-1.1.0f/fuzz/ct.c", - "type": "file", - "name": "ct.c", - "base_name": "ct", - "extension": ".c", - "date": "2017-05-25", - "size": 1000, - "sha1": "c343149b5fd75b86fae4c53c88789a67cf3f0198", - "md5": "e9b2385e67b64f4640143829ee50aa32", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "apache-2.0", - "score": 92.86, - "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": [] - }, - { - "path": "openssl-1.1.0f/fuzz/driver.c", - "type": "file", - "name": "driver.c", - "base_name": "driver", - "extension": ".c", - "date": "2017-05-25", - "size": 1147, - "sha1": "e5d62d9faee3bb76e141c5d948058bb2ef9881b9", - "md5": "22691243e630604b1a7f3aa7da972b88", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "apache-2.0", - "score": 92.86, - "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": [] - }, - { - "path": "openssl-1.1.0f/fuzz/fuzzer.h", - "type": "file", - "name": "fuzzer.h", - "base_name": "fuzzer", - "extension": ".h", - "date": "2017-05-25", - "size": 451, - "sha1": "305836a75f124e8a5ea3b70778a19d6b070791f6", - "md5": "5c1dc31139a014489dfe0c157112fd82", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "apache-2.0", - "score": 92.86, - "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": [] - }, - { - "path": "openssl-1.1.0f/fuzz/helper.py", - "type": "file", - "name": "helper.py", - "base_name": "helper", - "extension": ".py", - "date": "2017-05-25", - "size": 1357, - "sha1": "42d1922cb908a7a9a0b27932841d945f0efed094", - "md5": "a06e40e86f9aad25304cfc717cdf45a7", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/fuzz/README.md", - "type": "file", - "name": "README.md", - "base_name": "README", - "extension": ".md", - "date": "2017-05-25", - "size": 1804, - "sha1": "da27e95c203d4cdd85e99382c3c39e109fc8e9d3", - "md5": "ec1607d44f0170963469205eee9b29c0", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/fuzz/server.c", - "type": "file", - "name": "server.c", - "base_name": "server", - "extension": ".c", - "date": "2017-05-25", - "size": 14772, - "sha1": "98dedc878847432ce2e4475619aedc74d5ba41dc", - "md5": "e50e371e780b095c7b4dea9d69070fdd", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "apache-2.0", - "score": 92.86, - "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": [] - }, - { - "path": "openssl-1.1.0f/fuzz/test-corpus.c", - "type": "file", - "name": "test-corpus.c", - "base_name": "test-corpus", - "extension": ".c", - "date": "2017-05-25", - "size": 1176, - "sha1": "dedfdb31bd2746ad151e735338b83744ab151c77", - "md5": "239aac00919075413e6c24e9a8cc09b3", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "apache-2.0", - "score": 92.86, - "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": [] - }, - { - "path": "openssl-1.1.0f/fuzz/x509.c", - "type": "file", - "name": "x509.c", - "base_name": "x509", - "extension": ".c", - "date": "2017-05-25", - "size": 952, - "sha1": "2248ce80bfc2e78698ca28862a1cb580f77c2600", - "md5": "3a3691fdc82488cfc977f07566f99e55", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "apache-2.0", - "score": 92.86, - "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": [] - }, - { - "path": "openssl-1.1.0f/include/internal", - "type": "directory", - "name": "internal", - "base_name": "internal", - "extension": "", - "date": null, - "size": 30166, - "sha1": null, - "md5": null, - "files_count": 12, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/include/openssl", - "type": "directory", - "name": "openssl", - "base_name": "openssl", - "extension": "", - "date": null, - "size": 1232259, - "sha1": null, - "md5": null, - "files_count": 75, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/include/internal/asn1t.h", - "type": "file", - "name": "asn1t.h", - "base_name": "asn1t", - "extension": ".h", - "date": "2017-05-25", - "size": 565, - "sha1": "857fd5f28a5e88499e674f50252b8b6c1df9d7e9", - "md5": "c93bb92247ed8979e2ea18ee3c0c62f2", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/include/internal/bio.h", - "type": "file", - "name": "bio.h", - "base_name": "bio", - "extension": ".h", - "date": "2017-05-25", - "size": 794, - "sha1": "2c84c801bc06eae20924717b9bd08dd8f814b031", - "md5": "8ff584efb244ae8789083977aab6b26a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/include/internal/comp.h", - "type": "file", - "name": "comp.h", - "base_name": "comp", - "extension": ".h", - "date": "2017-05-25", - "size": 390, - "sha1": "ca8ab3c76924ce697e6a3dca9ea74b142a1a22cc", - "md5": "6552ecdea28adf6e2d27275445492d0b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/include/internal/conf.h", - "type": "file", - "name": "conf.h", - "base_name": "conf", - "extension": ".h", - "date": "2017-05-25", - "size": 666, - "sha1": "ccc4554877bcf54434cf37b1c54c30da097a3f79", - "md5": "47404248e82f15255e290550a430dc87", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 6274, - "sha1": "0d796e91f347e6d3977e9cd5106696c81d0b8410", - "md5": "bd7678e9a98e584523ed754bf78c5215", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/include/internal/dane.h", - "type": "file", - "name": "dane.h", - "base_name": "dane", - "extension": ".h", - "date": "2017-05-25", - "size": 3578, - "sha1": "46d983758786570fb7537c2090698f2cb437eb70", - "md5": "a5b206ba273d8efa359d08ab59549acb", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/include/internal/dso.h", - "type": "file", - "name": "dso.h", - "base_name": "dso", - "extension": ".h", - "date": "2017-05-25", - "size": 10792, - "sha1": "1dbac7f1ff2e38aeeb7d0c08fa747cffcdc124d0", - "md5": "b11c1797c7c8492895ab8ccacb0950f4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/include/internal/err.h", - "type": "file", - "name": "err.h", - "base_name": "err", - "extension": ".h", - "date": "2017-05-25", - "size": 418, - "sha1": "7bc6afcd4f1d7a77a115d0660e68df281cc6506b", - "md5": "3175492892671281ac93136021ca7575", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/include/internal/numbers.h", - "type": "file", - "name": "numbers.h", - "base_name": "numbers", - "extension": ".h", - "date": "2017-05-25", - "size": 1906, - "sha1": "82c8697696628483b08ee93304691e8788f319ef", - "md5": "0c539904105e5b5fb1e56c19899c62e9", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/include/internal/o_dir.h", - "type": "file", - "name": "o_dir.h", - "base_name": "o_dir", - "extension": ".h", - "date": "2017-05-25", - "size": 2418, - "sha1": "9dd27c35c68ef8fadb448b9921201de673f58907", - "md5": "0562d7205241cf0d1dce9e1bbf3875d1", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [] - }, - { - "path": "openssl-1.1.0f/include/internal/o_str.h", - "type": "file", - "name": "o_str.h", - "base_name": "o_str", - "extension": ".h", - "date": "2017-05-25", - "size": 505, - "sha1": "40a688efa6cb9051f3de58e129cc2df0e2319720", - "md5": "afa55612afca86d1bca0edec9066ab71", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/include/internal/thread_once.h", - "type": "file", - "name": "thread_once.h", - "base_name": "thread_once", - "extension": ".h", - "date": "2017-05-25", - "size": 1860, - "sha1": "c218c67cc68a44b79145cb78133a60c1c2bf4d51", - "md5": "5781800fe884416da65fe3eb3969510a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/aes.h", - "type": "file", - "name": "aes.h", - "base_name": "aes", - "extension": ".h", - "date": "2017-05-25", - "size": 3349, - "sha1": "fd01d7b1fa7929906db7486943e3c68510794d01", - "md5": "1fe491c6755e6f1014a9b9704ce9bf5b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/asn1.h", - "type": "file", - "name": "asn1.h", - "base_name": "asn1", - "extension": ".h", - "date": "2017-05-25", - "size": 46411, - "sha1": "3df405ed1c9876d25551b732f9c2985ecbf1fdf6", - "md5": "ab597a58ec068ea57ea813e0cca691c4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/asn1t.h", - "type": "file", - "name": "asn1t.h", - "base_name": "asn1t", - "extension": ".h", - "date": "2017-05-25", - "size": 32502, - "sha1": "4642be4516e5af219da061da7b4edfa948bd590e", - "md5": "0ed00c886623e13ef3bb34b5156d4968", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 62.69, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 62.69, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 62.69, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/asn1_mac.h", - "type": "file", - "name": "asn1_mac.h", - "base_name": "asn1_mac", - "extension": ".h", - "date": "2017-05-25", - "size": 395, - "sha1": "9fe8dd066ed9109c09862222a25b15bf109ad34c", - "md5": "926348f025372ccacaf16c663b051aec", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/async.h", - "type": "file", - "name": "async.h", - "base_name": "async", - "extension": ".h", - "date": "2017-05-25", - "size": 3292, - "sha1": "e05991d4dbc495c5a65b4a86b1827e21144563ab", - "md5": "3c60c8fa0b456dc2a4440de7f155446b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/bio.h", - "type": "file", - "name": "bio.h", - "base_name": "bio", - "extension": ".h", - "date": "2017-05-25", - "size": 37643, - "sha1": "f659c04eb00fbcce6931b936d90c78425ec18d43", - "md5": "c50c13bc5f3434c33e052b39711e451b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/blowfish.h", - "type": "file", - "name": "blowfish.h", - "base_name": "blowfish", - "extension": ".h", - "date": "2017-05-25", - "size": 1847, - "sha1": "04ba89a4b5829781a5d0347858ed25ba8ca2c4c8", - "md5": "7e7efd03e9788db2a80ec3b86c50ccd7", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/bn.h", - "type": "file", - "name": "bn.h", - "base_name": "bn", - "extension": ".h", - "date": "2017-05-25", - "size": 24932, - "sha1": "f77d49e9cd4c0263872d50f999f09cc80a941f11", - "md5": "db31c0ebc3cab0b94f1512f1e594647b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 58.33, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 58.33, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 58.33, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/buffer.h", - "type": "file", - "name": "buffer.h", - "base_name": "buffer", - "extension": ".h", - "date": "2017-05-25", - "size": 2095, - "sha1": "c3c9597f1807537e1737c3c58da9a540850f42f1", - "md5": "a297b7b91c282e92d733b418ca49ce71", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/camellia.h", - "type": "file", - "name": "camellia.h", - "base_name": "camellia", - "extension": ".h", - "date": "2017-05-25", - "size": 3179, - "sha1": "4747317d07b854c7a37f0fc50675798e5ad3c52f", - "md5": "3cbdd1cd1b3c842d31bef989e630402c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/cast.h", - "type": "file", - "name": "cast.h", - "base_name": "cast", - "extension": ".h", - "date": "2017-05-25", - "size": 1674, - "sha1": "b60f5fc1e2b295dd8c1797358b0eec121e5bb433", - "md5": "4ccd1f55ecd549e61aaba7b49ca05d25", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/cmac.h", - "type": "file", - "name": "cmac.h", - "base_name": "cmac", - "extension": ".h", - "date": "2017-05-25", - "size": 1064, - "sha1": "4ac7c970fbe73b7459ee2f90c967aec8806816be", - "md5": "6f3232824538b358381945b2898a47f4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/cms.h", - "type": "file", - "name": "cms.h", - "base_name": "cms", - "extension": ".h", - "date": "2017-05-25", - "size": 26518, - "sha1": "70560813453f96eb5db4e4c8cd88e0bb7a92be87", - "md5": "4944b7455f37fe8815a22c7ae5743b75", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/comp.h", - "type": "file", - "name": "comp.h", - "base_name": "comp", - "extension": ".h", - "date": "2017-05-25", - "size": 2033, - "sha1": "c3faf61ab35d62fb21f70a69abb2bfaff0a037f9", - "md5": "bdefe8c3473874ef6d6869119554a957", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/conf.h", - "type": "file", - "name": "conf.h", - "base_name": "conf", - "extension": ".h", - "date": "2017-05-25", - "size": 8073, - "sha1": "9a259eb75530cdfdc58eb1e4dc95e4b02f5d802c", - "md5": "b0e359219960aa0a850bcc0116f6a7b9", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/conf_api.h", - "type": "file", - "name": "conf_api.h", - "base_name": "conf_api", - "extension": ".h", - "date": "2017-05-25", - "size": 1300, - "sha1": "684908ecc08d24667e489c6ce75e2e318d685b7b", - "md5": "829179180a4cb85b2ad608c4cc28bf06", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/crypto.h", - "type": "file", - "name": "crypto.h", - "base_name": "crypto", - "extension": ".h", - "date": "2017-05-25", - "size": 17787, - "sha1": "5bed6b655b7a9573c44c0f7a3bbc0ef2ff438c8a", - "md5": "3030a554e6d2fb1852d87b1c529e1cc8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "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": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/ct.h", - "type": "file", - "name": "ct.h", - "base_name": "ct", - "extension": ".h", - "date": "2017-05-25", - "size": 18985, - "sha1": "3bb3c80adf92004e8108c02f8c043ad545895d05", - "md5": "03bf116462712da19aabb257fe22cc63", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/des.h", - "type": "file", - "name": "des.h", - "base_name": "des", - "extension": ".h", - "date": "2017-05-25", - "size": 7627, - "sha1": "ce73b0ff456ad81d50590e5097248010892b7701", - "md5": "38e6b1b2fdcc4367bd308e973a4247a3", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/dh.h", - "type": "file", - "name": "dh.h", - "base_name": "dh", - "extension": ".h", - "date": "2017-05-25", - "size": 14661, - "sha1": "3b0e901c5bdb6fbf5869c6d8df65939fbd079c53", - "md5": "6262d1d951c2048cd0b10c943af5ed5d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/dsa.h", - "type": "file", - "name": "dsa.h", - "base_name": "dsa", - "extension": ".h", - "date": "2017-05-25", - "size": 11773, - "sha1": "76ed0e972eb456ace437bd2b8f5756e7a4203f1f", - "md5": "ee9868775b10c19dcbf98c9900bf653e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "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": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/dtls1.h", - "type": "file", - "name": "dtls1.h", - "base_name": "dtls1", - "extension": ".h", - "date": "2017-05-25", - "size": 1616, - "sha1": "dd10faf8cf8f3d9faa44a45655dd796fb6480670", - "md5": "4a07ac235fe9e38f5698dc32ca8501b3", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/ebcdic.h", - "type": "file", - "name": "ebcdic.h", - "base_name": "ebcdic", - "extension": ".h", - "date": "2017-05-25", - "size": 924, - "sha1": "cf9167f536cf690a3cce863e530a3f952afd489f", - "md5": "9a0ab751702219dec33afc302f43b147", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/ec.h", - "type": "file", - "name": "ec.h", - "base_name": "ec", - "extension": ".h", - "date": "2017-05-25", - "size": 70378, - "sha1": "67089c8888ac32d02343ae150d6702144df53b62", - "md5": "6510c05069fdefe2176d6ae9cd937548", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 58.33, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 58.33, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 58.33, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/ecdh.h", - "type": "file", - "name": "ecdh.h", - "base_name": "ecdh", - "extension": ".h", - "date": "2017-05-25", - "size": 358, - "sha1": "89752ac2395c5c28b1da2d7e4ffcd7455e0f535f", - "md5": "a31fd955a1012e150f038b98feff2a60", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/ecdsa.h", - "type": "file", - "name": "ecdsa.h", - "base_name": "ecdsa", - "extension": ".h", - "date": "2017-05-25", - "size": 358, - "sha1": "89752ac2395c5c28b1da2d7e4ffcd7455e0f535f", - "md5": "a31fd955a1012e150f038b98feff2a60", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/engine.h", - "type": "file", - "name": "engine.h", - "base_name": "engine", - "extension": ".h", - "date": "2017-05-25", - "size": 39584, - "sha1": "7f8dcff4d684e074e816af6a03df91307c2cc661", - "md5": "ae0d349e354733aa742b28f86f87ac26", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/err.h", - "type": "file", - "name": "err.h", - "base_name": "err", - "extension": ".h", - "date": "2017-05-25", - "size": 10636, - "sha1": "f42069ff7cde56af0518d6ab228f44ec6704257f", - "md5": "3f2065f67d5c672b0376670b7ce965d3", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/evp.h", - "type": "file", - "name": "evp.h", - "base_name": "evp", - "extension": ".h", - "date": "2017-05-25", - "size": 74604, - "sha1": "c587f9d9a3ebd62b0b01167b1df0cf4fb874d9ed", - "md5": "6c9316f451a93d14138bacfeea07be98", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/e_os2.h", - "type": "file", - "name": "e_os2.h", - "base_name": "e_os2", - "extension": ".h", - "date": "2017-05-25", - "size": 8950, - "sha1": "27aa6dade6a2b2cede477b6e7c0b5d897d1fe36b", - "md5": "1bf114a514184afb378951fd6e91b4c2", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/hmac.h", - "type": "file", - "name": "hmac.h", - "base_name": "hmac", - "extension": ".h", - "date": "2017-05-25", - "size": 1553, - "sha1": "a30c85a6cd906922e84c150b1adea71546920363", - "md5": "1892cba22b3720f8cc3a571b2023d6b2", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/idea.h", - "type": "file", - "name": "idea.h", - "base_name": "idea", - "extension": ".h", - "date": "2017-05-25", - "size": 2099, - "sha1": "f4e85f1a33444625a6f886856678379a3ef86bbd", - "md5": "89bb79567ff1d3e8b087add0dce79651", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/kdf.h", - "type": "file", - "name": "kdf.h", - "base_name": "kdf", - "extension": ".h", - "date": "2017-05-25", - "size": 2842, - "sha1": "f767d44adb9c06ad59d340cdd5659d1a2fbdea19", - "md5": "566a6bc126609b976c1e2a7eacd02aa0", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/lhash.h", - "type": "file", - "name": "lhash.h", - "base_name": "lhash", - "extension": ".h", - "date": "2017-05-25", - "size": 8145, - "sha1": "f7f0deb1cf5900f82309c0dd6f7be56716bfa33d", - "md5": "d791e3c94265699f81f37a62b222a905", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/md2.h", - "type": "file", - "name": "md2.h", - "base_name": "md2", - "extension": ".h", - "date": "2017-05-25", - "size": 1054, - "sha1": "494e60fa1147f0a5c9c12125504eaa9f3f3c5db4", - "md5": "261ca3b3b8b40bc2ea7273e5534ccc88", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/md4.h", - "type": "file", - "name": "md4.h", - "base_name": "md4", - "extension": ".h", - "date": "2017-05-25", - "size": 1322, - "sha1": "35599855d5da1521f2969449461e762d4a920086", - "md5": "c0080b025a91c0730a3b55f53f33cf7c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/md5.h", - "type": "file", - "name": "md5.h", - "base_name": "md5", - "extension": ".h", - "date": "2017-05-25", - "size": 1320, - "sha1": "f11d9d89db381c679cd01b89e518e7234b0d02ab", - "md5": "a05b534a22be4a2ee377ddd19994a5af", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/mdc2.h", - "type": "file", - "name": "mdc2.h", - "base_name": "mdc2", - "extension": ".h", - "date": "2017-05-25", - "size": 1053, - "sha1": "71e3f990ee603890c9192ec7ac3463a56586da2e", - "md5": "461fae96a1e2f8cd641753ad59e3bcd9", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/modes.h", - "type": "file", - "name": "modes.h", - "base_name": "modes", - "extension": ".h", - "date": "2017-05-25", - "size": 10415, - "sha1": "b8f61f0c20ff791684307c0b7f5e8837b4400fc5", - "md5": "4defb9676e8e27d820721a68dc15731f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/objects.h", - "type": "file", - "name": "objects.h", - "base_name": "objects", - "extension": ".h", - "date": "2017-05-25", - "size": 44811, - "sha1": "626439a29447faf9e5ad764b58c92d369b6b064c", - "md5": "0c49b2c288291fcd6e13ae4fd7c1a747", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/obj_mac.h", - "type": "file", - "name": "obj_mac.h", - "base_name": "obj_mac", - "extension": ".h", - "date": "2017-05-25", - "size": 191201, - "sha1": "2922bc46d66966eaf1c43f5bddaf283ad1adc7d3", - "md5": "18213a5f8b5d977e56a7356fee616e5e", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/ocsp.h", - "type": "file", - "name": "ocsp.h", - "base_name": "ocsp", - "extension": ".h", - "date": "2017-05-25", - "size": 18411, - "sha1": "45ea589fff61b044d96190e2939e2fbd4c184d7a", - "md5": "05f417f96d4f685dda0a278d7091810e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/opensslconf.h.in", - "type": "file", - "name": "opensslconf.h.in", - "base_name": "opensslconf.h", - "extension": ".in", - "date": "2017-05-25", - "size": 3788, - "sha1": "180a32a0ab89110c04081b741213780e52e9b6f4", - "md5": "3ce5e4faa89d296061fb459a61109a55", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/opensslv.h", - "type": "file", - "name": "opensslv.h", - "base_name": "opensslv", - "extension": ".h", - "date": "2017-05-25", - "size": 4208, - "sha1": "35de136b4233ca4f1aa3225dc71e88a23f12e643", - "md5": "eec5a4fe33cf2e6fbb7046f3c793884b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/ossl_typ.h", - "type": "file", - "name": "ossl_typ.h", - "base_name": "ossl_typ", - "extension": ".h", - "date": "2017-05-25", - "size": 6023, - "sha1": "ff966db873a1f75a49cfad6b87f20a91f79d8ade", - "md5": "ec6d5cdc7aebaaa748f916ec6b48ae89", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/pem.h", - "type": "file", - "name": "pem.h", - "base_name": "pem", - "extension": ".h", - "date": "2017-05-25", - "size": 20680, - "sha1": "0cf3ee9567cdd1835a17f0ce8ef5fdfdea58ac18", - "md5": "a5b33e4781e6ae6cf776ba24f39b81ab", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/pem2.h", - "type": "file", - "name": "pem2.h", - "base_name": "pem2", - "extension": ".h", - "date": "2017-05-25", - "size": 463, - "sha1": "bb2e30938214a7e2c96eed29725e47b384e86ad2", - "md5": "f0a13efb9110714b1f8fa41c409245b4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/pkcs12.h", - "type": "file", - "name": "pkcs12.h", - "base_name": "pkcs12", - "extension": ".h", - "date": "2017-05-25", - "size": 12999, - "sha1": "77c65fbdbd68b6f7f490b150345baa983c61262c", - "md5": "5f9176a464d06ebe341dce86b8d4d337", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/pkcs7.h", - "type": "file", - "name": "pkcs7.h", - "base_name": "pkcs7", - "extension": ".h", - "date": "2017-05-25", - "size": 16331, - "sha1": "35479eb06f57411be37ac4592f84d97599411d56", - "md5": "84a79bd5e5c7303081c75378698da6ec", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/rand.h", - "type": "file", - "name": "rand.h", - "base_name": "rand", - "extension": ".h", - "date": "2017-05-25", - "size": 2634, - "sha1": "c3d0909e9fc2ee0f2c44fb4fdd021e6eac4b1122", - "md5": "2eb9376e32c8e3ed73e25e7985f2ef5c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/rc2.h", - "type": "file", - "name": "rc2.h", - "base_name": "rc2", - "extension": ".h", - "date": "2017-05-25", - "size": 1534, - "sha1": "5f3c2fc758afe16df9925c560a9c91477e7f5307", - "md5": "f99acbe6bb832ddcdafff758d719e8e2", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/rc4.h", - "type": "file", - "name": "rc4.h", - "base_name": "rc4", - "extension": ".h", - "date": "2017-05-25", - "size": 825, - "sha1": "d35987dfdbfca6f5c877307737fddb9f4b89c15b", - "md5": "adacdb0815ebd6ba4b14354255971086", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/rc5.h", - "type": "file", - "name": "rc5.h", - "base_name": "rc5", - "extension": ".h", - "date": "2017-05-25", - "size": 1988, - "sha1": "9d531d34575b3a17a24b33508c9e6ff762ef1262", - "md5": "abf58bf4c91faf041a4b94d94060a7d3", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/ripemd.h", - "type": "file", - "name": "ripemd.h", - "base_name": "ripemd", - "extension": ".h", - "date": "2017-05-25", - "size": 1243, - "sha1": "5143555c6514d549ec1a95e2bc8ce973f672150b", - "md5": "32f0286704f206769249aed9182bdcf2", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/rsa.h", - "type": "file", - "name": "rsa.h", - "base_name": "rsa", - "extension": ".h", - "date": "2017-05-25", - "size": 27404, - "sha1": "1f87726ff16f2d9928949a23ce827aacefaaf7bf", - "md5": "f64b58123371795c837c28aa4c8d570b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/safestack.h", - "type": "file", - "name": "safestack.h", - "base_name": "safestack", - "extension": ".h", - "date": "2017-05-25", - "size": 6300, - "sha1": "f0e9fd911f44d70663c45f6bb1aeb8701fcc9904", - "md5": "b78f71932c8cb866e117fdacf5282134", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/seed.h", - "type": "file", - "name": "seed.h", - "base_name": "seed", - "extension": ".h", - "date": "2017-05-25", - "size": 3518, - "sha1": "57e8b670cf2e4f4f2f9e499f9ef16c38a2405709", - "md5": "450cee303355eaa1fe735c831528468b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": 98.34, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.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_66.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 KISA Korea Information" - ], - "holders": [], - "authors": [], - "start_line": 11, - "end_line": 11 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/sha.h", - "type": "file", - "name": "sha.h", - "base_name": "sha", - "extension": ".h", - "date": "2017-05-25", - "size": 3831, - "sha1": "96ed47038a1d226b3238037abdc0ca6873b132b7", - "md5": "b9e5afb99b7becb95f2bbcdf1339e953", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/srp.h", - "type": "file", - "name": "srp.h", - "base_name": "srp", - "extension": ".h", - "date": "2017-05-25", - "size": 3672, - "sha1": "55340d877e572f1cd3fb0ab07909df093ad2a8a0", - "md5": "deaff141b295a4a45aebd0565b9de4e2", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/srtp.h", - "type": "file", - "name": "srtp.h", - "base_name": "srtp", - "extension": ".h", - "date": "2017-05-25", - "size": 1316, - "sha1": "6fa02a5c501c7cacd848d2c9ae46b3d35f45d753", - "md5": "46d9445631593c865f391739cda815d8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/ssl.h", - "type": "file", - "name": "ssl.h", - "base_name": "ssl", - "extension": ".h", - "date": "2017-05-25", - "size": 124454, - "sha1": "7e3dc61b9a19d446d4e15754c590d94d8adfaf0e", - "md5": "b8d1b3d6fb1b477bc54072cfc634c38e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "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": [], - "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": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/ssl2.h", - "type": "file", - "name": "ssl2.h", - "base_name": "ssl2", - "extension": ".h", - "date": "2017-05-25", - "size": 542, - "sha1": "654045f73cd0aff1274b1f611f42420741133fcb", - "md5": "29861f974e3256592642e226c80c8a5b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/ssl3.h", - "type": "file", - "name": "ssl3.h", - "base_name": "ssl3", - "extension": ".h", - "date": "2017-05-25", - "size": 13014, - "sha1": "dc9b43c2ecf17e77d995acc5d121aaf0109509f3", - "md5": "98d310c8cb4e6065f3be0024957e92f9", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "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": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/stack.h", - "type": "file", - "name": "stack.h", - "base_name": "stack", - "extension": ".h", - "date": "2017-05-25", - "size": 2860, - "sha1": "4cce6174cfcd6f3b0f69291a2afb9d0990796e22", - "md5": "8a731a19d4b9260097351af4fad6f31d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/symhacks.h", - "type": "file", - "name": "symhacks.h", - "base_name": "symhacks", - "extension": ".h", - "date": "2017-05-25", - "size": 2076, - "sha1": "4d8629fff89ff39ab0f81507650178632d50a336", - "md5": "7a5c282616cc5c37f1b55876fdc92161", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/tls1.h", - "type": "file", - "name": "tls1.h", - "base_name": "tls1", - "extension": ".h", - "date": "2017-05-25", - "size": 49487, - "sha1": "7c4e8fcc2570f889c4231876f26d46fe4a90e1fa", - "md5": "9374db567f2a48cee48beb33f37b2952", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 58.33, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 58.33, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 58.33, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [], - "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": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/ts.h", - "type": "file", - "name": "ts.h", - "base_name": "ts", - "extension": ".h", - "date": "2017-05-25", - "size": 27348, - "sha1": "6bad06788e2bb0e49200974f67a456708e3fc45a", - "md5": "93351f356de373b950a18bf88ac95ac4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/txt_db.h", - "type": "file", - "name": "txt_db.h", - "base_name": "txt_db", - "extension": ".h", - "date": "2017-05-25", - "size": 1662, - "sha1": "7e6cdb876a29373e4bf16e95f5cd214177b9e55a", - "md5": "7c8c5770a233de69adafe44baba47a58", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/ui.h", - "type": "file", - "name": "ui.h", - "base_name": "ui", - "extension": ".h", - "date": "2017-05-25", - "size": 16856, - "sha1": "932edcf7209803f75c3bddf5e2f37a1177bfa64b", - "md5": "a2b19ac1d2ca71f87b12b8142b08f74d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/whrlpool.h", - "type": "file", - "name": "whrlpool.h", - "base_name": "whrlpool", - "extension": ".h", - "date": "2017-05-25", - "size": 1377, - "sha1": "528d0afdd195aa1b11528afff0216999635aa076", - "md5": "a8b0d0f09b12792cba263c2972b66a0d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/x509.h", - "type": "file", - "name": "x509.h", - "base_name": "x509", - "extension": ".h", - "date": "2017-05-25", - "size": 47982, - "sha1": "b37191e3dbf4ef29f3e19671377207704ad9fa6d", - "md5": "741a89f581519a5a852a579e103409e4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "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": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/x509v3.h", - "type": "file", - "name": "x509v3.h", - "base_name": "x509v3", - "extension": ".h", - "date": "2017-05-25", - "size": 38262, - "sha1": "30ee2266d0f2a69b693aab076e0359686ff8b54e", - "md5": "c3d258eba96c1be8ff92a044da23b3f2", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/include/openssl/x509_vfy.h", - "type": "file", - "name": "x509_vfy.h", - "base_name": "x509_vfy", - "extension": ".h", - "date": "2017-05-25", - "size": 27625, - "sha1": "e884db730b3a9674a46cd73c2e9cf40471e9883a", - "md5": "3cf7282754f67c87ac475a18ec078b7f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 556, - "sha1": "5f848946189b2808fdbd730c811650361aeef9c3", - "md5": "a06e40cc4176b1cbe4c30cd57b4cb72f", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 627, - "sha1": "596a3e43a62a89a3721cdc0ca3c4d45654897000", - "md5": "a29d554c45941209edb31401032531d3", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/ms/applink.c", - "type": "file", - "name": "applink.c", - "base_name": "applink", - "extension": ".c", - "date": "2017-05-25", - "size": 3508, - "sha1": "c764e8954385160b38f58b311c821c0232fae75a", - "md5": "cbea35e9cc59c24f7b8a4430c976ef36", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/ms/cmp.pl", - "type": "file", - "name": "cmp.pl", - "base_name": "cmp", - "extension": ".pl", - "date": "2017-05-25", - "size": 1194, - "sha1": "b272c91ccba5a3492b0fa4b1aee7422c92ca6468", - "md5": "2b92c027ff8e83870ae145db49f48871", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/ms/segrenam.pl", - "type": "file", - "name": "segrenam.pl", - "base_name": "segrenam", - "extension": ".pl", - "date": "2017-05-25", - "size": 2744, - "sha1": "04db5c2bbddffc6abd3c7ad579993525f7a885fe", - "md5": "8c3a55b9657d4a4b42caf7ab3a78ddcd", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/ms/tlhelp32.h", - "type": "file", - "name": "tlhelp32.h", - "base_name": "tlhelp32", - "extension": ".h", - "date": "2017-05-25", - "size": 4405, - "sha1": "1314d24695d6bb6436cb1b0dcfc7db0ea117f5ad", - "md5": "d3c289b50a51f988183d38daffe48844", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "lgpl-2.1", - "score": 100.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": 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": [] - }, - { - "path": "openssl-1.1.0f/ms/uplink-common.pl", - "type": "file", - "name": "uplink-common.pl", - "base_name": "uplink-common", - "extension": ".pl", - "date": "2017-05-25", - "size": 1109, - "sha1": "5a8582b6bcc4aac6b8c4ca2a776cdcbf733c3920", - "md5": "0b5c99ee5d834b210a8e5d7b8ba03f4c", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/ms/uplink-ia64.pl", - "type": "file", - "name": "uplink-ia64.pl", - "base_name": "uplink-ia64", - "extension": ".pl", - "date": "2017-05-25", - "size": 1411, - "sha1": "93f617bb4053c3ff0bbc7cae7e96427e9e118079", - "md5": "b0e4663cb3f75086ed4579f59515c50a", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/ms/uplink-x86.pl", - "type": "file", - "name": "uplink-x86.pl", - "base_name": "uplink-x86", - "extension": ".pl", - "date": "2017-05-25", - "size": 1067, - "sha1": "8d2af9e276813c558028be11ccbea731e67bcdc0", - "md5": "483b130bf484397008fd23a2ad957e38", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/ms/uplink-x86_64.pl", - "type": "file", - "name": "uplink-x86_64.pl", - "base_name": "uplink-x86_64", - "extension": ".pl", - "date": "2017-05-25", - "size": 1523, - "sha1": "6237db8b1e9a70b8f7a4b28d497b6c694834e64d", - "md5": "a7a4437f7667c3d07223b3e0e08a0a33", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/ms/uplink.c", - "type": "file", - "name": "uplink.c", - "base_name": "uplink", - "extension": ".c", - "date": "2017-05-25", - "size": 4090, - "sha1": "7a6759f97282c77ad615eddfc4d644cc48719afa", - "md5": "5bcb20ee6bf7b2a76664c69d5a4ce413", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/ms/uplink.h", - "type": "file", - "name": "uplink.h", - "base_name": "uplink", - "extension": ".h", - "date": "2017-05-25", - "size": 2230, - "sha1": "fdfe733a4be9dcf36a1fcac2f3648be3284450f2", - "md5": "3fd95e82fd2ac67b9cf3dd0ef010b315", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/os-dep/haiku.h", - "type": "file", - "name": "haiku.h", - "base_name": "haiku", - "extension": ".h", - "date": "2017-05-25", - "size": 46, - "sha1": "719c72789228b8acf94f63f36c5d48f99840b5f7", - "md5": "de120cca30b30c0019615acf513f0048", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/ssl/bio_ssl.c", - "type": "file", - "name": "bio_ssl.c", - "base_name": "bio_ssl", - "extension": ".c", - "date": "2017-05-25", - "size": 13664, - "sha1": "25f4afa0ba151472f9b511eae01664eaeff9151d", - "md5": "25e93078a88c8390b2fe1faa1dcb1082", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/ssl/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 657, - "sha1": "020fa9311b5ec19a723c42966372baecadad2bb3", - "md5": "8278032cfc54745f779d3397e211e2fe", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/ssl/d1_lib.c", - "type": "file", - "name": "d1_lib.c", - "base_name": "d1_lib", - "extension": ".c", - "date": "2017-05-25", - "size": 32359, - "sha1": "f00184b7829b7047206a3fd9fc0cb7047b2ba4de", - "md5": "7940093744d4c2219e2e06eafcb66d21", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/ssl/d1_msg.c", - "type": "file", - "name": "d1_msg.c", - "base_name": "d1_msg", - "extension": ".c", - "date": "2017-05-25", - "size": 2435, - "sha1": "752112ca3f3936bffd71a302b193c0d975d0956c", - "md5": "035b35b68afc2b2580213ac9d191f3ac", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/ssl/d1_srtp.c", - "type": "file", - "name": "d1_srtp.c", - "base_name": "d1_srtp", - "extension": ".c", - "date": "2017-05-25", - "size": 8794, - "sha1": "b348fade860b5e1275163192c99924d390854c14", - "md5": "6a1fb01c420b622777603eaaf28500e0", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/ssl/methods.c", - "type": "file", - "name": "methods.c", - "base_name": "methods", - "extension": ".c", - "date": "2017-05-25", - "size": 8239, - "sha1": "0fc9697c4f72fb718736c4aa1c6298c73908860e", - "md5": "dc4441728e48388785a50f6b840cb755", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/ssl/packet_locl.h", - "type": "file", - "name": "packet_locl.h", - "base_name": "packet_locl", - "extension": ".h", - "date": "2017-05-25", - "size": 15690, - "sha1": "d2c518fd94db2089751b98d8afdbd66e7baa01c6", - "md5": "f6f60a99a82f8e843cca80731635e222", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/ssl/pqueue.c", - "type": "file", - "name": "pqueue.c", - "base_name": "pqueue", - "extension": ".c", - "date": "2017-05-25", - "size": 2879, - "sha1": "aaa5894976dc7dddc003f0e7c44516fdffb9dfe8", - "md5": "fe72c53b9b43a7813d6ae8c69d0144ed", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/ssl/s3_cbc.c", - "type": "file", - "name": "s3_cbc.c", - "base_name": "s3_cbc", - "extension": ".c", - "date": "2017-05-25", - "size": 19837, - "sha1": "de16a74b7675bff3157654cd14300e1e79ccb4e1", - "md5": "7b52a568cb1c591238325edae9ec2211", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/ssl/s3_enc.c", - "type": "file", - "name": "s3_enc.c", - "base_name": "s3_enc", - "extension": ".c", - "date": "2017-05-25", - "size": 16971, - "sha1": "74697102220ac03f1efed749cc8c919f64d24eb9", - "md5": "bf66549bbb8b4f307b183cd6605564b0", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 67.74, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 67.74, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 67.74, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [], - "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": [] - }, - { - "path": "openssl-1.1.0f/ssl/s3_lib.c", - "type": "file", - "name": "s3_lib.c", - "base_name": "s3_lib", - "extension": ".c", - "date": "2017-05-25", - "size": 104428, - "sha1": "6db5b7f2d40db066f2d592756c402b4361caa7d8", - "md5": "f74ae49d88ee547a7eb8864d305c3e52", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 58.33, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 58.33, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 58.33, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [], - "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": [] - }, - { - "path": "openssl-1.1.0f/ssl/s3_msg.c", - "type": "file", - "name": "s3_msg.c", - "base_name": "s3_msg", - "extension": ".c", - "date": "2017-05-25", - "size": 3917, - "sha1": "6d6033e09926336cd29df24ad6c29d26f86a1a6f", - "md5": "c5d6ded136f2cd09eac92aaa2196bb89", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/ssl/ssl_asn1.c", - "type": "file", - "name": "ssl_asn1.c", - "base_name": "ssl_asn1", - "extension": ".c", - "date": "2017-05-25", - "size": 11247, - "sha1": "cee9d12838d7b3423169173bdb55a62985f785d3", - "md5": "e0c4294dd689d475be84aafbbdf0e562", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 67.74, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 67.74, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 67.74, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [], - "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": [] - }, - { - "path": "openssl-1.1.0f/ssl/ssl_cert.c", - "type": "file", - "name": "ssl_cert.c", - "base_name": "ssl_cert", - "extension": ".c", - "date": "2017-05-25", - "size": 31267, - "sha1": "27065c9d74bbda1268e7ca640c7627dc2f44b09f", - "md5": "b48958bcd8572075e89f949008168495", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "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": [] - }, - { - "path": "openssl-1.1.0f/ssl/ssl_ciph.c", - "type": "file", - "name": "ssl_ciph.c", - "base_name": "ssl_ciph", - "extension": ".c", - "date": "2017-05-25", - "size": 61853, - "sha1": "4f996a2aea2325b2a98961f97a7b262ae7b4b5ee", - "md5": "fd1fcb2b01791421975a6fd006863ec6", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "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": [], - "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": [] - }, - { - "path": "openssl-1.1.0f/ssl/ssl_conf.c", - "type": "file", - "name": "ssl_conf.c", - "base_name": "ssl_conf", - "extension": ".c", - "date": "2017-05-25", - "size": 26893, - "sha1": "c1a716d8c8a88dd5ce944e382ae47ac9840161c2", - "md5": "f0c489071b3b7ab11fff043125b353e2", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/ssl/ssl_err.c", - "type": "file", - "name": "ssl_err.c", - "base_name": "ssl_err", - "extension": ".c", - "date": "2017-05-25", - "size": 36764, - "sha1": "615d9d26cf71e2b09aca681a0635ee54548d7f23", - "md5": "840e4064ac69ba618d5bb58dc56a4995", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/ssl/ssl_init.c", - "type": "file", - "name": "ssl_init.c", - "base_name": "ssl_init", - "extension": ".c", - "date": "2017-05-25", - "size": 6302, - "sha1": "2af2928e95a1c38b2e3c2e01c1e8ec6cc0b6df36", - "md5": "9a6f16ab03891b4ef940b3f48709deda", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/ssl/ssl_lib.c", - "type": "file", - "name": "ssl_lib.c", - "base_name": "ssl_lib", - "extension": ".c", - "date": "2017-05-25", - "size": 121216, - "sha1": "54bd6536ae2adef314ce0c812015a7765a461b22", - "md5": "54ad8adf241fd5f6e8c59480057ae4f5", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "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": [], - "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": [] - }, - { - "path": "openssl-1.1.0f/ssl/ssl_locl.h", - "type": "file", - "name": "ssl_locl.h", - "base_name": "ssl_locl", - "extension": ".h", - "date": "2017-05-25", - "size": 83405, - "sha1": "d87a4e0a06dca678f858d7ca1c9aab777a858d90", - "md5": "a4d60f3985034dfd47260fbdcd26e1c9", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "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": [], - "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": [] - }, - { - "path": "openssl-1.1.0f/ssl/ssl_mcnf.c", - "type": "file", - "name": "ssl_mcnf.c", - "base_name": "ssl_mcnf", - "extension": ".c", - "date": "2017-05-25", - "size": 5990, - "sha1": "1b1f33113678ed96c5911d3fde258dddde6896f6", - "md5": "1007870cc09c13818ea2c82592ae29a2", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/ssl/ssl_rsa.c", - "type": "file", - "name": "ssl_rsa.c", - "base_name": "ssl_rsa", - "extension": ".c", - "date": "2017-05-25", - "size": 27700, - "sha1": "bf104ea2237e071427376697b6661a95db3266f8", - "md5": "0c1ce7ee8925e63ba9c0449f1a0dd154", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/ssl/ssl_sess.c", - "type": "file", - "name": "ssl_sess.c", - "base_name": "ssl_sess", - "extension": ".c", - "date": "2017-05-25", - "size": 36625, - "sha1": "d8b4750321677624e467bbfe8b298e4e232dda67", - "md5": "14d6836a3238960533cacd67f61bbdb1", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 67.74, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 67.74, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 67.74, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [], - "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": [] - }, - { - "path": "openssl-1.1.0f/ssl/ssl_stat.c", - "type": "file", - "name": "ssl_stat.c", - "base_name": "ssl_stat", - "extension": ".c", - "date": "2017-05-25", - "size": 11252, - "sha1": "3f6ebfa41d63f895a32b0f3d182743c1094936ad", - "md5": "6f5457b5897dbd9b142b5390fffe50b0", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 67.74, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 67.74, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 67.74, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [], - "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": [] - }, - { - "path": "openssl-1.1.0f/ssl/ssl_txt.c", - "type": "file", - "name": "ssl_txt.c", - "base_name": "ssl_txt", - "extension": ".c", - "date": "2017-05-25", - "size": 6845, - "sha1": "e8fd5647af99865b70a3dc28133a887536ee06bf", - "md5": "ef33ed347c841110d3894153520ae739", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 67.74, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 67.74, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 67.74, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [], - "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": [] - }, - { - "path": "openssl-1.1.0f/ssl/ssl_utst.c", - "type": "file", - "name": "ssl_utst.c", - "base_name": "ssl_utst", - "extension": ".c", - "date": "2017-05-25", - "size": 721, - "sha1": "f5278f987f0ec95959e4e244c823392f3d5f238b", - "md5": "d4f7ff324476c79df4416b7e7aa59ef4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/ssl/t1_enc.c", - "type": "file", - "name": "t1_enc.c", - "base_name": "t1_enc", - "extension": ".c", - "date": "2017-05-25", - "size": 22283, - "sha1": "85ed0146598932ca5bbd4b0b3423597c4ddaf49e", - "md5": "945249adf40f3693a00e53d9a680d4c6", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 67.74, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 67.74, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 67.74, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [], - "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": [] - }, - { - "path": "openssl-1.1.0f/ssl/t1_ext.c", - "type": "file", - "name": "t1_ext.c", - "base_name": "t1_ext", - "extension": ".c", - "date": "2017-05-25", - "size": 9192, - "sha1": "321533b2e95040b8e7e3eec1d93ce8bc82272491", - "md5": "e7bcc00261191790d0cccd6ae9c2a393", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/ssl/t1_lib.c", - "type": "file", - "name": "t1_lib.c", - "base_name": "t1_lib", - "extension": ".c", - "date": "2017-05-25", - "size": 136792, - "sha1": "4f02db86b7c77d9c27b8d510636772fc7530198e", - "md5": "9e7a307e432c4af0267c01f1c777cd1e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/ssl/t1_reneg.c", - "type": "file", - "name": "t1_reneg.c", - "base_name": "t1_reneg", - "extension": ".c", - "date": "2017-05-25", - "size": 5175, - "sha1": "e98e79bd2454afb31a516f641672366d28ac4fdd", - "md5": "d6a6bf50ce4e85fb2639ffdbfc9c6b6b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/ssl/t1_trce.c", - "type": "file", - "name": "t1_trce.c", - "base_name": "t1_trce", - "extension": ".c", - "date": "2017-05-25", - "size": 46723, - "sha1": "4696eba9ad95b17b2efbcd0a37829357eb9bbfe3", - "md5": "bbe1ba6753a527d56d1a397be703396e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/ssl/tls_srp.c", - "type": "file", - "name": "tls_srp.c", - "base_name": "tls_srp", - "extension": ".c", - "date": "2017-05-25", - "size": 13455, - "sha1": "421050ee8e2c7adb273d7bc4e4d8b60036b35dd8", - "md5": "af301a4a346776a03c3a463fa491a31f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/ssl/record", - "type": "directory", - "name": "record", - "base_name": "record", - "extension": "", - "date": null, - "size": 173522, - "sha1": null, - "md5": null, - "files_count": 8, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/ssl/statem", - "type": "directory", - "name": "statem", - "base_name": "statem", - "extension": "", - "date": null, - "size": 309241, - "sha1": null, - "md5": null, - "files_count": 8, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/ssl/record/dtls1_bitmap.c", - "type": "file", - "name": "dtls1_bitmap.c", - "base_name": "dtls1_bitmap", - "extension": ".c", - "date": "2017-05-25", - "size": 2166, - "sha1": "888af6d5286fe3eb9b2227dafc93cb5989b6c86e", - "md5": "12cec09b6d69e1bc6be40f6b745c0ca8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/ssl/record/README", - "type": "file", - "name": "README", - "base_name": "README", - "extension": "", - "date": "2017-05-25", - "size": 3544, - "sha1": "fb651e2fe16381f7cb9f3d9aa810ad52410d032e", - "md5": "57cc9d7282eaf79507ceb0be416dfed4", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/ssl/record/record.h", - "type": "file", - "name": "record.h", - "base_name": "record", - "extension": ".h", - "date": "2017-05-25", - "size": 9922, - "sha1": "6f9d89ffe3936c7b557f8fc165a4695c2379305c", - "md5": "5e69c8ae5f609a1fdad44d27c994c95a", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/ssl/record/record_locl.h", - "type": "file", - "name": "record_locl.h", - "base_name": "record_locl", - "extension": ".h", - "date": "2017-05-25", - "size": 6235, - "sha1": "69bd18882a443ba6fc9a7714310e96e6d13b9364", - "md5": "d0732bb2a5a9a1c0932073cf2e8eb5ce", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 39647, - "sha1": "bfe6c11be43a538e540be47635852175f8036f2f", - "md5": "39f20384387dba07260225ea31c50c51", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 51711, - "sha1": "65defc3245faff518ffb2b447a9e409bd3d589b8", - "md5": "2368e1d670e4523b9a9d977908dd6c8c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/ssl/record/ssl3_buffer.c", - "type": "file", - "name": "ssl3_buffer.c", - "base_name": "ssl3_buffer", - "extension": ".c", - "date": "2017-05-25", - "size": 3959, - "sha1": "042366a0e04ba869a8bca93f205f608a9e9bd7fd", - "md5": "6e84b6eecf681e01a706e78a840cd26d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/ssl/record/ssl3_record.c", - "type": "file", - "name": "ssl3_record.c", - "base_name": "ssl3_record", - "extension": ".c", - "date": "2017-05-25", - "size": 56338, - "sha1": "9cf1e0a96ffeb43a975ef7e64eed2d6447e9b2aa", - "md5": "e14410358440e2313874eaea6adff03f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/ssl/statem/README", - "type": "file", - "name": "README", - "base_name": "README", - "extension": "", - "date": "2017-05-25", - "size": 3358, - "sha1": "cc82c7751b46166d2048626d06dfd75ac433936f", - "md5": "c9e989aecc3fa5a691976aed18fdd481", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/ssl/statem/statem.c", - "type": "file", - "name": "statem.c", - "base_name": "statem", - "extension": ".c", - "date": "2017-05-25", - "size": 25675, - "sha1": "6fbc3c2ac108d39bc137e44530c57b1870180d62", - "md5": "c26cf10694b186313601b0ebefd8d708", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/ssl/statem/statem.h", - "type": "file", - "name": "statem.h", - "base_name": "statem", - "extension": ".h", - "date": "2017-05-25", - "size": 4273, - "sha1": "889ebce19210615275dd4d3464f04ee362c1b267", - "md5": "33234ad0d4f4f318cfe53ecb5f6e2a21", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/ssl/statem/statem_clnt.c", - "type": "file", - "name": "statem_clnt.c", - "base_name": "statem_clnt", - "extension": ".c", - "date": "2017-05-25", - "size": 91816, - "sha1": "ea3b64ad1c0c09ee2e77b56e2467e0cfdd1e56a5", - "md5": "ffcab7f91ff024145e21f520c949fb19", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 58.33, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 58.33, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 58.33, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [], - "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": [] - }, - { - "path": "openssl-1.1.0f/ssl/statem/statem_dtls.c", - "type": "file", - "name": "statem_dtls.c", - "base_name": "statem_dtls", - "extension": ".c", - "date": "2017-05-25", - "size": 38552, - "sha1": "be2b84f6e8e0a0ec332920400b1bde4852910880", - "md5": "e43a5e01eeb58237fec66e6ceb19cee6", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/ssl/statem/statem_lib.c", - "type": "file", - "name": "statem_lib.c", - "base_name": "statem_lib", - "extension": ".c", - "date": "2017-05-25", - "size": 33920, - "sha1": "8dabe7e029d66963d253244bbb8643d4eab475d9", - "md5": "92158e4354658f3fecc95d8763645d8c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "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": [] - }, - { - "path": "openssl-1.1.0f/ssl/statem/statem_locl.h", - "type": "file", - "name": "statem_locl.h", - "base_name": "statem_locl", - "extension": ".h", - "date": "2017-05-25", - "size": 5816, - "sha1": "85fab35084e1cd8d69efd5b38012d97a796de0c0", - "md5": "8de1babb95621593868ab20ffabac5dd", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/ssl/statem/statem_srvr.c", - "type": "file", - "name": "statem_srvr.c", - "base_name": "statem_srvr", - "extension": ".c", - "date": "2017-05-25", - "size": 105831, - "sha1": "5c95fbedb9cc00a8d909e55f91e6055c6a121f24", - "md5": "a4e2d3de57c36d7b909c8298589cefca", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 58.33, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 58.33, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 58.33, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [], - "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": [] - }, - { - "path": "openssl-1.1.0f/test/aborttest.c", - "type": "file", - "name": "aborttest.c", - "base_name": "aborttest", - "extension": ".c", - "date": "2017-05-25", - "size": 464, - "sha1": "b62bae98a90445d2e43003b3988b42e8a8a10e9a", - "md5": "32e42d9911530e546bc269132bd37663", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/test/afalgtest.c", - "type": "file", - "name": "afalgtest.c", - "base_name": "afalgtest", - "extension": ".c", - "date": "2017-05-25", - "size": 3691, - "sha1": "e22f5fbd6f0a64fa0b2f5c834a0a01f210b29e52", - "md5": "50e64cc34b37bf94add5d3ad12506d34", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/test/asynciotest.c", - "type": "file", - "name": "asynciotest.c", - "base_name": "asynciotest", - "extension": ".c", - "date": "2017-05-25", - "size": 10973, - "sha1": "cfafe4d6f78be0266da4a0ded75147a309573d3b", - "md5": "fef926f6d017b7c1b127bc5904c353b5", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "apache-2.0", - "score": 92.86, - "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": [] - }, - { - "path": "openssl-1.1.0f/test/asynctest.c", - "type": "file", - "name": "asynctest.c", - "base_name": "asynctest", - "extension": ".c", - "date": "2017-05-25", - "size": 8937, - "sha1": "7d723d0cd910449b50e7917c7e6eab92d122b2a8", - "md5": "d5bd335583e66ded8916902c8b13bf2c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/test/bad_dtls_test.c", - "type": "file", - "name": "bad_dtls_test.c", - "base_name": "bad_dtls_test", - "extension": ".c", - "date": "2017-05-25", - "size": 20800, - "sha1": "7b30c32e55996d1498b973e6ac06970247b422eb", - "md5": "cf981f5ce71b6f253ce4386b7e53c2f2", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/test/bftest.c", - "type": "file", - "name": "bftest.c", - "base_name": "bftest", - "extension": ".c", - "date": "2017-05-25", - "size": 17446, - "sha1": "89fe9b6b5c425a67165e5c4662e3c30b3e904d5b", - "md5": "ab27c95cb392a5f77430ba5199e2c17a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/bioprinttest.c", - "type": "file", - "name": "bioprinttest.c", - "base_name": "bioprinttest", - "extension": ".c", - "date": "2017-05-25", - "size": 9726, - "sha1": "7966431f7592fcd59a3850b89bfba9ec8a22eefb", - "md5": "037a4f8ddbb43a413eb2b858e902dd17", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/test/bio_enc_test.c", - "type": "file", - "name": "bio_enc_test.c", - "base_name": "bio_enc_test", - "extension": ".c", - "date": "2017-05-25", - "size": 4230, - "sha1": "e39dd177f88c122c1bfed079f12fc741018e9bb3", - "md5": "efbc1fa3561bc7304719ff626fe59a4e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/test/bntest.c", - "type": "file", - "name": "bntest.c", - "base_name": "bntest", - "extension": ".c", - "date": "2017-05-25", - "size": 52207, - "sha1": "33a6f001a665aeb005c3fc4c6839be25690e042f", - "md5": "1e755d2fdd2a570a11ed478c47c3e3f3", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 58.33, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 58.33, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 58.33, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [] - }, - { - "path": "openssl-1.1.0f/test/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 8923, - "sha1": "8a10336f35711e961ac94686103b2d1254791f1e", - "md5": "a70db4dd28d4e8035d23258614eea420", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/CAss.cnf", - "type": "file", - "name": "CAss.cnf", - "base_name": "CAss", - "extension": ".cnf", - "date": "2017-05-25", - "size": 2243, - "sha1": "db88bc928305afb566adefef5015363f43ec722d", - "md5": "5c0a16264b3e9bd888a4c55ecd46540d", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/CAssdh.cnf", - "type": "file", - "name": "CAssdh.cnf", - "base_name": "CAssdh", - "extension": ".cnf", - "date": "2017-05-25", - "size": 728, - "sha1": "7478674d2fcbc105013fd891641d24629d590603", - "md5": "8e5b0b18bf6e7b8fc3c36fa10f05af97", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/CAssdsa.cnf", - "type": "file", - "name": "CAssdsa.cnf", - "base_name": "CAssdsa", - "extension": ".cnf", - "date": "2017-05-25", - "size": 729, - "sha1": "cb76c023a226281c5f3524c819261fbac34d2aa4", - "md5": "1437aab236d980dd66457c6024038d47", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/CAssrsa.cnf", - "type": "file", - "name": "CAssrsa.cnf", - "base_name": "CAssrsa", - "extension": ".cnf", - "date": "2017-05-25", - "size": 708, - "sha1": "32edc4bdd420e2aedf901789025250206e4e1386", - "md5": "de33b2060549b17a723a31967dd26a71", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/casttest.c", - "type": "file", - "name": "casttest.c", - "base_name": "casttest", - "extension": ".c", - "date": "2017-05-25", - "size": 4621, - "sha1": "a9a62338f8ba0ebd794f86b53dd5b5aad1e25aec", - "md5": "e431d3bfeaf3625f7f135e8568f14088", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/CAtsa.cnf", - "type": "file", - "name": "CAtsa.cnf", - "base_name": "CAtsa", - "extension": ".cnf", - "date": "2017-05-25", - "size": 4959, - "sha1": "3af58dc2001685d70a6e86947e12950e7ea8c54b", - "md5": "b5212fe72a10cda6e6f89cc5fea21b01", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/cipherlist_test.c", - "type": "file", - "name": "cipherlist_test.c", - "base_name": "cipherlist_test", - "extension": ".c", - "date": "2017-05-25", - "size": 5590, - "sha1": "2c0179a69deafa78ac48aabf3fd753cb84341002", - "md5": "45ce78e91efb761fd7dcd71d95ff3ad3", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "apache-2.0", - "score": 92.86, - "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": [] - }, - { - "path": "openssl-1.1.0f/test/clienthellotest.c", - "type": "file", - "name": "clienthellotest.c", - "base_name": "clienthellotest", - "extension": ".c", - "date": "2017-05-25", - "size": 3992, - "sha1": "2bc3e6f5b919c627f46a47944c1225dce2d46046", - "md5": "95e350931c1091423eefa3c744c3d32a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/test/cms-examples.pl", - "type": "file", - "name": "cms-examples.pl", - "base_name": "cms-examples", - "extension": ".pl", - "date": "2017-05-25", - "size": 8896, - "sha1": "58445783211e594f87fc8e7576181735e7fee09b", - "md5": "4cfddde1ef3e25e22087e81ef32fa792", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/test/constant_time_test.c", - "type": "file", - "name": "constant_time_test.c", - "base_name": "constant_time_test", - "extension": ".c", - "date": "2017-05-25", - "size": 9851, - "sha1": "b61542506ffe260026b8f9b09f20b1786980bb7b", - "md5": "548805530d879bb00b0656c5b465aa96", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/test/crltest.c", - "type": "file", - "name": "crltest.c", - "base_name": "crltest", - "extension": ".c", - "date": "2017-05-25", - "size": 14945, - "sha1": "0fc3c5f590a3fc954d69fe0c90dd16b990e6dee0", - "md5": "6f3e99140e44eca2c6112b92e72589de", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/test/ct_test.c", - "type": "file", - "name": "ct_test.c", - "base_name": "ct_test", - "extension": ".c", - "date": "2017-05-25", - "size": 18168, - "sha1": "99dc4c1b16e3d50040e3ba60928745bfdfc24a70", - "md5": "f5b3833db828b5dd09a10c565107ffce", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/test/d2i_test.c", - "type": "file", - "name": "d2i_test.c", - "base_name": "d2i_test", - "extension": ".c", - "date": "2017-05-25", - "size": 5353, - "sha1": "7629218570bd33f3901fdbe274b7cb2b2f8b81f3", - "md5": "458bc787aab366e36a50878208155911", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/test/danetest.c", - "type": "file", - "name": "danetest.c", - "base_name": "danetest", - "extension": ".c", - "date": "2017-05-25", - "size": 13058, - "sha1": "c5b0a8871d2fbc121fbd59104c82666dee6a69fe", - "md5": "864794b3bc68d440bd042a20e7f53ecc", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/test/danetest.in", - "type": "file", - "name": "danetest.in", - "base_name": "danetest", - "extension": ".in", - "date": "2017-05-25", - "size": 89688, - "sha1": "0d1b27807114cb7e4f4895a4a37914948feb4cc6", - "md5": "a44cedb6378d0b852d53412b89db236d", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/test/danetest.pem", - "type": "file", - "name": "danetest.pem", - "base_name": "danetest", - "extension": ".pem", - "date": "2017-05-25", - "size": 652, - "sha1": "e6eda46af336576945e89e5b8f732d4271b214be", - "md5": "9c09e39960d1985c9e354c58b759f013", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/destest.c", - "type": "file", - "name": "destest.c", - "base_name": "destest", - "extension": ".c", - "date": "2017-05-25", - "size": 29989, - "sha1": "24c1f219c651bf0aabf01e6c75a49f4b650ab73f", - "md5": "ad96bd48f5c3c68f9e197ddcfd0fe38c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/dhtest.c", - "type": "file", - "name": "dhtest.c", - "base_name": "dhtest", - "extension": ".c", - "date": "2017-05-25", - "size": 24479, - "sha1": "d80848717c90ff23f346db8aa8b6837e1a7af426", - "md5": "258db3df72c908bbca0b32b520fbe51e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/dsatest.c", - "type": "file", - "name": "dsatest.c", - "base_name": "dsatest", - "extension": ".c", - "date": "2017-05-25", - "size": 5282, - "sha1": "96a83ea56a0f47d37864716075a2c744a3650100", - "md5": "2661f69f4d74603a966c5fd6aca57c9a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/dtlstest.c", - "type": "file", - "name": "dtlstest.c", - "base_name": "dtlstest", - "extension": ".c", - "date": "2017-05-25", - "size": 3942, - "sha1": "d9d24d31f258bb848d11c7b0ff18036eeffc4846", - "md5": "6f04de55ec977aa4fc9097ff0b5616bc", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/test/dtlsv1listentest.c", - "type": "file", - "name": "dtlsv1listentest.c", - "base_name": "dtlsv1listentest", - "extension": ".c", - "date": "2017-05-25", - "size": 13871, - "sha1": "29eaa73d4e1cdefefae43cbb3792d0b6a74000e9", - "md5": "9fe9eb9b2fe1bcbadd3789e89b39de69", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/test/ecdsatest.c", - "type": "file", - "name": "ecdsatest.c", - "base_name": "ecdsatest", - "extension": ".c", - "date": "2017-05-25", - "size": 16119, - "sha1": "a6cce7a1975f3c115d02c1296b0d9a528df76312", - "md5": "f26cc5ca31acf7ad024a9852ce335d3d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 58.33, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 58.33, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 58.33, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [] - }, - { - "path": "openssl-1.1.0f/test/ectest.c", - "type": "file", - "name": "ectest.c", - "base_name": "ectest", - "extension": ".c", - "date": "2017-05-25", - "size": 57229, - "sha1": "363a6ae923a383da9d2c71fadcda8df101b97fe9", - "md5": "c3a7ce5507d12985dfbce480a2bb6ac4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 58.33, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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": 58.33, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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": 58.33, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [] - }, - { - "path": "openssl-1.1.0f/test/enginetest.c", - "type": "file", - "name": "enginetest.c", - "base_name": "enginetest", - "extension": ".c", - "date": "2017-05-25", - "size": 5998, - "sha1": "83659c86c04bfd221c73d504b76fd7cef56e273a", - "md5": "e9dedeeb9264cadf5b55521586833a14", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/test/evptests.txt", - "type": "file", - "name": "evptests.txt", - "base_name": "evptests", - "extension": ".txt", - "date": "2017-05-25", - "size": 710370, - "sha1": "1cb6f2865f45787b92a2f6fc129970471be879ea", - "md5": "299552fae350a67e8e2dc706127d7cc5", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/test/evp_extra_test.c", - "type": "file", - "name": "evp_extra_test.c", - "base_name": "evp_extra_test", - "extension": ".c", - "date": "2017-05-25", - "size": 16667, - "sha1": "492129a0f212434eb2a0017c8a3c595bf7347a93", - "md5": "d9c57d4c404f1516c04315cb24bbb9b2", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/test/evp_test.c", - "type": "file", - "name": "evp_test.c", - "base_name": "evp_test", - "extension": ".c", - "date": "2017-05-25", - "size": 56973, - "sha1": "62bfdc231de771b8e742c9c2344934863a917f32", - "md5": "4c4c979a9a16db6904ca2362d0cc3f71", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/test/exdatatest.c", - "type": "file", - "name": "exdatatest.c", - "base_name": "exdatatest", - "extension": ".c", - "date": "2017-05-25", - "size": 3102, - "sha1": "f592d1dcde9017aa53886ba2ae62c25ac6dd9730", - "md5": "e04659e670cd74c5276853b105ef69d3", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_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": [] - }, - { - "path": "openssl-1.1.0f/test/exptest.c", - "type": "file", - "name": "exptest.c", - "base_name": "exptest", - "extension": ".c", - "date": "2017-05-25", - "size": 6900, - "sha1": "ea0cb1a712ee15089abe70a3d93912a65ae63937", - "md5": "76852001dedb72f31da6502e4486620a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/generate_buildtest.pl", - "type": "file", - "name": "generate_buildtest.pl", - "base_name": "generate_buildtest", - "extension": ".pl", - "date": "2017-05-25", - "size": 784, - "sha1": "12f3e2efaeaf7fe8cbb11820d6d2dac891bdf8ed", - "md5": "6530addb59cc1654698a95f961d7b29e", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/test/generate_ssl_tests.pl", - "type": "file", - "name": "generate_ssl_tests.pl", - "base_name": "generate_ssl_tests", - "extension": ".pl", - "date": "2017-05-25", - "size": 4447, - "sha1": "9e8e1f6e9e9f19a81954b33acb8db0eddf9ab920", - "md5": "9bf74dfe66b57759686fe37b8ff02a3b", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/test/gmdifftest.c", - "type": "file", - "name": "gmdifftest.c", - "base_name": "gmdifftest", - "extension": ".c", - "date": "2017-05-25", - "size": 2433, - "sha1": "1dacb3f6359dac48efaa96878eff552f621fdcee", - "md5": "fd2a074c1194d30037b8e68c992484f8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/test/handshake_helper.c", - "type": "file", - "name": "handshake_helper.c", - "base_name": "handshake_helper", - "extension": ".c", - "date": "2017-05-25", - "size": 38051, - "sha1": "e7c7a22ce101621e0a19c1f62d8cfde6605e0a36", - "md5": "160fe75d93929966739ae2aa4ba327f0", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/test/handshake_helper.h", - "type": "file", - "name": "handshake_helper.h", - "base_name": "handshake_helper", - "extension": ".h", - "date": "2017-05-25", - "size": 2232, - "sha1": "9a1c350ed6b79058138463d128248fc8d05e2368", - "md5": "42fb3b1740c46e89f51597eee15f52a8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/test/heartbeat_test.c", - "type": "file", - "name": "heartbeat_test.c", - "base_name": "heartbeat_test", - "extension": ".c", - "date": "2017-05-25", - "size": 11784, - "sha1": "1a9c727b60a0075fc8fc1728bc9f57d9a666e05a", - "md5": "1ce6b22be1dbc40dd7d072d0651bc0c1", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/test/hmactest.c", - "type": "file", - "name": "hmactest.c", - "base_name": "hmactest", - "extension": ".c", - "date": "2017-05-25", - "size": 9530, - "sha1": "304be6e160b95d45a72b8c23833a61841e34e83c", - "md5": "e5cdd335fb505476865d381355f64a36", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/ideatest.c", - "type": "file", - "name": "ideatest.c", - "base_name": "ideatest", - "extension": ".c", - "date": "2017-05-25", - "size": 5226, - "sha1": "a062e769663150b3ba6c1c038b70fedbb63a6938", - "md5": "1efef7edc77e04937b3a7e6e3b4eb7e5", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/igetest.c", - "type": "file", - "name": "igetest.c", - "base_name": "igetest", - "extension": ".c", - "date": "2017-05-25", - "size": 16483, - "sha1": "9af902636d8a18998ebb996ccaa3663b41dfd056", - "md5": "d6bc15b0444adbb31ad5034de393be81", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/test/md2test.c", - "type": "file", - "name": "md2test.c", - "base_name": "md2test", - "extension": ".c", - "date": "2017-05-25", - "size": 2154, - "sha1": "6fced0ec6fbd1ae0b0d43b688d9abf843fc35713", - "md5": "cccdc3560410e9cac18ad1b8fc625b65", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/md4test.c", - "type": "file", - "name": "md4test.c", - "base_name": "md4test", - "extension": ".c", - "date": "2017-05-25", - "size": 2071, - "sha1": "ce29cc0974d5a18e193a2080046a97129c836b94", - "md5": "67238553826f798593c3791c1197eb62", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/md5test.c", - "type": "file", - "name": "md5test.c", - "base_name": "md5test", - "extension": ".c", - "date": "2017-05-25", - "size": 2072, - "sha1": "6970edf44ad99c4211c7bb66704500280c04547d", - "md5": "a42faeea421972ba87bbcd8fa3ccba83", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/mdc2test.c", - "type": "file", - "name": "mdc2test.c", - "base_name": "mdc2test", - "extension": ".c", - "date": "2017-05-25", - "size": 2575, - "sha1": "c9af6836828cb407ce8d8c1bf9bc1442a9493593", - "md5": "d9fe14303c306bbcb4855244c2d0f988", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/memleaktest.c", - "type": "file", - "name": "memleaktest.c", - "base_name": "memleaktest", - "extension": ".c", - "date": "2017-05-25", - "size": 1142, - "sha1": "0ba7405194aa91e014d370d1821a9468876152a3", - "md5": "a46fe4d681703a8029da581d8856990d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/test/methtest.c", - "type": "file", - "name": "methtest.c", - "base_name": "methtest", - "extension": ".c", - "date": "2017-05-25", - "size": 1642, - "sha1": "f7be3f7fe0a692b1d17095bf92668446f02120a5", - "md5": "fd4aa08d299af988e906e6ff148004e0", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/P1ss.cnf", - "type": "file", - "name": "P1ss.cnf", - "base_name": "P1ss", - "extension": ".cnf", - "date": "2017-05-25", - "size": 1000, - "sha1": "59a8acfc2d50d5d2bcd638f2e82e168d1c3d419b", - "md5": "d30712b36fc0c19d417c8b01d7eca8cb", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/P2ss.cnf", - "type": "file", - "name": "P2ss.cnf", - "base_name": "P2ss", - "extension": ".cnf", - "date": "2017-05-25", - "size": 1102, - "sha1": "ec90d9f753ca4d55f66f65839a9860c94497db24", - "md5": "753be1fbc2a642f28b5f1b11df96dc22", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/p5_crpt2_test.c", - "type": "file", - "name": "p5_crpt2_test.c", - "base_name": "p5_crpt2_test", - "extension": ".c", - "date": "2017-05-25", - "size": 4830, - "sha1": "6839d51c046494aafa24c5a083aa001dceafe4e4", - "md5": "8f49db6f9fb3a2cf9eae4bd108fb7ee0", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/test/packettest.c", - "type": "file", - "name": "packettest.c", - "base_name": "packettest", - "extension": ".c", - "date": "2017-05-25", - "size": 15272, - "sha1": "ee0bfaec47ca2612c9d13b9f68f08446559a65d9", - "md5": "b521641299613f90f457ef78a4ef8499", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/test/pbelutest.c", - "type": "file", - "name": "pbelutest.c", - "base_name": "pbelutest", - "extension": ".c", - "date": "2017-05-25", - "size": 1346, - "sha1": "28c17124606136e078a9a7829d30df5a409a01cf", - "md5": "cd728e6e267acc3407c7cb7c87d3c899", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/test/pkcs7-1.pem", - "type": "file", - "name": "pkcs7-1.pem", - "base_name": "pkcs7-1", - "extension": ".pem", - "date": "2017-05-25", - "size": 851, - "sha1": "1f4eb62e8fe83b89bfbbb0faa51f146a726e0920", - "md5": "5636a9df1d9fae3480e231045f493f3b", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/pkcs7.pem", - "type": "file", - "name": "pkcs7.pem", - "base_name": "pkcs7", - "extension": ".pem", - "date": "2017-05-25", - "size": 3744, - "sha1": "ebe39e1f0469db03364890861114731343b3309d", - "md5": "164c1b63301b452b9fb4211c430eb592", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/pkits-test.pl", - "type": "file", - "name": "pkits-test.pl", - "base_name": "pkits-test", - "extension": ".pl", - "date": "2017-05-25", - "size": 31914, - "sha1": "8622a1a63a5e00cad90fed31678b1bb8ec3fbdb3", - "md5": "1f28617a6de04033b751592ef53d62bd", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/test/r160test.c", - "type": "file", - "name": "r160test.c", - "base_name": "r160test", - "extension": ".c", - "date": "2017-05-25", - "size": 334, - "sha1": "cc871307e010e415b71fcfaa240bc613726aba96", - "md5": "02b4566ff9853ba1663fd7c5818a8d66", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/randtest.c", - "type": "file", - "name": "randtest.c", - "base_name": "randtest", - "extension": ".c", - "date": "2017-05-25", - "size": 3767, - "sha1": "b32e37b0160aadaf3ccb8a3b81b997f17f61aedb", - "md5": "b12db049cc54912e82c13ed3abba701c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/rc2test.c", - "type": "file", - "name": "rc2test.c", - "base_name": "rc2test", - "extension": ".c", - "date": "2017-05-25", - "size": 2933, - "sha1": "26b0f236658cabb6d3ff73287bfa52d5ebc23d01", - "md5": "a33848c594de8b0ffe967e7e7af4a44f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/rc4test.c", - "type": "file", - "name": "rc4test.c", - "base_name": "rc4test", - "extension": ".c", - "date": "2017-05-25", - "size": 5778, - "sha1": "867ce0bcdd7621d5115b12af319153bf18981c1f", - "md5": "d1239ca76b1f850003b754524e9fb093", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/rc5test.c", - "type": "file", - "name": "rc5test.c", - "base_name": "rc5test", - "extension": ".c", - "date": "2017-05-25", - "size": 10439, - "sha1": "c5b0604940b2ef598e670786368b1c56bf2b1d36", - "md5": "0e0551e485bef904c77a081497df4c00", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/README", - "type": "file", - "name": "README", - "base_name": "README", - "extension": "", - "date": "2017-05-25", - "size": 2898, - "sha1": "b10210347c4ec77a0c0cbba53af8f89c9cd42a2b", - "md5": "cf6fe485bdc5a2a65b02b2cfd0b7703c", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/README.ssltest.md", - "type": "file", - "name": "README.ssltest.md", - "base_name": "README.ssltest", - "extension": ".md", - "date": "2017-05-25", - "size": 9182, - "sha1": "a5b5739824a478024e66cb404eda4ae1ff77e8ab", - "md5": "3c0e335465e0a5143e5a4bf2ff3f4500", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/rmdtest.c", - "type": "file", - "name": "rmdtest.c", - "base_name": "rmdtest", - "extension": ".c", - "date": "2017-05-25", - "size": 2443, - "sha1": "1c17a2060a336b605bc28dfb185938fc6320e5ea", - "md5": "74a0192acf3f6b7750869e6200ffe33b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/rsa_test.c", - "type": "file", - "name": "rsa_test.c", - "base_name": "rsa_test", - "extension": ".c", - "date": "2017-05-25", - "size": 12975, - "sha1": "03b11069bbe0830de386e2266c13db5a79873cb3", - "md5": "126b1b0efca4bd0f5c7405fda59fe578", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/test/run_tests.pl", - "type": "file", - "name": "run_tests.pl", - "base_name": "run_tests", - "extension": ".pl", - "date": "2017-05-25", - "size": 2804, - "sha1": "00eb346aa2d7748e062edbec2b428f1b1cd244a4", - "md5": "21679616cbef3e498842c9a635566051", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/test/sanitytest.c", - "type": "file", - "name": "sanitytest.c", - "base_name": "sanitytest", - "extension": ".c", - "date": "2017-05-25", - "size": 2082, - "sha1": "ef1c6f27698487f6b90df4bb33dc0894b4ba249f", - "md5": "ffd326fdb0e0a5fdd8357de2c9dfe327", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/test/secmemtest.c", - "type": "file", - "name": "secmemtest.c", - "base_name": "secmemtest", - "extension": ".c", - "date": "2017-05-25", - "size": 4947, - "sha1": "36c4bc1c2b3fc2ffe756a6410f54de944ac42e52", - "md5": "eb7334acb29c6fee23f0e1bb2be3c900", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/test/serverinfo.pem", - "type": "file", - "name": "serverinfo.pem", - "base_name": "serverinfo", - "extension": ".pem", - "date": "2017-05-25", - "size": 740, - "sha1": "6a1f596630b47cc0e58d79ea8d3c1978574e9c4f", - "md5": "126dd7db1bc368bea9b3d4eb54fff6a7", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/sha1test.c", - "type": "file", - "name": "sha1test.c", - "base_name": "sha1test", - "extension": ".c", - "date": "2017-05-25", - "size": 2775, - "sha1": "967a3409cd5a8a6b6741ae01ad3af0dd8e9c3047", - "md5": "5cd35326dff8a8934551172dea8cbf5c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "license_choice": false, - "licenses": [ - "openssl" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 1995-2016 The OpenSSL Project" - ], - "holders": [ - "The OpenSSL Project" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/sha256t.c", - "type": "file", - "name": "sha256t.c", - "base_name": "sha256t", - "extension": ".c", - "date": "2017-05-25", - "size": 5768, - "sha1": "7e0651efb0796a7067e6a84bdd1b9721322a44af", - "md5": "3cc168cba9cc9db573bd3d87cfa5b601", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/test/sha512t.c", - "type": "file", - "name": "sha512t.c", - "base_name": "sha512t", - "extension": ".c", - "date": "2017-05-25", - "size": 6990, - "sha1": "750b268b0840b4a97e926fd1274346f16905dbe1", - "md5": "abaf1804e59ff10b122b30c887c436f2", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/test/shibboleth.pfx", - "type": "file", - "name": "shibboleth.pfx", - "base_name": "shibboleth", - "extension": ".pfx", - "date": "2017-05-25", - "size": 2519, - "sha1": "1aa3da3f3fbe783efeedbf23ff0d6cb70ec350ad", - "md5": "66b1d3c11fbf8020c7bd863aee9d34b2", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/shlibloadtest.c", - "type": "file", - "name": "shlibloadtest.c", - "base_name": "shlibloadtest", - "extension": ".c", - "date": "2017-05-25", - "size": 5985, - "sha1": "f8074edfdd747fc855d748ff2b04d7e942bc531d", - "md5": "0ea24d9ff98e34d46d383b8f128cddcc", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/test/smcont.txt", - "type": "file", - "name": "smcont.txt", - "base_name": "smcont", - "extension": ".txt", - "date": "2017-05-25", - "size": 83, - "sha1": "50aa7be7747fbc7c5d2872b21ea87b7fd7265fac", - "md5": "7a2b5241b1769e94f13687fa40e6c985", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/srptest.c", - "type": "file", - "name": "srptest.c", - "base_name": "srptest", - "extension": ".c", - "date": "2017-05-25", - "size": 8749, - "sha1": "c38510657ae026d67b1de29e4046b2a5b5c4f4fa", - "md5": "6e35b7a7d37c6dbb0e6bf7ce743efb14", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/test/sslapitest.c", - "type": "file", - "name": "sslapitest.c", - "base_name": "sslapitest", - "extension": ".c", - "date": "2017-05-25", - "size": 34691, - "sha1": "9e16d0649c1aaa2b4074fded6431b26342146b9f", - "md5": "eac744b89e7d50da99251a2c4ddf9176", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/test/sslcorrupttest.c", - "type": "file", - "name": "sslcorrupttest.c", - "base_name": "sslcorrupttest", - "extension": ".c", - "date": "2017-05-25", - "size": 7245, - "sha1": "16cb91403223b7042dbc3f52379d8c9c03db70c0", - "md5": "d0b79a733e381e88a25dcf9c33a2de1a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/test/ssltestlib.c", - "type": "file", - "name": "ssltestlib.c", - "base_name": "ssltestlib", - "extension": ".c", - "date": "2017-05-25", - "size": 19819, - "sha1": "ff89c9258e69a5e353344323d493288419859bbe", - "md5": "5f767ad588fd790addefffb933d676f6", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/test/ssltestlib.h", - "type": "file", - "name": "ssltestlib.h", - "base_name": "ssltestlib", - "extension": ".h", - "date": "2017-05-25", - "size": 1344, - "sha1": "163c27bb47aa33afbe2fc9193e72267d17ea7b28", - "md5": "ec9832edac2587103fb1f9a856c8972b", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/test/ssltest_old.c", - "type": "file", - "name": "ssltest_old.c", - "base_name": "ssltest_old", - "extension": ".c", - "date": "2017-05-25", - "size": 105629, - "sha1": "6af24e2afadea078784fd6a5a4695f7203411bb6", - "md5": "33fa96fed2943dae9685535304342923", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "identifier": "openssl_8.RULE", - "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": [], - "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": [] - }, - { - "path": "openssl-1.1.0f/test/ssl_test.c", - "type": "file", - "name": "ssl_test.c", - "base_name": "ssl_test", - "extension": ".c", - "date": "2017-05-25", - "size": 12321, - "sha1": "a7486c5df6b74d3b24f11e261ad02d67e7de7e08", - "md5": "01df948a36aacc36e59a5574fcea2748", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/test/ssl_test.tmpl", - "type": "file", - "name": "ssl_test.tmpl", - "base_name": "ssl_test", - "extension": ".tmpl", - "date": "2017-05-25", - "size": 4424, - "sha1": "53d419024d05a201dcdd6e0f9b796dbf9db2d1c9", - "md5": "6548dc52339694de89bba22902d2d07d", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/ssl_test_ctx.c", - "type": "file", - "name": "ssl_test_ctx.c", - "base_name": "ssl_test_ctx", - "extension": ".c", - "date": "2017-05-25", - "size": 20550, - "sha1": "3fb53cc37b91db11dea80ea8f82f7d66ab9354ac", - "md5": "eade9ded9e2087c6f7ce17da51a3d92b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/test/ssl_test_ctx.h", - "type": "file", - "name": "ssl_test_ctx.h", - "base_name": "ssl_test_ctx", - "extension": ".h", - "date": "2017-05-25", - "size": 6440, - "sha1": "652d612a5838cab63f6ed80a081010259ac38522", - "md5": "06cbd385230960431a9c01ee9166e677", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 11985, - "sha1": "a6cddbd2c0c1337c05f9d2d665fa6315a3b855e2", - "md5": "aba47943cb986b46291a22c153810902", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1864, - "sha1": "34579b236b989e5a7482aa89b505b105e7cf4bc2", - "md5": "b5facaa00d4ca8e91b95e2fbdc10ee60", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/Sssdsa.cnf", - "type": "file", - "name": "Sssdsa.cnf", - "base_name": "Sssdsa", - "extension": ".cnf", - "date": "2017-05-25", - "size": 821, - "sha1": "8e9fea7306e8a666eb4bb77d43f87d2a3c3c4bbc", - "md5": "011da1f1c1b323bde480a563e06f299b", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/Sssrsa.cnf", - "type": "file", - "name": "Sssrsa.cnf", - "base_name": "Sssrsa", - "extension": ".cnf", - "date": "2017-05-25", - "size": 798, - "sha1": "11611544133c6e985e73e28bdcabd2822ed040d8", - "md5": "4dfc1b9b87ce2236eafe1ca39aea13a2", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/test.cnf", - "type": "file", - "name": "test.cnf", - "base_name": "test", - "extension": ".cnf", - "date": "2017-05-25", - "size": 2637, - "sha1": "17440d2cc4229139423b50bfae03c5b74cbb801c", - "md5": "f5f00cf668eb83cd19e07336725462c2", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/testcrl.pem", - "type": "file", - "name": "testcrl.pem", - "base_name": "testcrl", - "extension": ".pem", - "date": "2017-05-25", - "size": 938, - "sha1": "bfe23d4bec1c31a1b25627a31138d1ce82718a24", - "md5": "3d6d3b3c0c0024d8410d0a9256e9a870", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/testdsa.pem", - "type": "file", - "name": "testdsa.pem", - "base_name": "testdsa", - "extension": ".pem", - "date": "2017-05-25", - "size": 672, - "sha1": "9e9d2f01211b973341f4735a5092e8a813b89e67", - "md5": "f48309791386ce8c5e3fefe614216df7", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/testdsapub.pem", - "type": "file", - "name": "testdsapub.pem", - "base_name": "testdsapub", - "extension": ".pem", - "date": "2017-05-25", - "size": 654, - "sha1": "68e06a1f7609cb21ca7d16afac2905763ae28ffe", - "md5": "96191129860f79d8a35e5eb849d34ec0", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/testec-p256.pem", - "type": "file", - "name": "testec-p256.pem", - "base_name": "testec-p256", - "extension": ".pem", - "date": "2017-05-25", - "size": 227, - "sha1": "bfe1e1608429aee0a97f646eb6e808ea8a4bf0f9", - "md5": "d68a856691d95d530d5c10d638592f1a", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/testecpub-p256.pem", - "type": "file", - "name": "testecpub-p256.pem", - "base_name": "testecpub-p256", - "extension": ".pem", - "date": "2017-05-25", - "size": 178, - "sha1": "8df43a324d2763a889bfdfc278dad5e2168432fc", - "md5": "c4f930dffbce990021cbaeb8cb085f7d", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/testp7.pem", - "type": "file", - "name": "testp7.pem", - "base_name": "testp7", - "extension": ".pem", - "date": "2017-05-25", - "size": 2854, - "sha1": "01973d933b2ccf794ba411803bfcb6808e688609", - "md5": "774028abd40a175221ed5498b69bc388", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/testreq2.pem", - "type": "file", - "name": "testreq2.pem", - "base_name": "testreq2", - "extension": ".pem", - "date": "2017-05-25", - "size": 371, - "sha1": "1c21cfdc959a9b1a51011a1df50e71fc0c306bcb", - "md5": "2ef02b7b366b24d73765bab6c46b0e9a", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/testrsa.pem", - "type": "file", - "name": "testrsa.pem", - "base_name": "testrsa", - "extension": ".pem", - "date": "2017-05-25", - "size": 497, - "sha1": "72472944db5057267a659bd695098f342de7af14", - "md5": "68f931406c1b3832776fbe954bd5dc12", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/testrsapub.pem", - "type": "file", - "name": "testrsapub.pem", - "base_name": "testrsapub", - "extension": ".pem", - "date": "2017-05-25", - "size": 182, - "sha1": "5c0cc2af58eac72b41a8a8cc51fc05ee21756a0e", - "md5": "caff536b2095d7990b6c23400df3d8e4", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/testsid.pem", - "type": "file", - "name": "testsid.pem", - "base_name": "testsid", - "extension": ".pem", - "date": "2017-05-25", - "size": 2384, - "sha1": "dd3bfd2021d0fbe3981424396c19faec23401d7a", - "md5": "fcb37e76c089645a9911a6576efb8a4c", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/testutil.c", - "type": "file", - "name": "testutil.c", - "base_name": "testutil", - "extension": ".c", - "date": "2017-05-25", - "size": 3053, - "sha1": "2ce590bb27d3b5ae35c745f5a26a73d595c260fc", - "md5": "a29fcdeed2408c114c2935d80605ade5", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/test/testutil.h", - "type": "file", - "name": "testutil.h", - "base_name": "testutil", - "extension": ".h", - "date": "2017-05-25", - "size": 3906, - "sha1": "4bf91ccb24fc981b83eb976b900d3a0e9ce1d649", - "md5": "533eabc1dae7bd4ec1b0c028cdac4584", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/test/testx509.pem", - "type": "file", - "name": "testx509.pem", - "base_name": "testx509", - "extension": ".pem", - "date": "2017-05-25", - "size": 530, - "sha1": "a392087de04a7c8173b2646acdb04a86285c2c84", - "md5": "d8520328643dfc6e1721630a5bc4ff9e", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/threadstest.c", - "type": "file", - "name": "threadstest.c", - "base_name": "threadstest", - "extension": ".c", - "date": "2017-05-25", - "size": 4929, - "sha1": "2146b81c3a28f770a1a32eef6f9bd625eb6c6899", - "md5": "63898cba0ffbe568f1c34e00df1dcfc9", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/test/Uss.cnf", - "type": "file", - "name": "Uss.cnf", - "base_name": "Uss", - "extension": ".cnf", - "date": "2017-05-25", - "size": 1018, - "sha1": "d61f5a98c3aaf7e8e428815fd44d166bfa4d6467", - "md5": "57e0ddc455face3a6239d93a8e42d1c5", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/v3-cert1.pem", - "type": "file", - "name": "v3-cert1.pem", - "base_name": "v3-cert1", - "extension": ".pem", - "date": "2017-05-25", - "size": 944, - "sha1": "045b99cb97fa3f561e773f7af34e8848a529535a", - "md5": "ef95828b48559af8f295f08b7a314d05", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/v3-cert2.pem", - "type": "file", - "name": "v3-cert2.pem", - "base_name": "v3-cert2", - "extension": ".pem", - "date": "2017-05-25", - "size": 940, - "sha1": "d1331c48b9b0e957152c603883f63d21d47fcd13", - "md5": "981e370c298e3bdd08d958e99b23ce30", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/v3ext.c", - "type": "file", - "name": "v3ext.c", - "base_name": "v3ext", - "extension": ".c", - "date": "2017-05-25", - "size": 965, - "sha1": "3053ddb38effbf9ae4a7ead9a2f72c2fe3df872b", - "md5": "30834fd192c98c0bd28e32dc2d808017", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/test/v3nametest.c", - "type": "file", - "name": "v3nametest.c", - "base_name": "v3nametest", - "extension": ".c", - "date": "2017-05-25", - "size": 11493, - "sha1": "8d017ee94cc9655af10163a666b8d5141275332b", - "md5": "14fc84b3adc674be3563375efc9c5125", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/test/verify_extra_test.c", - "type": "file", - "name": "verify_extra_test.c", - "base_name": "verify_extra_test", - "extension": ".c", - "date": "2017-05-25", - "size": 4038, - "sha1": "c25add1d33e72df4278fcd556c5235af4afe5ef7", - "md5": "19b2db6d918d5d489bde145c668155ee", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/test/wp_test.c", - "type": "file", - "name": "wp_test.c", - "base_name": "wp_test", - "extension": ".c", - "date": "2017-05-25", - "size": 8404, - "sha1": "2b7353c9e1262fdb8eceff3630b400665fea8336", - "md5": "eedfda8c4bb87946ba103b00854150fe", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/test/x509aux.c", - "type": "file", - "name": "x509aux.c", - "base_name": "x509aux", - "extension": ".c", - "date": "2017-05-25", - "size": 6141, - "sha1": "8436d19d976bc9bcff008b7a62185a3b105fd3bc", - "md5": "28493cf5249fc82ea0cfc8a92399d69b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "apache-2.0", - "score": 92.86, - "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": [] - }, - { - "path": "openssl-1.1.0f/test/certs", - "type": "directory", - "name": "certs", - "base_name": "certs", - "extension": "", - "date": null, - "size": 230582, - "sha1": null, - "md5": null, - "files_count": 162, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/ct", - "type": "directory", - "name": "ct", - "base_name": "ct", - "extension": "", - "date": null, - "size": 2567, - "sha1": null, - "md5": null, - "files_count": 2, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/d2i-tests", - "type": "directory", - "name": "d2i-tests", - "base_name": "d2i-tests", - "extension": "", - "date": null, - "size": 1121, - "sha1": null, - "md5": null, - "files_count": 10, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/ocsp-tests", - "type": "directory", - "name": "ocsp-tests", - "base_name": "ocsp-tests", - "extension": "", - "date": null, - "size": 111069, - "sha1": null, - "md5": null, - "files_count": 66, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/recipes", - "type": "directory", - "name": "recipes", - "base_name": "recipes", - "extension": "", - "date": null, - "size": 278408, - "sha1": null, - "md5": null, - "files_count": 150, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/smime-certs", - "type": "directory", - "name": "smime-certs", - "base_name": "smime-certs", - "extension": "", - "date": null, - "size": 30433, - "sha1": null, - "md5": null, - "files_count": 13, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/ssl-tests", - "type": "directory", - "name": "ssl-tests", - "base_name": "ssl-tests", - "extension": "", - "date": null, - "size": 543491, - "sha1": null, - "md5": null, - "files_count": 39, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/testlib", - "type": "directory", - "name": "testlib", - "base_name": "testlib", - "extension": "", - "date": null, - "size": 35395, - "sha1": null, - "md5": null, - "files_count": 3, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/alt1-cert.pem", - "type": "file", - "name": "alt1-cert.pem", - "base_name": "alt1-cert", - "extension": ".pem", - "date": "2017-05-25", - "size": 1302, - "sha1": "0debc74ef66a7d304919dc2bcc93ce3517639ed4", - "md5": "0a63a2ae9da7ad0634ffe14010fff93f", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/alt1-key.pem", - "type": "file", - "name": "alt1-key.pem", - "base_name": "alt1-key", - "extension": ".pem", - "date": "2017-05-25", - "size": 1704, - "sha1": "66f7fce5a4792b0cd117467fe74e247822e75b2f", - "md5": "0a0c89e18c113fcdd9a0f1acd3b8ae37", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/alt2-cert.pem", - "type": "file", - "name": "alt2-cert.pem", - "base_name": "alt2-cert", - "extension": ".pem", - "date": "2017-05-25", - "size": 1216, - "sha1": "bc4ed92dca86bb7d1738c36689c18670708af19d", - "md5": "11f6d012a487d02d58e76dec7b09fe2a", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/alt2-key.pem", - "type": "file", - "name": "alt2-key.pem", - "base_name": "alt2-key", - "extension": ".pem", - "date": "2017-05-25", - "size": 1704, - "sha1": "48b9cbd49860b5f8bfb34c773ec2afe1f016a124", - "md5": "58b279c2dfb63991ae5a23c6db4817c2", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/alt3-cert.pem", - "type": "file", - "name": "alt3-cert.pem", - "base_name": "alt3-cert", - "extension": ".pem", - "date": "2017-05-25", - "size": 1265, - "sha1": "00bd9eb8ad00cfb81f7633658212d834a62a2c35", - "md5": "66e116257fef0bdc7f20e0251fd72ed3", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/alt3-key.pem", - "type": "file", - "name": "alt3-key.pem", - "base_name": "alt3-key", - "extension": ".pem", - "date": "2017-05-25", - "size": 1704, - "sha1": "15bd4e7dcd307d440c2de6a7de2468421e886fbd", - "md5": "d9b028fc62ee7229ba277ec802d08256", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1245, - "sha1": "8d2404d88570d11397108cf1fdab1cc4497ea557", - "md5": "9901378c2c849b94c40cd69b26ced7a1", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1708, - "sha1": "8eac02d64be7d3fd004357d08a5f072e1253e63f", - "md5": "2e1ce2571a807ad1db644358bc231260", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1269, - "sha1": "69a8002195e1dcc5225cece2e7300b2cb7d65fa7", - "md5": "4e47b1b3006bbf0337a4493e753b10fd", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1704, - "sha1": "7c50cddfd7eb782143a721a60414107409649c56", - "md5": "77a3e6b5eba001c31bf423abc96047bf", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1265, - "sha1": "c85c3e40900f76db6c69e1b7e72c3f316ba5ae2e", - "md5": "ec2dddd04af25a7c0348e3190f11dbca", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1704, - "sha1": "4d139deff929f766bb366e595a421dc2fe5ade10", - "md5": "1ebb0c3ec04c813705c84eac89cff810", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/bad.key", - "type": "file", - "name": "bad.key", - "base_name": "bad", - "extension": ".key", - "date": "2017-05-25", - "size": 1675, - "sha1": "bf2c0f7b531e1df7896b32a2794f616c040772e3", - "md5": "20e1bc94e73a9d9a87e786082d0f2f8b", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/bad.pem", - "type": "file", - "name": "bad.pem", - "base_name": "bad", - "extension": ".pem", - "date": "2017-05-25", - "size": 1261, - "sha1": "1df488220fac0582685b9a7022f7a75897542aab", - "md5": "6919cfc779720990ab20df9041fd2309", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/badalt1-cert.pem", - "type": "file", - "name": "badalt1-cert.pem", - "base_name": "badalt1-cert", - "extension": ".pem", - "date": "2017-05-25", - "size": 1204, - "sha1": "0a5feb3d37f3c2bcfdbcf4b933403e4aa01f6882", - "md5": "fdd7e5ed47468bd4d26ea09047aab75f", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/badalt1-key.pem", - "type": "file", - "name": "badalt1-key.pem", - "base_name": "badalt1-key", - "extension": ".pem", - "date": "2017-05-25", - "size": 1704, - "sha1": "1d98e51a8298d4162721a0177a4577b541768781", - "md5": "9139a24aacb26938888734ef98db75b0", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/badalt10-cert.pem", - "type": "file", - "name": "badalt10-cert.pem", - "base_name": "badalt10-cert", - "extension": ".pem", - "date": "2017-05-25", - "size": 1285, - "sha1": "2bac6025a7248c30fe23f4a73c27e4c2b833372a", - "md5": "abe52bd538ddad04ce1e7963411c32c6", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/badalt10-key.pem", - "type": "file", - "name": "badalt10-key.pem", - "base_name": "badalt10-key", - "extension": ".pem", - "date": "2017-05-25", - "size": 1708, - "sha1": "338b424f50d06d9c40b8be71d0995cfabf702288", - "md5": "324ecca639f0a1dc16753ab2f3077476", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/badalt2-cert.pem", - "type": "file", - "name": "badalt2-cert.pem", - "base_name": "badalt2-cert", - "extension": ".pem", - "date": "2017-05-25", - "size": 1200, - "sha1": "76eb0014c0e1895de20153aee0bb4ce9eec490c2", - "md5": "a9c2c38fc5818efcf4a9f06416865b7e", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/badalt2-key.pem", - "type": "file", - "name": "badalt2-key.pem", - "base_name": "badalt2-key", - "extension": ".pem", - "date": "2017-05-25", - "size": 1708, - "sha1": "147eeac73b571a2fd720b9f91d414a6ac4e91493", - "md5": "dddfbd0a211b1160a9d612fccf5b3c7d", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/badalt3-cert.pem", - "type": "file", - "name": "badalt3-cert.pem", - "base_name": "badalt3-cert", - "extension": ".pem", - "date": "2017-05-25", - "size": 1245, - "sha1": "88d462298a7f1096a447300a7bce6f43e8ba74ff", - "md5": "58f707334d93e86322ec9143aabce5d6", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/badalt3-key.pem", - "type": "file", - "name": "badalt3-key.pem", - "base_name": "badalt3-key", - "extension": ".pem", - "date": "2017-05-25", - "size": 1704, - "sha1": "c5b0ab139211aa5ea4fffc4187e69644290997d5", - "md5": "e9a011642b4be48337f9b8ffca226894", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/badalt4-cert.pem", - "type": "file", - "name": "badalt4-cert.pem", - "base_name": "badalt4-cert", - "extension": ".pem", - "date": "2017-05-25", - "size": 1245, - "sha1": "b9e0c566fcb9e9be27db4f8fc25d39e55655f016", - "md5": "63356639acc84edae260362c358acbff", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/badalt4-key.pem", - "type": "file", - "name": "badalt4-key.pem", - "base_name": "badalt4-key", - "extension": ".pem", - "date": "2017-05-25", - "size": 1704, - "sha1": "776332d68d252f0224c423b2967193527eebcd8b", - "md5": "1dfb494aff064f10aef0e2d7c1b69190", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/badalt5-cert.pem", - "type": "file", - "name": "badalt5-cert.pem", - "base_name": "badalt5-cert", - "extension": ".pem", - "date": "2017-05-25", - "size": 1212, - "sha1": "7d4dae88e4aa32a301566c999b50fe0f946f6cba", - "md5": "02aa602fd74720384fae6067b565578b", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/badalt5-key.pem", - "type": "file", - "name": "badalt5-key.pem", - "base_name": "badalt5-key", - "extension": ".pem", - "date": "2017-05-25", - "size": 1704, - "sha1": "39724d96d76c2fa50ef2fee8851f5dbfbeb08b6c", - "md5": "61fd24537675c9340ff30249fad7ad15", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/badalt6-cert.pem", - "type": "file", - "name": "badalt6-cert.pem", - "base_name": "badalt6-cert", - "extension": ".pem", - "date": "2017-05-25", - "size": 1306, - "sha1": "3716bea4d44f040f776f2e2104c31e15bb8b6368", - "md5": "533378a09bed3ddba99fed4ac9c5d8e8", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/badalt6-key.pem", - "type": "file", - "name": "badalt6-key.pem", - "base_name": "badalt6-key", - "extension": ".pem", - "date": "2017-05-25", - "size": 1704, - "sha1": "97f2a7ae84b589b73d2b7417f832e1ec161b1b11", - "md5": "9528ac196c0b6bbdd7d758f93f51ffa6", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/badalt7-cert.pem", - "type": "file", - "name": "badalt7-cert.pem", - "base_name": "badalt7-cert", - "extension": ".pem", - "date": "2017-05-25", - "size": 1387, - "sha1": "7765ca78b628f70cfbb947e258c96cc28b5d45fc", - "md5": "c665b74cd74a6668ee0f786735e7ed71", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/badalt7-key.pem", - "type": "file", - "name": "badalt7-key.pem", - "base_name": "badalt7-key", - "extension": ".pem", - "date": "2017-05-25", - "size": 1704, - "sha1": "e5a75f6ecbc5fbcb2a94af22540fbb8392779085", - "md5": "45ed0aa76afb3187745cfefa66cb5ff9", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/badalt8-cert.pem", - "type": "file", - "name": "badalt8-cert.pem", - "base_name": "badalt8-cert", - "extension": ".pem", - "date": "2017-05-25", - "size": 1277, - "sha1": "c0b1360b22ef8dca80db3527028b00ae4d047853", - "md5": "0819ec5b3ad63ba0085921725fcc9dd7", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/badalt8-key.pem", - "type": "file", - "name": "badalt8-key.pem", - "base_name": "badalt8-key", - "extension": ".pem", - "date": "2017-05-25", - "size": 1704, - "sha1": "6b023beecfc87bd3f46283c1b237a24221b5ab38", - "md5": "95886869c2d93dfff31ace63e2f41de0", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/badalt9-cert.pem", - "type": "file", - "name": "badalt9-cert.pem", - "base_name": "badalt9-cert", - "extension": ".pem", - "date": "2017-05-25", - "size": 1277, - "sha1": "366d56a8725b8ad6c4447e3e8c735cc05357eabb", - "md5": "12f97f909565be4099bbabcc0cea4df5", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/badalt9-key.pem", - "type": "file", - "name": "badalt9-key.pem", - "base_name": "badalt9-key", - "extension": ".pem", - "date": "2017-05-25", - "size": 1704, - "sha1": "54eafc30feabcb000d331b20fe178b075da8566f", - "md5": "87df8477a877221e6806def72709ae89", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/ca+anyEKU.pem", - "type": "file", - "name": "ca+anyEKU.pem", - "base_name": "ca+anyEKU", - "extension": ".pem", - "date": "2017-05-25", - "size": 1102, - "sha1": "5cd68450a9e7e9b38cf832d543f179ba42b7f8f0", - "md5": "b3627ac8ed2e9da2f16b0b3e39a9ef8a", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/ca+clientAuth.pem", - "type": "file", - "name": "ca+clientAuth.pem", - "base_name": "ca+clientAuth", - "extension": ".pem", - "date": "2017-05-25", - "size": 1110, - "sha1": "c4cb9bb83efad77d8ef790a30e54e293a5ac9fa9", - "md5": "78d093e9178d1b514a6b4cb3300fd048", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/ca+serverAuth.pem", - "type": "file", - "name": "ca+serverAuth.pem", - "base_name": "ca+serverAuth", - "extension": ".pem", - "date": "2017-05-25", - "size": 1110, - "sha1": "00e974e3ff64de1aedaaa6f5dd08c1cfca287d35", - "md5": "ee1cebb12e1fe853874dcfdb3f1ffef2", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/ca-anyEKU.pem", - "type": "file", - "name": "ca-anyEKU.pem", - "base_name": "ca-anyEKU", - "extension": ".pem", - "date": "2017-05-25", - "size": 1102, - "sha1": "87c132f20643c6617949ace9d17f3ddd7b103bde", - "md5": "a2e6ae375b533179e30948dfe41a8c8c", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 847, - "sha1": "1dd0dc5cb6a980a26cc2276d107a3a03ddc70c42", - "md5": "b5a13bac383d3a09ab74fc5aa3d0d85b", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 855, - "sha1": "1bebc6142c6f80fedf769a6fad086e0fc63f8d83", - "md5": "51442eea395f19ce8de37769bce74336", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1102, - "sha1": "0b0046dad48d311bbd03db9e5149544d86b88ddf", - "md5": "517e31eaaad4ae874b390ee63c81383a", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1074, - "sha1": "e2e8dbda33d1f69f42ae9ac837e5306dbfad51c6", - "md5": "0ab118a67c01c2adae98ab8fe3e4d59b", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/ca-cert.pem", - "type": "file", - "name": "ca-cert.pem", - "base_name": "ca-cert", - "extension": ".pem", - "date": "2017-05-25", - "size": 1074, - "sha1": "4d2d964a15d95c832ab436e87925b9c0081453d1", - "md5": "ab9100ed0455fabfd9448d3128d7c568", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/ca-cert2.pem", - "type": "file", - "name": "ca-cert2.pem", - "base_name": "ca-cert2", - "extension": ".pem", - "date": "2017-05-25", - "size": 1074, - "sha1": "dd7ebe794f7c32d304beef9952a357086a74ceec", - "md5": "88c40616fa73dc811e354f247ebd9c07", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/ca-clientAuth.pem", - "type": "file", - "name": "ca-clientAuth.pem", - "base_name": "ca-clientAuth", - "extension": ".pem", - "date": "2017-05-25", - "size": 1110, - "sha1": "eed37027d493f2d26da1a3f532daa2a4da864843", - "md5": "5514924e9edfa65d1fcada270387b40c", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/ca-expired.pem", - "type": "file", - "name": "ca-expired.pem", - "base_name": "ca-expired", - "extension": ".pem", - "date": "2017-05-25", - "size": 1070, - "sha1": "5eb73a8c5b34bb63e46451800c4761f19fe248ac", - "md5": "afdf55172ee2d4fcee67727024553f26", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 717, - "sha1": "126b890a0e86bb16b026fa1dac1fc267e9398139", - "md5": "0136de034a8484fc0afcfed7d06b6c51", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/ca-key.pem", - "type": "file", - "name": "ca-key.pem", - "base_name": "ca-key", - "extension": ".pem", - "date": "2017-05-25", - "size": 1704, - "sha1": "f6d01304ce6f7793f92704272a42aed92f2d6cfc", - "md5": "60b8acd7f611384e544085dc8f9b0252", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/ca-key2.pem", - "type": "file", - "name": "ca-key2.pem", - "base_name": "ca-key2", - "extension": ".pem", - "date": "2017-05-25", - "size": 1704, - "sha1": "1ff9add518b08b078244d57c08d20454a791d291", - "md5": "3d5817eacb8a41ecd5bb50beb9fba144", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/ca-name2.pem", - "type": "file", - "name": "ca-name2.pem", - "base_name": "ca-name2", - "extension": ".pem", - "date": "2017-05-25", - "size": 1074, - "sha1": "063b6cfec5fe1b7e4e0f2f9a1fa3ce6e84061ec6", - "md5": "51ca82f0201f538ef4bf31f8176aca58", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/ca-nonbc.pem", - "type": "file", - "name": "ca-nonbc.pem", - "base_name": "ca-nonbc", - "extension": ".pem", - "date": "2017-05-25", - "size": 1074, - "sha1": "77db879c548ed8eb8c05db62534f393b635ad6c1", - "md5": "1f3e10cb8cff3013779a8351e5fa1d49", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/ca-nonca.pem", - "type": "file", - "name": "ca-nonca.pem", - "base_name": "ca-nonca", - "extension": ".pem", - "date": "2017-05-25", - "size": 1119, - "sha1": "b93bdc35caa07bbc6d2dc597a4314d65bd465c56", - "md5": "8e7ef70d9140b034f5f080296ef6d26a", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/ca-root2.pem", - "type": "file", - "name": "ca-root2.pem", - "base_name": "ca-root2", - "extension": ".pem", - "date": "2017-05-25", - "size": 1074, - "sha1": "82bfd4dccc356bef0bc9607048d7027d0d7a7325", - "md5": "cc9b0bc1bfb03e4338e63b997d058c47", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/ca-serverAuth.pem", - "type": "file", - "name": "ca-serverAuth.pem", - "base_name": "ca-serverAuth", - "extension": ".pem", - "date": "2017-05-25", - "size": 1110, - "sha1": "80bdf6ac7cc684ea9dc5039c1f5a3d113cdd7b2b", - "md5": "76633902bd4798daed583a8f5a47814c", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/cca+anyEKU.pem", - "type": "file", - "name": "cca+anyEKU.pem", - "base_name": "cca+anyEKU", - "extension": ".pem", - "date": "2017-05-25", - "size": 1131, - "sha1": "c99f7d279ce191b853352487a449aee9d45ce0b5", - "md5": "4209b08ca7b15cff6dc39284f5e1a724", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/cca+clientAuth.pem", - "type": "file", - "name": "cca+clientAuth.pem", - "base_name": "cca+clientAuth", - "extension": ".pem", - "date": "2017-05-25", - "size": 1139, - "sha1": "86199e370e9dd036033e3560f8d6d54428a3e01d", - "md5": "079be4fa8a269da39f26f01e330a8c95", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/cca+serverAuth.pem", - "type": "file", - "name": "cca+serverAuth.pem", - "base_name": "cca+serverAuth", - "extension": ".pem", - "date": "2017-05-25", - "size": 1139, - "sha1": "ab7792bcda8a216af642d3a5dd0cb2e5e0cad642", - "md5": "12dcd2f71a92ff361b57eee5d627400d", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/cca-anyEKU.pem", - "type": "file", - "name": "cca-anyEKU.pem", - "base_name": "cca-anyEKU", - "extension": ".pem", - "date": "2017-05-25", - "size": 1131, - "sha1": "9a2f86393d7eeace31548b5dee1bcb864f851bb7", - "md5": "4a8ee2a8630e95c1a7d4c4bfdbd7378b", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/cca-cert.pem", - "type": "file", - "name": "cca-cert.pem", - "base_name": "cca-cert", - "extension": ".pem", - "date": "2017-05-25", - "size": 1103, - "sha1": "a5f5687cb40dbff1d052c7c7f4f3a3a703602355", - "md5": "b91fa100f0327d61e8893ec7d7a35b8c", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/cca-clientAuth.pem", - "type": "file", - "name": "cca-clientAuth.pem", - "base_name": "cca-clientAuth", - "extension": ".pem", - "date": "2017-05-25", - "size": 1139, - "sha1": "86199e370e9dd036033e3560f8d6d54428a3e01d", - "md5": "079be4fa8a269da39f26f01e330a8c95", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/cca-serverAuth.pem", - "type": "file", - "name": "cca-serverAuth.pem", - "base_name": "cca-serverAuth", - "extension": ".pem", - "date": "2017-05-25", - "size": 1139, - "sha1": "aedd60279576f6f9767939e660d9f87a984d25d8", - "md5": "69f0cd58e6e47a23162b60e58b08c383", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/croot+anyEKU.pem", - "type": "file", - "name": "croot+anyEKU.pem", - "base_name": "croot+anyEKU", - "extension": ".pem", - "date": "2017-05-25", - "size": 1139, - "sha1": "5f1c1800b89427286e91657d3a3e681349ab2811", - "md5": "17f1c21abde4b9f9309b615db8ad63ee", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/croot+clientAuth.pem", - "type": "file", - "name": "croot+clientAuth.pem", - "base_name": "croot+clientAuth", - "extension": ".pem", - "date": "2017-05-25", - "size": 1143, - "sha1": "66e4a8e8846ff7a8c088965f457e903be7c59ea6", - "md5": "f90af645c14b6e016e1d577e54b08862", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/croot+serverAuth.pem", - "type": "file", - "name": "croot+serverAuth.pem", - "base_name": "croot+serverAuth", - "extension": ".pem", - "date": "2017-05-25", - "size": 1143, - "sha1": "19fd40090111cfc47aca6a5a6b797f533df5ec86", - "md5": "f700e70f822dc4ed57e3ec255ddf8574", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/croot-anyEKU.pem", - "type": "file", - "name": "croot-anyEKU.pem", - "base_name": "croot-anyEKU", - "extension": ".pem", - "date": "2017-05-25", - "size": 1139, - "sha1": "10ddaf03ac7a8030a2b2d554641f36bc4ae28ec1", - "md5": "ecb622e210cd5ed34bc6c613be9ccbae", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/croot-cert.pem", - "type": "file", - "name": "croot-cert.pem", - "base_name": "croot-cert", - "extension": ".pem", - "date": "2017-05-25", - "size": 1111, - "sha1": "69795a21e68491fbe0b732d3b63c9b8b81ab7ece", - "md5": "1271db40db5e5e360025a37ee279f4a8", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/croot-clientAuth.pem", - "type": "file", - "name": "croot-clientAuth.pem", - "base_name": "croot-clientAuth", - "extension": ".pem", - "date": "2017-05-25", - "size": 1143, - "sha1": "f323184872d406d9c00a78cb7d2ed1e18121886e", - "md5": "6f0bed74d9efa7f7a407e1ba780a4bf3", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/croot-serverAuth.pem", - "type": "file", - "name": "croot-serverAuth.pem", - "base_name": "croot-serverAuth", - "extension": ".pem", - "date": "2017-05-25", - "size": 1143, - "sha1": "930cbe4432847a38d9938d6f44b9cfbe8220d9aa", - "md5": "8c36b1f1efb66b3b0bbc6c203ac90b63", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/ee+clientAuth.pem", - "type": "file", - "name": "ee+clientAuth.pem", - "base_name": "ee+clientAuth", - "extension": ".pem", - "date": "2017-05-25", - "size": 1180, - "sha1": "3740d73ff1d8b47c6f68663868263057638b31da", - "md5": "237bb9c991fd7f260c4d7b1f2047b5a4", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/ee+serverAuth.pem", - "type": "file", - "name": "ee+serverAuth.pem", - "base_name": "ee+serverAuth", - "extension": ".pem", - "date": "2017-05-25", - "size": 1180, - "sha1": "f8f4c16fd8f7a18a5fd4fca33942ab8850cd97b2", - "md5": "d3304a32056e4089a59987179eae53cb", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 916, - "sha1": "22044b3f4ed68f272b74365715c50268955dcbf5", - "md5": "01a6af00a3fe6cfcb754c06ea279ba42", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 924, - "sha1": "d8d6a543626689a4299169b8d1e345d70579094b", - "md5": "8990584ad109eb8b2691387a8901a7cc", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1143, - "sha1": "899f6cd67b0ad7ff4bc40f9d695d4cee128e6823", - "md5": "e886135943022d315f42260328bd8498", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/ee-cert.pem", - "type": "file", - "name": "ee-cert.pem", - "base_name": "ee-cert", - "extension": ".pem", - "date": "2017-05-25", - "size": 1143, - "sha1": "ed2a0fcc18aa6d0d5dc4d139327532c8f89fa840", - "md5": "efcc5f61bdfb95dc2740d875f944d975", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/ee-cert2.pem", - "type": "file", - "name": "ee-cert2.pem", - "base_name": "ee-cert2", - "extension": ".pem", - "date": "2017-05-25", - "size": 1143, - "sha1": "2d9dc974d77bc071c53a2edfdbb394dbd948193e", - "md5": "a25e7f1c02587d42535b16ff8bf0c09f", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2217, - "sha1": "6e929b7846626d33f6991fce5b62367fa0b46f67", - "md5": "ac8965ffdf8599f2cd631ce40b3d5deb", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/ee-client.pem", - "type": "file", - "name": "ee-client.pem", - "base_name": "ee-client", - "extension": ".pem", - "date": "2017-05-25", - "size": 1143, - "sha1": "a4d75010bc9338682486856fdba16cd1e3a75281", - "md5": "7ff7cdeebfee7f712f01f1a0f8712dcf", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/ee-clientAuth.pem", - "type": "file", - "name": "ee-clientAuth.pem", - "base_name": "ee-clientAuth", - "extension": ".pem", - "date": "2017-05-25", - "size": 1180, - "sha1": "50dfa71dc430f1176520c23b726b352129fea45c", - "md5": "bd5e2e6c0c55f6ad7c4582e6531c674a", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/ee-expired.pem", - "type": "file", - "name": "ee-expired.pem", - "base_name": "ee-expired", - "extension": ".pem", - "date": "2017-05-25", - "size": 1143, - "sha1": "4b3b5d3d0a7126cebf2b1136e9433002a764a2c5", - "md5": "7b89b7a88eaa2899d569e157c875a8a4", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 717, - "sha1": "3e07c2290034dc9097462ffbf4b64ed942d99f20", - "md5": "167bfafeb8c0dabb012e3fa7f37eef31", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/ee-key.pem", - "type": "file", - "name": "ee-key.pem", - "base_name": "ee-key", - "extension": ".pem", - "date": "2017-05-25", - "size": 1704, - "sha1": "dde8053f2d9baaa5a2534e6bdc10711da82addca", - "md5": "33b966d58c9fb846e1bbbe792400c7bf", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/ee-name2.pem", - "type": "file", - "name": "ee-name2.pem", - "base_name": "ee-name2", - "extension": ".pem", - "date": "2017-05-25", - "size": 1147, - "sha1": "fb334d2eae2971b2a7b0def89683049e5df90a26", - "md5": "83af9957115b602e3a0373d2b17dbb57", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/ee-serverAuth.pem", - "type": "file", - "name": "ee-serverAuth.pem", - "base_name": "ee-serverAuth", - "extension": ".pem", - "date": "2017-05-25", - "size": 1180, - "sha1": "49d0b501490f9a3cf15066ec20516abeb5601e8e", - "md5": "240e5b7b8b6f21171db047723491aadc", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/embeddedSCTs1-key.pem", - "type": "file", - "name": "embeddedSCTs1-key.pem", - "base_name": "embeddedSCTs1-key", - "extension": ".pem", - "date": "2017-05-25", - "size": 887, - "sha1": "780a84223b18f40da02a640a184ec23f58fcfd6d", - "md5": "ba6515e0532ce115989c1e0518b38200", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/embeddedSCTs1.pem", - "type": "file", - "name": "embeddedSCTs1.pem", - "base_name": "embeddedSCTs1", - "extension": ".pem", - "date": "2017-05-25", - "size": 1220, - "sha1": "43141d9e4215ae536fd14dc0b1882d3223f63903", - "md5": "7908ee827c4f3ecc58d7173b303b5807", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/embeddedSCTs1.sct", - "type": "file", - "name": "embeddedSCTs1.sct", - "base_name": "embeddedSCTs1", - "extension": ".sct", - "date": "2017-05-25", - "size": 580, - "sha1": "78241f8c33e1c6c29bde2f32b9407c84d29c5b18", - "md5": "df963a06ab60360b8abf95de3e137f15", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [], - "holders": [], - "authors": [ - "GMT Extensions none Signature" - ], - "start_line": 4, - "end_line": 7 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/embeddedSCTs1_issuer.pem", - "type": "file", - "name": "embeddedSCTs1_issuer.pem", - "base_name": "embeddedSCTs1_issuer", - "extension": ".pem", - "date": "2017-05-25", - "size": 1038, - "sha1": "253f5baec5497146de307e28a652c33d0a1b2a4d", - "md5": "36e5462bfa22ada28ecb27f8dd305e71", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/embeddedSCTs3.pem", - "type": "file", - "name": "embeddedSCTs3.pem", - "base_name": "embeddedSCTs3", - "extension": ".pem", - "date": "2017-05-25", - "size": 2748, - "sha1": "c641357dbde001025507c95728c31327de6e10c1", - "md5": "dbc57b975ae584dbe36a7ed4ebf8de49", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/embeddedSCTs3.sct", - "type": "file", - "name": "embeddedSCTs3.sct", - "base_name": "embeddedSCTs3", - "extension": ".sct", - "date": "2017-05-25", - "size": 1739, - "sha1": "f8d2f54dd6a1340919ffbf26744d2dd5c3b06b59", - "md5": "0c698f14c6e131215ea61fcca104d52a", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "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": [] - }, - { - "path": "openssl-1.1.0f/test/certs/embeddedSCTs3_issuer.pem", - "type": "file", - "name": "embeddedSCTs3_issuer.pem", - "base_name": "embeddedSCTs3_issuer", - "extension": ".pem", - "date": "2017-05-25", - "size": 2159, - "sha1": "c1e7f33df6a1db0c7c3df44b75b3074f31e5d62c", - "md5": "c08b7de61dca895158bf3a416055e4b3", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/interCA.key", - "type": "file", - "name": "interCA.key", - "base_name": "interCA", - "extension": ".key", - "date": "2017-05-25", - "size": 1675, - "sha1": "df0429e2b88b357bd81efe6a5a0240477ff320cd", - "md5": "ce53b09318de337b067bd07f718af4cb", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/interCA.pem", - "type": "file", - "name": "interCA.pem", - "base_name": "interCA", - "extension": ".pem", - "date": "2017-05-25", - "size": 1273, - "sha1": "282b2c7a1e13e283aa6b5d9869db5f5fc1657ab4", - "md5": "4a0a727959598ba5dd61adbb0f514fa1", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/leaf.key", - "type": "file", - "name": "leaf.key", - "base_name": "leaf", - "extension": ".key", - "date": "2017-05-25", - "size": 1679, - "sha1": "0503f3377d72dbf55d1123a91628e9b2c9472612", - "md5": "409403bd9f4ba18a707792a2e81be0ad", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/leaf.pem", - "type": "file", - "name": "leaf.pem", - "base_name": "leaf", - "extension": ".pem", - "date": "2017-05-25", - "size": 1273, - "sha1": "c84448237b7be0ad533e7e19b9c18d2f56b03cc0", - "md5": "0a2b3aca09b7e0dc76bf77e2a8f64cb0", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/mkcert.sh", - "type": "file", - "name": "mkcert.sh", - "base_name": "mkcert", - "extension": ".sh", - "date": "2017-05-25", - "size": 6934, - "sha1": "4c3a321ea081d268334e74eb3dcefb08f5c2228e", - "md5": "10240539feeb9884547970773be66f8c", - "files_count": null, - "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, - "scan_errors": [], - "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": [] - }, - { - "path": "openssl-1.1.0f/test/certs/nca+anyEKU.pem", - "type": "file", - "name": "nca+anyEKU.pem", - "base_name": "nca+anyEKU", - "extension": ".pem", - "date": "2017-05-25", - "size": 1155, - "sha1": "b0a793f6e8e4818aa5bdc55caa8b6e9c45e2d120", - "md5": "780e401a62e4d3060ee32e675c00fba0", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/nca+serverAuth.pem", - "type": "file", - "name": "nca+serverAuth.pem", - "base_name": "nca+serverAuth", - "extension": ".pem", - "date": "2017-05-25", - "size": 1155, - "sha1": "b0a793f6e8e4818aa5bdc55caa8b6e9c45e2d120", - "md5": "780e401a62e4d3060ee32e675c00fba0", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/ncca-cert.pem", - "type": "file", - "name": "ncca-cert.pem", - "base_name": "ncca-cert", - "extension": ".pem", - "date": "2017-05-25", - "size": 1265, - "sha1": "ed84f55f0505f202ea58ab18f274a1ead59a315c", - "md5": "a34616f3ab116d45e8fe95a9205ceff7", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/ncca-key.pem", - "type": "file", - "name": "ncca-key.pem", - "base_name": "ncca-key", - "extension": ".pem", - "date": "2017-05-25", - "size": 1704, - "sha1": "b089fe6b18ba4e4e380376352838853f76603f54", - "md5": "f7b841e9bd1a25efc25a5d7d56d6b06b", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/ncca1-cert.pem", - "type": "file", - "name": "ncca1-cert.pem", - "base_name": "ncca1-cert", - "extension": ".pem", - "date": "2017-05-25", - "size": 1220, - "sha1": "dd2e01da91c5fe141cb1a29ee9e44cb7a4678823", - "md5": "8aa336740ba52816d03b99b8eb5aaa56", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/ncca1-key.pem", - "type": "file", - "name": "ncca1-key.pem", - "base_name": "ncca1-key", - "extension": ".pem", - "date": "2017-05-25", - "size": 1704, - "sha1": "f80d505fc30fec7b9d80960565277dc76c1241e7", - "md5": "b8b1c2e1c47b098bbed1ecb4871e7e36", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/ncca2-cert.pem", - "type": "file", - "name": "ncca2-cert.pem", - "base_name": "ncca2-cert", - "extension": ".pem", - "date": "2017-05-25", - "size": 1200, - "sha1": "8c550781bef0cfdb51118f4c31182d484499a80e", - "md5": "50f7b62fbc84dc076ac3ec709dc82d23", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/ncca2-key.pem", - "type": "file", - "name": "ncca2-key.pem", - "base_name": "ncca2-key", - "extension": ".pem", - "date": "2017-05-25", - "size": 1704, - "sha1": "5cf9a1a2c0d15e07e2bc2e2611bce554bcf55541", - "md5": "4b3123100a6b604a02633ed17cebed10", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/ncca3-cert.pem", - "type": "file", - "name": "ncca3-cert.pem", - "base_name": "ncca3-cert", - "extension": ".pem", - "date": "2017-05-25", - "size": 1192, - "sha1": "8702767d825d28db60435cf74c35e9788e3bf974", - "md5": "185dd9733ec2db181bef0de1c05843a1", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/ncca3-key.pem", - "type": "file", - "name": "ncca3-key.pem", - "base_name": "ncca3-key", - "extension": ".pem", - "date": "2017-05-25", - "size": 1704, - "sha1": "6463838d1b388bba9953572b715bbc61ad17a402", - "md5": "1117e2b055c470110391fa3e20a77d30", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/nroot+anyEKU.pem", - "type": "file", - "name": "nroot+anyEKU.pem", - "base_name": "nroot+anyEKU", - "extension": ".pem", - "date": "2017-05-25", - "size": 1163, - "sha1": "f9ec6d9481d90a20a2edb8caecbef128b95b7b44", - "md5": "819eeeb24d2c2bb3441e921ab9ac2738", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/nroot+serverAuth.pem", - "type": "file", - "name": "nroot+serverAuth.pem", - "base_name": "nroot+serverAuth", - "extension": ".pem", - "date": "2017-05-25", - "size": 1167, - "sha1": "374f231acec2422710cda3ad9b678019ac1b5d0b", - "md5": "7459494e6c74cb3751d9eff9308f6d04", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/pathlen.pem", - "type": "file", - "name": "pathlen.pem", - "base_name": "pathlen", - "extension": ".pem", - "date": "2017-05-25", - "size": 1294, - "sha1": "e5e3a038c11d47cdb75a6744b3012b816c9feb8f", - "md5": "d4dd9e3a7470d36ff5038c59910dceae", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/pc1-cert.pem", - "type": "file", - "name": "pc1-cert.pem", - "base_name": "pc1-cert", - "extension": ".pem", - "date": "2017-05-25", - "size": 1204, - "sha1": "4884b78f498b86d22782bb2e205424be9a8a2d0b", - "md5": "90541a546205b9556b15b4052210655d", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/pc1-key.pem", - "type": "file", - "name": "pc1-key.pem", - "base_name": "pc1-key", - "extension": ".pem", - "date": "2017-05-25", - "size": 1704, - "sha1": "0d92fc08edcc497cda1c6c2f1aac0192c3100bcd", - "md5": "556214e762ff0acd89855eb6ed342fa5", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/pc2-cert.pem", - "type": "file", - "name": "pc2-cert.pem", - "base_name": "pc2-cert", - "extension": ".pem", - "date": "2017-05-25", - "size": 1269, - "sha1": "891d80a018e098d58bb63d85248bad31865bf979", - "md5": "7974ebeadd6b1ce3a78bd80b3b3932ab", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/pc2-key.pem", - "type": "file", - "name": "pc2-key.pem", - "base_name": "pc2-key", - "extension": ".pem", - "date": "2017-05-25", - "size": 1704, - "sha1": "16979a895e9657aa188f8ccd88b18d4d0cbba282", - "md5": "50296d3f712cf80d6b88365c52967232", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/pc5-cert.pem", - "type": "file", - "name": "pc5-cert.pem", - "base_name": "pc5-cert", - "extension": ".pem", - "date": "2017-05-25", - "size": 1265, - "sha1": "b9e874291caf949e51fe53ccb6cbbbad05ae2a43", - "md5": "b7849bec0e35c9077edef90abd360586", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/pc5-key.pem", - "type": "file", - "name": "pc5-key.pem", - "base_name": "pc5-key", - "extension": ".pem", - "date": "2017-05-25", - "size": 1704, - "sha1": "e04d059fb82efd969cd99f6a8f0042f09b883510", - "md5": "1d609537d05d447d8e79185b7bc880e7", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/root+anyEKU.pem", - "type": "file", - "name": "root+anyEKU.pem", - "base_name": "root+anyEKU", - "extension": ".pem", - "date": "2017-05-25", - "size": 1110, - "sha1": "3a35f9e0835aa54119e80f46f8708d92fe963f7b", - "md5": "af4d6cb8d79ee7d01dfce9bfe8afc07d", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/root+clientAuth.pem", - "type": "file", - "name": "root+clientAuth.pem", - "base_name": "root+clientAuth", - "extension": ".pem", - "date": "2017-05-25", - "size": 1115, - "sha1": "4f2ee859cc2f9844feb9b2f0d2f2935951f63496", - "md5": "efaa8f2601686e985cdcd34ffe9e4bbd", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/root+serverAuth.pem", - "type": "file", - "name": "root+serverAuth.pem", - "base_name": "root+serverAuth", - "extension": ".pem", - "date": "2017-05-25", - "size": 1115, - "sha1": "6903bbd1d92d2daf8b25151c13dc46db4e38c544", - "md5": "b31399f01ff388014d580de6c04f71a9", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/root-anyEKU.pem", - "type": "file", - "name": "root-anyEKU.pem", - "base_name": "root-anyEKU", - "extension": ".pem", - "date": "2017-05-25", - "size": 1110, - "sha1": "4d233e6ef1cab7d6d8c917c6e678913f2449c2d3", - "md5": "5378312c906665ed5a1f1f730f031c9e", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 635, - "sha1": "a5b5fb8b5692703abbcf392ed0b532fb5b98391d", - "md5": "09e69e1e591530f8abff446282ce659e", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1082, - "sha1": "29a1c88967d892d5016e151aeab17deb21cc2090", - "md5": "fb704dad6db7f9af52da360397e4728d", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/root-cert.pem", - "type": "file", - "name": "root-cert.pem", - "base_name": "root-cert", - "extension": ".pem", - "date": "2017-05-25", - "size": 1082, - "sha1": "3ce6df52ab9e42657d8b8b181cc046dfd6f20b4e", - "md5": "4e256e3b22d3d72b970679d4e9a5247e", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/root-cert2.pem", - "type": "file", - "name": "root-cert2.pem", - "base_name": "root-cert2", - "extension": ".pem", - "date": "2017-05-25", - "size": 1082, - "sha1": "6c5ea25b474ede5a7b6693f80dfe8e2d86e9fca3", - "md5": "284a06750d3d9cfccd1c6cba85ee44a9", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/root-clientAuth.pem", - "type": "file", - "name": "root-clientAuth.pem", - "base_name": "root-clientAuth", - "extension": ".pem", - "date": "2017-05-25", - "size": 1115, - "sha1": "0b2dc70389e06cc3bc37840957bf89274a491527", - "md5": "72700b0a5c41c4fbcd3b7e093e919b66", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 717, - "sha1": "be4a795b5c89c926d355cad134e32088263d6540", - "md5": "aa2f854b9080facae0a698ae1379531a", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/root-key.pem", - "type": "file", - "name": "root-key.pem", - "base_name": "root-key", - "extension": ".pem", - "date": "2017-05-25", - "size": 1704, - "sha1": "789d397ba8cb72ef2f6559fcc3cbe4c6307d785a", - "md5": "196f424fe77707349603663535c9b374", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/root-key2.pem", - "type": "file", - "name": "root-key2.pem", - "base_name": "root-key2", - "extension": ".pem", - "date": "2017-05-25", - "size": 1704, - "sha1": "28f3143500b756fcb0178ae224834f07c2baeab0", - "md5": "a3248735ac9c806ab07024471fa93e4f", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/root-name2.pem", - "type": "file", - "name": "root-name2.pem", - "base_name": "root-name2", - "extension": ".pem", - "date": "2017-05-25", - "size": 1090, - "sha1": "796d5bc44200e6b0398677633082a51905b42281", - "md5": "e6939c7a78716f14ff24591f133074bc", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/root-nonca.pem", - "type": "file", - "name": "root-nonca.pem", - "base_name": "root-nonca", - "extension": ".pem", - "date": "2017-05-25", - "size": 1131, - "sha1": "bb3ee1c9da63f89d6f8aa91366599c92babef08e", - "md5": "a4da4ddc62e1b133799bc952cd791a8e", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/root-noserver.pem", - "type": "file", - "name": "root-noserver.pem", - "base_name": "root-noserver", - "extension": ".pem", - "date": "2017-05-25", - "size": 1115, - "sha1": "2f6078e5700a354275d7efc12c8c4aab55e22c55", - "md5": "1b92c31c216c99b192809c69c3c38b40", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/root-serverAuth.pem", - "type": "file", - "name": "root-serverAuth.pem", - "base_name": "root-serverAuth", - "extension": ".pem", - "date": "2017-05-25", - "size": 1115, - "sha1": "df2a08205c2faea012d35cbd61f29d2a8d1e43a9", - "md5": "3862c4bf0e4c11268227708ed7753937", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/root2+clientAuth.pem", - "type": "file", - "name": "root2+clientAuth.pem", - "base_name": "root2+clientAuth", - "extension": ".pem", - "date": "2017-05-25", - "size": 1115, - "sha1": "929f897ecd9d1ff022eeae84ca3b2c372a06d9df", - "md5": "1c922ddeef7c95de97d7377f16d643d5", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/root2+serverAuth.pem", - "type": "file", - "name": "root2+serverAuth.pem", - "base_name": "root2+serverAuth", - "extension": ".pem", - "date": "2017-05-25", - "size": 1115, - "sha1": "a82b40b9a5a9084ddf46ff3c93ef6d9457ef0fc3", - "md5": "2b7382213dfa1d11f7abae7992fe3e93", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/root2-serverAuth.pem", - "type": "file", - "name": "root2-serverAuth.pem", - "base_name": "root2-serverAuth", - "extension": ".pem", - "date": "2017-05-25", - "size": 1115, - "sha1": "3d8625527e94fcdd6417daccf41e28b7c5a43fba", - "md5": "49dc8ae5ac4e11ea9fa6f6e9ccf4f46a", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/rootCA.key", - "type": "file", - "name": "rootCA.key", - "base_name": "rootCA", - "extension": ".key", - "date": "2017-05-25", - "size": 1679, - "sha1": "ef86f75278e81b8236744166d0aca1266563a3ff", - "md5": "6b4bbde6a624a2090c0f0d21e7897251", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/rootCA.pem", - "type": "file", - "name": "rootCA.pem", - "base_name": "rootCA", - "extension": ".pem", - "date": "2017-05-25", - "size": 1273, - "sha1": "a444da49deafb5fc5367b4fbe0a41729ccc910a8", - "md5": "7016badc654eb29f4e870c423c9c2da8", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/rootcert.pem", - "type": "file", - "name": "rootcert.pem", - "base_name": "rootcert", - "extension": ".pem", - "date": "2017-05-25", - "size": 1082, - "sha1": "d8e86ebab29cc11c73f4e32d654883545b6a427c", - "md5": "90d0992fe812ac82742c753532522b54", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/rootkey.pem", - "type": "file", - "name": "rootkey.pem", - "base_name": "rootkey", - "extension": ".pem", - "date": "2017-05-25", - "size": 1708, - "sha1": "4dba78b51069f0b9c26a5b8065f54bffc8ecba17", - "md5": "ba3d5907d5be4ff786333d35dc39970a", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/roots.pem", - "type": "file", - "name": "roots.pem", - "base_name": "roots", - "extension": ".pem", - "date": "2017-05-25", - "size": 2558, - "sha1": "572bebf2b2beedb4d260200bc70066f4b25cb5b1", - "md5": "e71212dfb578ed4e58b57481f4be4064", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/sca+anyEKU.pem", - "type": "file", - "name": "sca+anyEKU.pem", - "base_name": "sca+anyEKU", - "extension": ".pem", - "date": "2017-05-25", - "size": 1131, - "sha1": "be6747e97116fd17e98881cc73837da0481f7144", - "md5": "89e845be2f7f10b08155ce18d816921f", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/sca+clientAuth.pem", - "type": "file", - "name": "sca+clientAuth.pem", - "base_name": "sca+clientAuth", - "extension": ".pem", - "date": "2017-05-25", - "size": 1139, - "sha1": "82ee15149155bc48191658e8f5d1238da7f1fd2d", - "md5": "9e7799a2427e8744ea64919ddc5e899e", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/sca+serverAuth.pem", - "type": "file", - "name": "sca+serverAuth.pem", - "base_name": "sca+serverAuth", - "extension": ".pem", - "date": "2017-05-25", - "size": 1139, - "sha1": "35ade7c1f27a30fbc12f2d0c2314fedb9e1125a1", - "md5": "cdb2c0c23b8ec0c8c2c8b041f8a0e931", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/sca-anyEKU.pem", - "type": "file", - "name": "sca-anyEKU.pem", - "base_name": "sca-anyEKU", - "extension": ".pem", - "date": "2017-05-25", - "size": 1131, - "sha1": "2d888dce969eb9c0dc1004d0258f705a27ea54c5", - "md5": "f5c73cc2098ed809c5b813401bfdd082", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/sca-cert.pem", - "type": "file", - "name": "sca-cert.pem", - "base_name": "sca-cert", - "extension": ".pem", - "date": "2017-05-25", - "size": 1103, - "sha1": "4c7b88926de021b449091cafe65bd174252ceade", - "md5": "be12a3060dceee6b42618925f457d22b", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/sca-clientAuth.pem", - "type": "file", - "name": "sca-clientAuth.pem", - "base_name": "sca-clientAuth", - "extension": ".pem", - "date": "2017-05-25", - "size": 1139, - "sha1": "3f6e14d6eded4de39bf2157b524dd8adc053b7f6", - "md5": "7d169dc384f17252d75a04bba6157bb7", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/sca-serverAuth.pem", - "type": "file", - "name": "sca-serverAuth.pem", - "base_name": "sca-serverAuth", - "extension": ".pem", - "date": "2017-05-25", - "size": 1139, - "sha1": "ea5c1e3ed19bd91c4b6503ebbca44fe544f535ca", - "md5": "973d68ee44bd656ea8119606707c1d02", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/server-trusted.pem", - "type": "file", - "name": "server-trusted.pem", - "base_name": "server-trusted", - "extension": ".pem", - "date": "2017-05-25", - "size": 1188, - "sha1": "68e336d9ed3dfcd1cf3884cd7a6eff05fbc2f6fa", - "md5": "8c4c88b3fc7acfd83f9363c4e810b500", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/servercert.pem", - "type": "file", - "name": "servercert.pem", - "base_name": "servercert", - "extension": ".pem", - "date": "2017-05-25", - "size": 1151, - "sha1": "fbe2d71732a2cc231ba7ff5e673521dcd7522213", - "md5": "7a212cb88421ef95568acebdf6568292", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/serverkey.pem", - "type": "file", - "name": "serverkey.pem", - "base_name": "serverkey", - "extension": ".pem", - "date": "2017-05-25", - "size": 1704, - "sha1": "3f5e0ab72378127fef49736d3215c316bda38b67", - "md5": "6c38a6fb4413cd371379abbe06328663", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/setup.sh", - "type": "file", - "name": "setup.sh", - "base_name": "setup", - "extension": ".sh", - "date": "2017-05-25", - "size": 15142, - "sha1": "79a2353c36c35a2ae56a77c0135b19d11f753408", - "md5": "4b8cc6a5d5e3d18b75a893a61cc8d877", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/sroot+anyEKU.pem", - "type": "file", - "name": "sroot+anyEKU.pem", - "base_name": "sroot+anyEKU", - "extension": ".pem", - "date": "2017-05-25", - "size": 1139, - "sha1": "7a3a35ea9eb57e7e61284b3d6721642684fc57b4", - "md5": "1b86519b33fc9ec637b813732e963d7c", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/sroot+clientAuth.pem", - "type": "file", - "name": "sroot+clientAuth.pem", - "base_name": "sroot+clientAuth", - "extension": ".pem", - "date": "2017-05-25", - "size": 1143, - "sha1": "11dba485b381871cc91659b9ed3b857c18da8d36", - "md5": "ea0ef56b6caf8343cd64f1b2c042c2b8", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/sroot+serverAuth.pem", - "type": "file", - "name": "sroot+serverAuth.pem", - "base_name": "sroot+serverAuth", - "extension": ".pem", - "date": "2017-05-25", - "size": 1143, - "sha1": "04d2f0a5a6ce43b5edfc39d85ba1501bb961c993", - "md5": "cb53322f4789a777720ce33579f8a606", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/sroot-anyEKU.pem", - "type": "file", - "name": "sroot-anyEKU.pem", - "base_name": "sroot-anyEKU", - "extension": ".pem", - "date": "2017-05-25", - "size": 1139, - "sha1": "55572d64e9a1f2907d1d081cd4fc7b6593284a82", - "md5": "dc962785869121be174a356f01008a8d", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/sroot-cert.pem", - "type": "file", - "name": "sroot-cert.pem", - "base_name": "sroot-cert", - "extension": ".pem", - "date": "2017-05-25", - "size": 1111, - "sha1": "4ef3ca4b50763445d63f80d6756942a2e84f90b1", - "md5": "3139c5bb883fb5f987aadba52a26191b", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/sroot-clientAuth.pem", - "type": "file", - "name": "sroot-clientAuth.pem", - "base_name": "sroot-clientAuth", - "extension": ".pem", - "date": "2017-05-25", - "size": 1143, - "sha1": "76fe13a3e2142f361d670d33fe50c7ddbf0d138c", - "md5": "1e0c0532254044ea463f276e73f31bd9", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/sroot-serverAuth.pem", - "type": "file", - "name": "sroot-serverAuth.pem", - "base_name": "sroot-serverAuth", - "extension": ".pem", - "date": "2017-05-25", - "size": 1143, - "sha1": "a1739e6dbb056756e3d227eb067aaa63aab7a04b", - "md5": "4fe03a820e0890348add71786a219979", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/subinterCA-ss.pem", - "type": "file", - "name": "subinterCA-ss.pem", - "base_name": "subinterCA-ss", - "extension": ".pem", - "date": "2017-05-25", - "size": 1285, - "sha1": "a0c3550f21b805fca1b4fdc1ca641287a7ec7530", - "md5": "137c3283b90c12c91ee2da83def7f943", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/subinterCA.key", - "type": "file", - "name": "subinterCA.key", - "base_name": "subinterCA", - "extension": ".key", - "date": "2017-05-25", - "size": 1679, - "sha1": "70d16585c4483e47ae5cfb137a5509a5cd25c4d0", - "md5": "eaab26ea4d7a6b8a7b19373f502aab2f", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/subinterCA.pem", - "type": "file", - "name": "subinterCA.pem", - "base_name": "subinterCA", - "extension": ".pem", - "date": "2017-05-25", - "size": 1281, - "sha1": "4a2a97892ce72d8c1b701a79925374aa0906214d", - "md5": "54622d7d5103d651abd473f142bf3cae", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/untrusted.pem", - "type": "file", - "name": "untrusted.pem", - "base_name": "untrusted", - "extension": ".pem", - "date": "2017-05-25", - "size": 2554, - "sha1": "265fdb92960be006d9572c7d8484b806e245f160", - "md5": "e9c7e850db19874e85547fc57752a0ce", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/wrongcert.pem", - "type": "file", - "name": "wrongcert.pem", - "base_name": "wrongcert", - "extension": ".pem", - "date": "2017-05-25", - "size": 1099, - "sha1": "7c6f751ecd7f3ddfd291b48f42213d13885adaa2", - "md5": "dd319b84a725057e8c32243882cb775d", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/certs/wrongkey.pem", - "type": "file", - "name": "wrongkey.pem", - "base_name": "wrongkey", - "extension": ".pem", - "date": "2017-05-25", - "size": 1708, - "sha1": "0d3e59bffc2da21ec7d1403f2342bf260344720b", - "md5": "8d8b825adf972d132c837f2aaa312b01", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/ct/log_list.conf", - "type": "file", - "name": "log_list.conf", - "base_name": "log_list", - "extension": ".conf", - "date": "2017-05-25", - "size": 1987, - "sha1": "3ea345c431195c1f9740b5f0d476417f36374f17", - "md5": "3dc5dea30f8a81d25b3c2ed51e31e2e3", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/ct/tls1.sct", - "type": "file", - "name": "tls1.sct", - "base_name": "tls1", - "extension": ".sct", - "date": "2017-05-25", - "size": 580, - "sha1": "78241f8c33e1c6c29bde2f32b9407c84d29c5b18", - "md5": "df963a06ab60360b8abf95de3e137f15", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [], - "holders": [], - "authors": [ - "GMT Extensions none Signature" - ], - "start_line": 4, - "end_line": 7 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/d2i-tests/bad-cms.der", - "type": "file", - "name": "bad-cms.der", - "base_name": "bad-cms", - "extension": ".der", - "date": "2017-05-25", - "size": 24, - "sha1": "f3c6fad094a0dff539c9a312db077faca2774317", - "md5": "3a261cdc36562931ff3077e6a063620b", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 4, - "sha1": "e8f8bb99f9c79840058c45628a7279d5e6e35091", - "md5": "ddae5a1703736724e812c007cc6101cf", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 4, - "sha1": "196870f03e29e85b0d646bb81048da61facfd05f", - "md5": "385a44964cc5f3a4aaa89b83091307e3", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/d2i-tests/bad_bio.der", - "type": "file", - "name": "bad_bio.der", - "base_name": "bad_bio", - "extension": ".der", - "date": "2017-05-25", - "size": 7, - "sha1": "a1d31eb10025646ab20e16f141885aecb846c20c", - "md5": "937ac15bafd655b459e9a21b9dd1be11", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/d2i-tests/bad_cert.der", - "type": "file", - "name": "bad_cert.der", - "base_name": "bad_cert", - "extension": ".der", - "date": "2017-05-25", - "size": 1007, - "sha1": "001e5375a42d2fb353de3da38a766f11eba9c316", - "md5": "e04ecb22ddd0a056d712e216a9ddd6b9", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/d2i-tests/bad_generalname.der", - "type": "file", - "name": "bad_generalname.der", - "base_name": "bad_generalname", - "extension": ".der", - "date": "2017-05-25", - "size": 60, - "sha1": "ffa57b107c8a295b4ebece349109d2e1a648d6ec", - "md5": "10d1346c7ff6f21f7b1f5c7b8abc780d", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/d2i-tests/high_tag.der", - "type": "file", - "name": "high_tag.der", - "base_name": "high_tag", - "extension": ".der", - "date": "2017-05-25", - "size": 6, - "sha1": "a48875aa5ff96624d61faac1d88e4378c554bc3a", - "md5": "a83c275cb2fdaedbb0eecd59b7564096", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/d2i-tests/int0.der", - "type": "file", - "name": "int0.der", - "base_name": "int0", - "extension": ".der", - "date": "2017-05-25", - "size": 3, - "sha1": "56e888ae9db53f2bcba04c4be287530733771bdf", - "md5": "9a4f48c371ae1d214d719be64ae9fbb0", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/d2i-tests/int1.der", - "type": "file", - "name": "int1.der", - "base_name": "int1", - "extension": ".der", - "date": "2017-05-25", - "size": 3, - "sha1": "a24e6cdcdc67c317f9ce567a0bf3d7040066af48", - "md5": "251c1fa8a1e95434a64dce0d4826443e", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/d2i-tests/intminus1.der", - "type": "file", - "name": "intminus1.der", - "base_name": "intminus1", - "extension": ".der", - "date": "2017-05-25", - "size": 3, - "sha1": "60135fd7e7e22ea25842ade5ccafe5eec15b6dd1", - "md5": "6968f45023854c35bd5f485292578da7", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/ocsp-tests/D1.ors", - "type": "file", - "name": "D1.ors", - "base_name": "D1", - "extension": ".ors", - "date": "2017-05-25", - "size": 2020, - "sha1": "5d9c6d431a6b207afafccf9eb963ece2b482dbd3", - "md5": "abf556b1e88be5027186fd63fd788731", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2394, - "sha1": "5b4fd3e540aff2ce347807a5d92dde016054dfce", - "md5": "e0cf32eed891ebf3a2e7c70663a792a1", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1631, - "sha1": "87c721cbc9c5d275b3b0b1695cf428528858d78c", - "md5": "d3574a8cff3e68da4e333581df4e784d", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/ocsp-tests/D2.ors", - "type": "file", - "name": "D2.ors", - "base_name": "D2", - "extension": ".ors", - "date": "2017-05-25", - "size": 2044, - "sha1": "a54e4060a7c480d826c7d71d8d9e8ef850490aa4", - "md5": "ffae52f5131026c04bdc9b65b60422db", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1610, - "sha1": "ad602f6b8d154f63b7eb245feaa804f1d71e4f10", - "md5": "2352f1078bf398ac2b709df37eb54e98", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1261, - "sha1": "e88300a45a0726158243a4ef7f2095be313e594d", - "md5": "7872bab9a5e1a71e3d7f77836a841a04", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/ocsp-tests/D3.ors", - "type": "file", - "name": "D3.ors", - "base_name": "D3", - "extension": ".ors", - "date": "2017-05-25", - "size": 2414, - "sha1": "628285135bfde6e6625df43dca717a37008b45b8", - "md5": "b62c7fb329c1532940056d7a2b157c04", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2716, - "sha1": "52ed6973f552a388882d0392cfc235a2c16efc5e", - "md5": "4b1cd9025894ef391fe65ca0072cc122", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 5179, - "sha1": "9b40553f49865d3e455faafadbb0d20885b04f90", - "md5": "190789d16052b5495b3c05b7512a412f", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/ocsp-tests/ISDOSC_D1.ors", - "type": "file", - "name": "ISDOSC_D1.ors", - "base_name": "ISDOSC_D1", - "extension": ".ors", - "date": "2017-05-25", - "size": 2020, - "sha1": "d545ee9ae139b902b55ebf82649c27238714ca42", - "md5": "f430991faf1d749c1d63778bd986776f", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/ocsp-tests/ISDOSC_D2.ors", - "type": "file", - "name": "ISDOSC_D2.ors", - "base_name": "ISDOSC_D2", - "extension": ".ors", - "date": "2017-05-25", - "size": 2044, - "sha1": "e61625325d2117138f8d81e517180099354f8717", - "md5": "bc53926a9c1a4cf78ddbac98733f2846", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/ocsp-tests/ISDOSC_D3.ors", - "type": "file", - "name": "ISDOSC_D3.ors", - "base_name": "ISDOSC_D3", - "extension": ".ors", - "date": "2017-05-25", - "size": 2414, - "sha1": "ed18ad2f05093be8d38ac2a91ccd6be915222e1c", - "md5": "58a96c4203fe7e45dc75ce64eeb0749d", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1631, - "sha1": "0ecd906ecc8dbc28aa3d5abdece1ce6dd8569c17", - "md5": "bbc919fd48f509092fa16ca3e94d87ce", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1261, - "sha1": "b0e9a2ab6ec8ff4b2b768546b16f7cc87613f3eb", - "md5": "5e7e9cd9ba20bd97011564d1bd4a3243", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2569, - "sha1": "a9a673b6d150c62153b11222a5a80353a859f47e", - "md5": "2abe744b840ad7c7642f936f0a2ee127", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1801, - "sha1": "67f8087da3d59cdc2f42b4d8ebd08805b7f88af1", - "md5": "5377004fb1a2595a5d2c7544f1201765", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1383, - "sha1": "94a55331d1e0ca912fc1de48ea8e1353fc0be4bf", - "md5": "318e51673793f980f64e4a03c75d8835", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1521, - "sha1": "3b43e27c8d952484521b2123c3b4e47c0c0cc788", - "md5": "afa309365e12160361b51f623fd884d8", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/ocsp-tests/ISOP_D1.ors", - "type": "file", - "name": "ISOP_D1.ors", - "base_name": "ISOP_D1", - "extension": ".ors", - "date": "2017-05-25", - "size": 2020, - "sha1": "248debb61138577511f2ea8b96387966a8df738b", - "md5": "c8a36d01f87fa14f4f8eed469e7d6d5c", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/ocsp-tests/ISOP_D2.ors", - "type": "file", - "name": "ISOP_D2.ors", - "base_name": "ISOP_D2", - "extension": ".ors", - "date": "2017-05-25", - "size": 2044, - "sha1": "2494a622c2c900d5a26589bf005a8e74a7cd9269", - "md5": "7da14c3f7fd3d0e496752e2f4ac8426f", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/ocsp-tests/ISOP_D3.ors", - "type": "file", - "name": "ISOP_D3.ors", - "base_name": "ISOP_D3", - "extension": ".ors", - "date": "2017-05-25", - "size": 2414, - "sha1": "9b8cd70802949de9cc84bc176ac7b5cda930c83d", - "md5": "843192e9d84d57121724da4047d68f45", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/ocsp-tests/ISOP_ND1.ors", - "type": "file", - "name": "ISOP_ND1.ors", - "base_name": "ISOP_ND1", - "extension": ".ors", - "date": "2017-05-25", - "size": 638, - "sha1": "3ca4ccada3c7996d8f780e6a2a6692726a27adc5", - "md5": "455ba62ee308292da57bb59c6a9ce4ac", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/ocsp-tests/ISOP_ND2.ors", - "type": "file", - "name": "ISOP_ND2.ors", - "base_name": "ISOP_ND2", - "extension": ".ors", - "date": "2017-05-25", - "size": 638, - "sha1": "e1fef2d607d5ccf2e22c4312613ff94fa826a422", - "md5": "305ca75674e7c5c033f1a2a49b4f4cb6", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/ocsp-tests/ISOP_ND3.ors", - "type": "file", - "name": "ISOP_ND3.ors", - "base_name": "ISOP_ND3", - "extension": ".ors", - "date": "2017-05-25", - "size": 642, - "sha1": "98f9a2ad2c099d9cd058eb9bd53c185e4f0e48f6", - "md5": "d9291b346e9365f69dab0f476c5c003b", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/ocsp-tests/ND1.ors", - "type": "file", - "name": "ND1.ors", - "base_name": "ND1", - "extension": ".ors", - "date": "2017-05-25", - "size": 638, - "sha1": "e5ecbb215e1c391971893cd80e21475353a9efc0", - "md5": "9cc3c8fc297787464d5d5ac445c96d47", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2244, - "sha1": "fa82ce969b77aeb8ce183ac87ec009dce83a1995", - "md5": "350811f1a03468a5ff912fc672b38ca2", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1801, - "sha1": "2f1f8e32b3f1dd1f8443b81abf0520e46b4fad8b", - "md5": "f0672c43512f975851395828645f2b8d", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/ocsp-tests/ND2.ors", - "type": "file", - "name": "ND2.ors", - "base_name": "ND2", - "extension": ".ors", - "date": "2017-05-25", - "size": 638, - "sha1": "3f0d9738765b0500081c688ef0f86e86988812a6", - "md5": "a0d092ea1454214723f0429d7485d5ff", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1801, - "sha1": "2f1f8e32b3f1dd1f8443b81abf0520e46b4fad8b", - "md5": "f0672c43512f975851395828645f2b8d", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1383, - "sha1": "28a5ecaaf9b8141cfae7dbda57fb8f938292efb2", - "md5": "7217d737147ddd364cffb86d5918917d", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/ocsp-tests/ND3.ors", - "type": "file", - "name": "ND3.ors", - "base_name": "ND3", - "extension": ".ors", - "date": "2017-05-25", - "size": 642, - "sha1": "8292a4574d4a8603b11a008913d11f9882ed50f2", - "md5": "44ceca01c054e9461961f561b04faffd", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2094, - "sha1": "24adc726d7eefd4c92cc59c5153cf84b02df2f7d", - "md5": "44d9b4e26d7263825cf1c5720d9ea759", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1521, - "sha1": "4513711209c4c1e1780c91df93024fecd8083160", - "md5": "51e14b4c734e450402ea2cf73f2aee0f", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/ocsp-tests/WIKH_D1.ors", - "type": "file", - "name": "WIKH_D1.ors", - "base_name": "WIKH_D1", - "extension": ".ors", - "date": "2017-05-25", - "size": 2020, - "sha1": "72c4093011551eda5c2bfeb9c4c914d4d62586b6", - "md5": "4ac1f1750c68540c7508ae99a74fe883", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/ocsp-tests/WIKH_D2.ors", - "type": "file", - "name": "WIKH_D2.ors", - "base_name": "WIKH_D2", - "extension": ".ors", - "date": "2017-05-25", - "size": 2044, - "sha1": "0aa36924889a0d399100d8fccc53fe919e218fe5", - "md5": "1574af8293e37433e786efa209e2c812", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/ocsp-tests/WIKH_D3.ors", - "type": "file", - "name": "WIKH_D3.ors", - "base_name": "WIKH_D3", - "extension": ".ors", - "date": "2017-05-25", - "size": 2414, - "sha1": "043cf93599a5cef14b9a6218f1f1dc68a8cb9e08", - "md5": "9dfbe278a19fed7daebf36e854668360", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/ocsp-tests/WIKH_ND1.ors", - "type": "file", - "name": "WIKH_ND1.ors", - "base_name": "WIKH_ND1", - "extension": ".ors", - "date": "2017-05-25", - "size": 638, - "sha1": "834e5f668ac27f9a5b407003e2945facca915142", - "md5": "9e4d392aa8364465cac80577f418f5c9", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/ocsp-tests/WIKH_ND2.ors", - "type": "file", - "name": "WIKH_ND2.ors", - "base_name": "WIKH_ND2", - "extension": ".ors", - "date": "2017-05-25", - "size": 638, - "sha1": "95e34739195c03333e5b1877a0c2074910f5b57a", - "md5": "5f995a9a9438626aad699cba7131431a", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/ocsp-tests/WIKH_ND3.ors", - "type": "file", - "name": "WIKH_ND3.ors", - "base_name": "WIKH_ND3", - "extension": ".ors", - "date": "2017-05-25", - "size": 642, - "sha1": "f50ad45f566ff71d7e5c25570742170be5476ec5", - "md5": "dbbe044057b118454230f9b9e2bace21", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/ocsp-tests/WINH_D1.ors", - "type": "file", - "name": "WINH_D1.ors", - "base_name": "WINH_D1", - "extension": ".ors", - "date": "2017-05-25", - "size": 2020, - "sha1": "7a8e2764b7d545a959facdf4bb0be623cf8b31d4", - "md5": "3b55aea47695426d4dfaa39c7592631b", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/ocsp-tests/WINH_D2.ors", - "type": "file", - "name": "WINH_D2.ors", - "base_name": "WINH_D2", - "extension": ".ors", - "date": "2017-05-25", - "size": 2044, - "sha1": "ab831b6a8f9adf61cadcbc23cc86ae9609227f4c", - "md5": "7a9f12ce2ec215d9d48a5e6f5af23623", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/ocsp-tests/WINH_D3.ors", - "type": "file", - "name": "WINH_D3.ors", - "base_name": "WINH_D3", - "extension": ".ors", - "date": "2017-05-25", - "size": 2414, - "sha1": "ad00149ca9f9e95025f1e16f70c5635aba89e0f3", - "md5": "133ab395c0779ed6690f85c0b2c0e235", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/ocsp-tests/WINH_ND1.ors", - "type": "file", - "name": "WINH_ND1.ors", - "base_name": "WINH_ND1", - "extension": ".ors", - "date": "2017-05-25", - "size": 638, - "sha1": "a2c024578820ee433ea7efd0e14b5dc4ef9aa50a", - "md5": "92fef76ec1720164404974fe58630ee1", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/ocsp-tests/WINH_ND2.ors", - "type": "file", - "name": "WINH_ND2.ors", - "base_name": "WINH_ND2", - "extension": ".ors", - "date": "2017-05-25", - "size": 638, - "sha1": "a48bdad343da025d9707a4c9ecf91a977bb19ba4", - "md5": "ba973d1731ede5d30337d92b8862e427", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/ocsp-tests/WINH_ND3.ors", - "type": "file", - "name": "WINH_ND3.ors", - "base_name": "WINH_ND3", - "extension": ".ors", - "date": "2017-05-25", - "size": 642, - "sha1": "f092c42f3140b1f253eb1065a4510991510ea756", - "md5": "63ef8170c61382e1d2dc8c1f07289a7f", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/ocsp-tests/WKDOSC_D1.ors", - "type": "file", - "name": "WKDOSC_D1.ors", - "base_name": "WKDOSC_D1", - "extension": ".ors", - "date": "2017-05-25", - "size": 2020, - "sha1": "4f01d3ba70d600e295210ea560ab1fbeaf149681", - "md5": "2c55646e00e71bad5d3e20ee3d8760cd", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/ocsp-tests/WKDOSC_D2.ors", - "type": "file", - "name": "WKDOSC_D2.ors", - "base_name": "WKDOSC_D2", - "extension": ".ors", - "date": "2017-05-25", - "size": 2044, - "sha1": "a85f01850932bf5feb80d385e58241d977e775d6", - "md5": "6745cad5e94480a381633f948d15ebf5", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/ocsp-tests/WKDOSC_D3.ors", - "type": "file", - "name": "WKDOSC_D3.ors", - "base_name": "WKDOSC_D3", - "extension": ".ors", - "date": "2017-05-25", - "size": 2414, - "sha1": "d8ba97eef704c5666f5fff5227c5dd1451609ca9", - "md5": "8a342406c73a09e58f30e54dd10d2363", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1631, - "sha1": "87521273d5a6af208b20b4e6b0beeeedfa875a69", - "md5": "669e7467b81274408bb7eb2f24f8da75", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1261, - "sha1": "1a3c9d17520b2411f1850caac6fb3958e2743677", - "md5": "deda005e33e90a4052b579daa02bf940", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2569, - "sha1": "658da55f81c2104fcd1e8ea2a8428978c8cdb8fa", - "md5": "3ed0186df636aa630ba2b0df267a29f9", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1801, - "sha1": "0fa1f946963bf0b373c364d84fa06800f968e7b2", - "md5": "6cc18928cfc76b3352e0d5f934b56e78", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1383, - "sha1": "1b71b2e52741cacdd57e589784fc75163706a6fe", - "md5": "1ff2ce84880fd5bb0f90dec46dc675c0", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1521, - "sha1": "31ea52718abd74a21155ceb0ba3df06a7859251b", - "md5": "77c509baf4eabd972bef0cc635a01585", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/ocsp-tests/WRID_D1.ors", - "type": "file", - "name": "WRID_D1.ors", - "base_name": "WRID_D1", - "extension": ".ors", - "date": "2017-05-25", - "size": 2020, - "sha1": "fe709da76b910bd0989366f0fe40941b9b2250d7", - "md5": "4cc6bc51a08a28caa695dab4cc519f24", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/ocsp-tests/WRID_D2.ors", - "type": "file", - "name": "WRID_D2.ors", - "base_name": "WRID_D2", - "extension": ".ors", - "date": "2017-05-25", - "size": 2044, - "sha1": "6c7bb0e2d21225092b1dd5897be379c004047106", - "md5": "1f19f1c38180e989a75be5246e96bfe7", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/ocsp-tests/WRID_D3.ors", - "type": "file", - "name": "WRID_D3.ors", - "base_name": "WRID_D3", - "extension": ".ors", - "date": "2017-05-25", - "size": 2414, - "sha1": "8bc6c6fb99da16beb083541d8fae085c99067036", - "md5": "e2042aa74fc4a36fbe86d54e5f4e56e6", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/ocsp-tests/WRID_ND1.ors", - "type": "file", - "name": "WRID_ND1.ors", - "base_name": "WRID_ND1", - "extension": ".ors", - "date": "2017-05-25", - "size": 638, - "sha1": "ed5099197e0776ec358d59af5fd4165bd55ccd6b", - "md5": "db68cee13c4e0a5f2cd7e1b996c72ebe", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/ocsp-tests/WRID_ND2.ors", - "type": "file", - "name": "WRID_ND2.ors", - "base_name": "WRID_ND2", - "extension": ".ors", - "date": "2017-05-25", - "size": 638, - "sha1": "0ddc56dc5c485d895c2eaf7301a0f3296a4f1d69", - "md5": "852527e758cc0231b181681d7206ad4a", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/ocsp-tests/WRID_ND3.ors", - "type": "file", - "name": "WRID_ND3.ors", - "base_name": "WRID_ND3", - "extension": ".ors", - "date": "2017-05-25", - "size": 642, - "sha1": "f89473b9619a710f1990a2a5f0215b2c401f75cd", - "md5": "7e882a87a0faef7f913b0d103a1e77f8", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1631, - "sha1": "0f3afa6fca42b1eeb61dd3e5623c9ef606f14b4a", - "md5": "cc25c8914795b1d9e59453765e373fe7", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1261, - "sha1": "b5e352d24eb13faf72f8e1ccb3bb3f3991acbd57", - "md5": "2781c9c0c0ab7cdac22cc44e814d55a7", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2569, - "sha1": "c2063f0b76a58db5b98f5e40e3102e5803957081", - "md5": "adfc20a9e3f15a326889bab6132f6c95", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1801, - "sha1": "1a94d9513ebc49f68befed12f93f6b77d52275f4", - "md5": "8d3986f4d1016e9987356b85384e4b71", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1383, - "sha1": "c55e434a828e6989d89bf1cd15553299a99996ca", - "md5": "045e64caefa78bf858ce9bcf83c03ab9", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1521, - "sha1": "0feb4b4cd38cbbcf49f0d9f34a8a635500f246f6", - "md5": "f7e0daffdcc12fdbbe7f38c937668d18", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 478, - "sha1": "768e0d7b2991eebf32a082a90057ad1c25172a59", - "md5": "5d9f93ba01d8ef6c3aaead797e2c9d05", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 413, - "sha1": "fa8cd5b1aacb6fd606a3d9a5ef2f628cca5c779c", - "md5": "5996539e9a840fc156133b2cf49ad6ae", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 4249, - "sha1": "0622e5232583d7dff78577dd1e7efc77ba3c6a03", - "md5": "b1d32ad9b67769bd1d80e6134b94e5b8", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1688, - "sha1": "c31719930ed6874607e334ba85a02fb4ede571b4", - "md5": "ee963d8474064b056913fbca7ae34395", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 408, - "sha1": "cb7a483b01e1af0a4de649e6709b31bd2842ea8b", - "md5": "4b7bb31d67544229c5eb63c21435805f", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 926, - "sha1": "785bc5d4321206778be4929d15eb14d0804c0ed9", - "md5": "396ce13089e48fa82b68d78dc0dbd1ab", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 3620, - "sha1": "e8dd5da673f771bc3dbe3501045bf67e117db8ef", - "md5": "232614e1cb5d24a24bed66676448a044", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 411, - "sha1": "a041b20c3ac9f8ab23f517f74157f245e3c6a358", - "md5": "a11d5611c1176f6e333aa7c897e29f01", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 417, - "sha1": "265a0ed029d6b53cc7c97ad7fd4a1a3b1e4ee5df", - "md5": "5dd6410b11ef865a0b949562f7e83dd7", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 414, - "sha1": "06c2865b34f194856a8ddd61a2bfefa620995cee", - "md5": "2a21b0254429bc37281c2af528b3443d", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 409, - "sha1": "8af82d170451bdf96def3c42222c5612936799c5", - "md5": "a3e56f0b3694d42ae1510739bbaa2a9b", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 417, - "sha1": "c8d99c22a6d00938b81d3a97793beaf735065f64", - "md5": "a40bd53f699a2ef0707a9df053b8a2ef", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 414, - "sha1": "4651644aa313799f58120171f230b11260357c35", - "md5": "6c9d0253228c112c2d8ddf100aa65549", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 414, - "sha1": "a2ad4745bf079f23ada8cbcceabf0af8d7602adf", - "md5": "5c140187cb209550777cd1745c70c9d7", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 414, - "sha1": "610b67e496fdd3193bad91c97db6e1a76ad344f6", - "md5": "8a4aaa537d463950b718d080c94040fe", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 417, - "sha1": "20f169bb535384022ae12881cb1b09583eedc845", - "md5": "cb51d904bea22117dbadeb09fee34e9f", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 417, - "sha1": "d2e6f0916a1536657567020d23b63d60bc995776", - "md5": "b51cef3cda043d44088bc060da33615e", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 413, - "sha1": "da530ca9f3e589127a3d2720f1eb6a2aca1a5487", - "md5": "6ca811dfe32a332ab75b520dde856d0c", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 413, - "sha1": "c0a252564544f32e62351425eddf0729127c4b96", - "md5": "316869a7e60ac7a3be987dc6f62c180a", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 414, - "sha1": "60cae4de3528dfb088fcbe0e1937f06572ec6958", - "md5": "8f6d2c14c4abe0a649d0ff0c8290609e", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 414, - "sha1": "cd9a932f9e25aab54bdda2d43281c582937d6917", - "md5": "a94f393c6d5a0a20cfa5e179a3f339f3", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 416, - "sha1": "cc7a840266e65dc1d298e7d3e177dc72a2b3e96b", - "md5": "a180ac3e34c1327a8db3ea39a903e5d4", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 417, - "sha1": "e790ced579f2f82348092bac63457568e77e5f12", - "md5": "06a9520bd4e8f09e636da2f739767f66", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 417, - "sha1": "3ffc7d24b3faf76a09b6c947d8197af72d95b07b", - "md5": "972c836004fb3964d0d846ce9128f67c", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 419, - "sha1": "253ed41ab4d00275c8258626243c6e138a860cdb", - "md5": "b4bf748882c9a3bfee6c77a7b423d8de", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1675, - "sha1": "54f8bf036c2a154ffbff84680c3ad9ab2ed7b9fc", - "md5": "4d4f8bb63d4da47ca7309bd2bc62aa01", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 407, - "sha1": "6c2d2055b8bbfef6fde12c6f766debc132f51286", - "md5": "c00593ec8108bd364ed98a6642c61718", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 411, - "sha1": "3d6059885b405f6c34b7cee27757d807990726c9", - "md5": "2be3510e9b4de1b5b5ab3a85799ce8f7", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1164, - "sha1": "13050d2e500aa132a1decd22979625077b89bb96", - "md5": "f8fc33eec709f839a3dcd43e9f042835", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1087, - "sha1": "a9a91374b710c1d0546bc622bcaf09e8cab4a59d", - "md5": "1c979ff5c65af04489ae8d1514a5fb78", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 417, - "sha1": "2d7b4dee568ae35c4d1e1de48d4a2c8f5b708869", - "md5": "0adca6f66f18698479196600a887569a", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 985, - "sha1": "4408c18afbf2ff65a88587a70a611a0ac0c72e31", - "md5": "303710328eff4ae7c3c8ad5dae1a0d80", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1309, - "sha1": "5d1bb2d967210185d50fdcf34af62b6de8a1a9fd", - "md5": "0875f6ae4f65334e1b02639524984d1c", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2402, - "sha1": "a6c4ed0c801cd5d668efe22fa8f1f4a829ca01d1", - "md5": "4ae05225862b497c1b6cd361442caef7", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1957, - "sha1": "c8ce5ccfa2a99ec4453ed73f941866eadbdccd13", - "md5": "91c41b596ec39d9629c7b354b2d60df8", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1475, - "sha1": "9fc1514410d9cdc976c3cf3961053cc57a3609a8", - "md5": "37bb8aeeffda8d42a7c467400c9e7dd1", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1365, - "sha1": "76adc46511709fada5103b5ba662a776aa65da5c", - "md5": "ba070216ef05df0cf59df525a41854a5", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 3454, - "sha1": "f2485028556acd87705554e3dd72a7a8d3e2bfdc", - "md5": "cc9715b9079b237b2f40cce8c958b74e", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 767, - "sha1": "ab7678a72b1c95aaac8847cc4e24099671cb188a", - "md5": "9d87cf5bae326f88fbe19f87f14f3924", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2109, - "sha1": "a1b20e432f9981c23a0e8bc3d6bdc0cf7d10d478", - "md5": "ac7865a09984162639f95132f552d9ef", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 638, - "sha1": "9d5730161fb82ce461e472ab0baa2d7c6b5b7641", - "md5": "ce9f6baf19d7d00d940e190c9be35af2", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 16465, - "sha1": "467e4af8723a70a02e9a4a7eb4fd2295745d750c", - "md5": "6c2cfc0ccb3ae394380fd96d5e7ed57c", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 990, - "sha1": "9cd6b3e9c085b504a008796bd5484a5647061f63", - "md5": "2a313d0dd191455bcdf769be0d432364", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 686, - "sha1": "637d99fe885a6ad4006cc112385382201a561643", - "md5": "91ac2d78ceb0e357fcdeff7f8145ffc7", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 483, - "sha1": "3d6fa7cc1dd543a9b47dd08a6c6fe94443e34f55", - "md5": "3318e0fb2f822dea1396ec2fa5b26724", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 554, - "sha1": "484ab0534abaa0c8320ba678e8a18a872847ae39", - "md5": "ba0189502e847aa8e557d0a62d726fa5", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 494, - "sha1": "ed8d23dedb87108e32a097aa3357d253854ebe24", - "md5": "79d2d5af25cc4adc98b0fae8cf411237", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 411, - "sha1": "ae30706dfbaaa59a345c95bf2b2c3f2e2548c1d0", - "md5": "63c5c5eb119b8e471aaa984f47634f4e", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 3201, - "sha1": "f2e78b710b0e36ac18c8f4fdb973f7cb34c207cd", - "md5": "bcdf5660ce02e5a9688f50d77c23aae2", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1827, - "sha1": "d61f5df4cdb212d7a9595afd9e9160ed5cdea6da", - "md5": "d0ef08b84fcee73892ef0252e9806d19", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 741, - "sha1": "466e3bcdfb053e64029c0c074f69c7e97a44bafc", - "md5": "9fc173832a478a1a1fa5c1728e528e70", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 578, - "sha1": "8ab12bc390c4ed4f5c11b4bf1cd1e3083f8abe9d", - "md5": "935f33f268f9dc9a23d28103fe178ca8", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 645, - "sha1": "d78005a8711c42e980e83aef9ecd3e18faaa0fcb", - "md5": "4d559db18bb72e0836c4d0b816d4e093", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 413, - "sha1": "dfbb03f206c8291a0aa9291844e345eb8bdef25a", - "md5": "7db40166c843290604b2735f45177a0d", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 3478, - "sha1": "4a8e3d1a3bbd39ff981c71f15f4ed413e6877610", - "md5": "95d6719faf1185381d3ce1b48ef4b101", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2155, - "sha1": "519546cf409c3a2e3e97a35acfdcafb058c4eb32", - "md5": "2436eaece236b67b91df1c8203f43266", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 3358, - "sha1": "1ac6bf02986f79aea5922929a5d32cfaa4c4e387", - "md5": "8e47ca5966c1ffee6ab006ee6fa7f098", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 5199, - "sha1": "ba94efa6c605cbb27f731f8e1b6fc0dfbff15d73", - "md5": "6b353b6a3de6a90ae3f4dec0cf6032d9", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 11288, - "sha1": "f6cb1c2b8c77e224a039c186fc0632e84993ff3e", - "md5": "faeabb9b655c1c715d137238feb07a5e", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 8954, - "sha1": "1f054ff144fa75227cd3b4e760dc24f15456e2d1", - "md5": "f9182289db59ab29c1e7f40d43a3a605", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1944, - "sha1": "0104f0c569b4e619660a63f4e5b2b3a4443f1f47", - "md5": "cdb8788ab12b8c6a7be410e3c0c71bb4", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2170, - "sha1": "cd9006809939a9492161999ced90bff2e34a9325", - "md5": "d5ef194144b0a826e642437796dde5ab", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 7025, - "sha1": "5aa27464887032baa4586791b5f177f66960334b", - "md5": "5dab60309c2a1cb2542a80203552584e", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 643, - "sha1": "fa4c442c3afbb4d40bdb97b6c8d144b55f893a6b", - "md5": "af3b1ecb800d119174378bc9221a02fa", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1681, - "sha1": "134d07d6399ec7c7f75b9458ff4b9a6abcc5ce26", - "md5": "3592e9d432614acb7f9cc63cd1a646e0", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 789, - "sha1": "475ceea77603fe4511d91947b004e8336f6782d9", - "md5": "48764d345fbbb13b9b53b97ca1323d87", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 18459, - "sha1": "5e5e64413bd6654fa94c8aafb088792322f4d39a", - "md5": "e36176400fff55f4d662319f71d57ff6", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 642, - "sha1": "c0a91e326bc0b38940b4e2cb94074fc049f8d35d", - "md5": "02ee06022e474cf23a4670ab399a1f1e", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 795, - "sha1": "b53314e86f7b1114bc9fdc7933a1d47a927a6728", - "md5": "2e20148070f88b45d5ce0f292225c2d5", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 707, - "sha1": "a029f62bc2b894466c72e8f8e2604e9df1a45425", - "md5": "2b4b3b8e7f9ba93d026e80fea56f3e0c", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 431, - "sha1": "2b4641316ed9834416e1d4cbdf71926dc1b6d6bd", - "md5": "ffd38cc2d50bc3444ecb7676e1825244", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 7895, - "sha1": "e47bd0f851384d80e086346a3a74a09e2e5eea29", - "md5": "019f09849abf863e222a704f1fea780f", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2178, - "sha1": "bd4fa8865b67c34350c0ed77e1b1425b60d32c20", - "md5": "c92d928ac579dd6eb27c2d329b9030dc", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 718, - "sha1": "02a4d443cbeafca1bee102c939fb57ff0ea90875", - "md5": "cc02eef8ec74a301528652a77e3317bd", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 4679, - "sha1": "a39eaed3b7b6d86bbe7563ed615232c7916ed5cd", - "md5": "f25b7ead0f6e00f1ced3e12c093acf7e", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 21072, - "sha1": "7f9f1376cbd9a7e9d8915920ce1001470b635767", - "md5": "aa4adc22d237b48005ac6efa9dc87552", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 601, - "sha1": "3bf19d9ef6a1a70708db8eb331d33392867e8f4d", - "md5": "34458f7fd183166615919f65dc4c4a47", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 7367, - "sha1": "c4e0313bbe7b8a89f229ff4ab48f4cf8e90b20f9", - "md5": "642ed9f3a1dc9b174bf8906a7c098b9e", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 51.85, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.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.85, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn: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.85, - "short_name": "GPL 2.0", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 948, - "sha1": "8a5cca09dfcf04c6573d7ff74485477208c46b71", - "md5": "730ff9fb5e4d4be8ebfce5bc216bf7ad", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 420, - "sha1": "8a4a8d2e99a104b1295549b994db629853178f6a", - "md5": "b69ff7ce890d8aa44dfb996205109c94", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 412, - "sha1": "77847e0fe7354fd4e687da3b9959e1f902e47ab3", - "md5": "ce5dc678fc9c741c939c5680973d6c60", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 427, - "sha1": "0fdfefbf9b51de5d6a1e4d7f93248214b097a2cc", - "md5": "ad07d3d8fb9fb874aa8a2dd536419b40", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 428, - "sha1": "8fa27bd7cc52da5b53204a24c4ee49be8d32d74c", - "md5": "54d36f26f9627d858bbd459a3cc0ae1a", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1119, - "sha1": "6f5653fcebc70a878666b7fc64982941d1b402e1", - "md5": "e1f0338051d1a8718c9c6ed5cf9098e7", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 413, - "sha1": "35d30f700e54c81e132cbfbcc85ef78f29b14920", - "md5": "01570df7e20892733d8ae0c6fa9ae064", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 434, - "sha1": "5679b06b9cd84dadc17caa91df18616d2a252718", - "md5": "7171cab509de31b654ed743184bfddca", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 407, - "sha1": "9f7f0e0db11423309e9bd6425254606f1ed6241e", - "md5": "bc8b75a8d2ca5a2693bb96902df805bd", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 522, - "sha1": "f0a7b2d89580a2b66e5648f8dd9e11565e8e903a", - "md5": "78a058fbfe83e7f9c5416dbf0003a1cc", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 418, - "sha1": "3fb7fb6ee06f1cc9957939b18d12eed1d248a9bd", - "md5": "2d87ac4d67d509f27ed03cc7c118e2fe", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 413, - "sha1": "eeca7d59bc609304395a8d26aaab1d1bbb070d40", - "md5": "bf47edbe881f24986f439898add230b3", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1127, - "sha1": "c610c1a5f54c754be9adf9439bb232220c529f15", - "md5": "b121df27d35ebe6bc1221819d4e4c202", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 414, - "sha1": "f8a1f6e7e5fa834cff9d29b5b83fde7ac6406263", - "md5": "6a9698c69c4ad27c531fa50e576a8352", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 733, - "sha1": "668bb5e89e9bda54d63edda404966f2d87369db3", - "md5": "57325c8e24d4396513856c99bc21ffd7", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 415, - "sha1": "aa73b800e023844d9360221de0c1a2f0ce7223db", - "md5": "a059172609b4017cb9b557c992ae5172", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 413, - "sha1": "c2e230a0c70c39f482c7ac875ac324dcea8f5c28", - "md5": "0d45edca975558fd4ee8eb887fe6be13", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/test/recipes/bc.pl", - "type": "file", - "name": "bc.pl", - "base_name": "bc", - "extension": ".pl", - "date": "2017-05-25", - "size": 3118, - "sha1": "53749aa309dd012afc1eca32f4e7f1bf4401b123", - "md5": "441e92483ffd08e2555683c0284640d2", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/test/recipes/tconversion.pl", - "type": "file", - "name": "tconversion.pl", - "base_name": "tconversion", - "extension": ".pl", - "date": "2017-05-25", - "size": 2883, - "sha1": "2fd55c562a265da7e19ce857e8665fe956ea6d96", - "md5": "39eb613f2143e3b2c16a568183adc0d9", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "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": "", - "date": null, - "size": 80357, - "sha1": null, - "md5": null, - "files_count": 53, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/beermug.pem", - "type": "file", - "name": "beermug.pem", - "base_name": "beermug", - "extension": ".pem", - "date": "2017-05-25", - "size": 1287, - "sha1": "60639302285a021d23f500c244e1717ebf9e1fc7", - "md5": "14c0060c844f27e14d22caf10b69afd4", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1709, - "sha1": "7f4818b428999b7f64c86fce53390dc22c17a5d1", - "md5": "2d3897e78a506a3fb404ece95d8cc2d9", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1709, - "sha1": "d7c9ab6cdf81a4267585a98be879c04b04ef2992", - "md5": "626be15e7c63cdad07d4e98136bd2453", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1709, - "sha1": "a1e083f659183aa3ffdecd050aeb9d6ad0ece685", - "md5": "d264a596158b3a48177065ff8b38ad4f", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1721, - "sha1": "973cd77a1b7c7c57ae331169fa2be1484b03b61f", - "md5": "387495e38e35ea60881557347ea8a658", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1721, - "sha1": "9f282e73d6f584e89723ddcba0e14e982a0ff217", - "md5": "b988ea043e2a65d96b74fda2eb6fd760", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1721, - "sha1": "0b3ad999f2d2f86ad3bf2ea7af47787d29e97d6a", - "md5": "c49588a03fd3c8951dcd1533645d8cfb", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1725, - "sha1": "f71c0912790c0469c1b6245002dfefcbd75cd52d", - "md5": "238263435080514a1606c69031292069", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1790, - "sha1": "923eb91b981a6da295966beb52a5ef7014b30260", - "md5": "c4646cfd61fee4fd7a10ac4af01c5632", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1728, - "sha1": "c75e67c5d73523cc74b05cee947f1a03d951e0b4", - "md5": "937c0e77e3640cb361b459b903884e9a", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1728, - "sha1": "c459f2123c9a6771fa69907330ca2acdcc3a7ebd", - "md5": "ebb22161289ba3c136d199839cb7147c", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1732, - "sha1": "61d2fdaf6762fd3da8d7920ffcb21acfd4adc303", - "md5": "46939fd9b3c827ad432c2774aa696e37", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1733, - "sha1": "5d70f9661ea79f14cb32c47f2bd4d610d58ce1d5", - "md5": "c1924890303af80d05753415107d3e61", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1932, - "sha1": "05639226cf3fb4fedbde5441426ccea4f24b0e61", - "md5": "1acb704fe113ea721902bf709aed94cf", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1724, - "sha1": "6c75858ee77e62dacdc602954dcdc7d79f396999", - "md5": "42b67f8ea1e5be6023bd0f42ead30660", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1725, - "sha1": "6d8aff04b86d453dfeb473ef63b54ca6dbfffe07", - "md5": "cd7d2a9e4216c1776346593db1cdba05", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 3342, - "sha1": "989e3a9853ce34dce62e8152490c2c0a314ce3ae", - "md5": "d7c07675d5ca60eb29145b28024f7ad2", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1699, - "sha1": "a2878c6026329a4f7be66ada97ca43c5201b9af6", - "md5": "f1773ed95d0db2bab8a0eab3e73ced9c", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1724, - "sha1": "5d61f1279c1a1ddbad1db1baa7efced72bec3b03", - "md5": "2ec02405f292696518e1f79a92a590fa", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1724, - "sha1": "4b00ee781a640e100b48bbb5adc23e0cb1b2d0cf", - "md5": "9ffe7f43e9714e68d02e6c5a6adf501d", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2246, - "sha1": "f065bd559425a52b2dfeb94dc40bb1b6123e5f3e", - "md5": "88ba525632770314286775700d0708dd", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1940, - "sha1": "b63292d41d660274b6b3b17e36828a821246d187", - "md5": "89dc52583fdfd97f23d13c019b434beb", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/cert.pem", - "type": "file", - "name": "cert.pem", - "base_name": "cert", - "extension": ".pem", - "date": "2017-05-25", - "size": 1724, - "sha1": "bd3aef31d0304252f319cb3a4649e2b2042f112e", - "md5": "0e618e947d839ce3c382d7032675dea8", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/csr.pem", - "type": "file", - "name": "csr.pem", - "base_name": "csr", - "extension": ".pem", - "date": "2017-05-25", - "size": 1265, - "sha1": "10c05e608061ba69d98816c3d30662420b58dcd7", - "md5": "55cebd4d4695a8909b4335ea12c7e98f", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1297, - "sha1": "6ac6669a04886db6ecae6ffeae067c96fcb09f6e", - "md5": "1d08aaadec49d5496da199ab6b59f795", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1296, - "sha1": "aebb66da5212a07f8341e5e9877d154ca79f6070", - "md5": "24996956c7afe30d37e01b939d8437d0", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1296, - "sha1": "5c671884f89e130c030f6f6aa68e0ebb22512570", - "md5": "ec2fde6c3bd1e983a7a8f79eae17e99e", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1309, - "sha1": "530fce60b0308c6d4d79104cea7a1247b2bfc049", - "md5": "7628ef2bf8d4e8cd745302e2d7513e19", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1308, - "sha1": "b7bad534b0ed966234e069fd11d55c08bd2a9c36", - "md5": "93611ae6cb376c2599cda9feb1fdb98c", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1308, - "sha1": "b2fd9e0c2584178b378b278dfab176654509e797", - "md5": "1415fb7d3df5f04ad75e812ac506d837", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1312, - "sha1": "f157fcd372713f92ee523cb124a56b01efcc5097", - "md5": "cb444a3ed1f4e1965c98178b572c5fef", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1377, - "sha1": "bcd20748e62b8db1429c5e5749172c1b0f45ecb2", - "md5": "aa724cda291ebb8b1e3c6f93872fc14f", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1311, - "sha1": "6425fd97c457753875770419b3a5d33db3d5b198", - "md5": "f1e3a3e29899f19eb1af81cf683a8661", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1311, - "sha1": "10db92b20f2c6ecb06cd34bf8b595523d1727e2a", - "md5": "25e64835146ca8031f78e4444053258e", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1315, - "sha1": "4c49143cb012dcd42a2d049b2690bcb290b15d41", - "md5": "9475a36dfa52cd05f98bb2b733d1c70e", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1316, - "sha1": "554b76223a972f4f217568d47f498c20b8c1ef30", - "md5": "89165bbded17322283c8e8fc1bb0aad6", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1319, - "sha1": "925dcb5753c0c2145560e538f4e9fb951dec28d6", - "md5": "c049127294c5eb1e6d92c20c6d31a9a9", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1320, - "sha1": "b259fa32bb466474026ad33c4f445c9312099c36", - "md5": "f4e0f1be8f3c5fa33778e31060b5d29b", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1461, - "sha1": "e475599e1b19cffff3a1735bc514c240fccee8a9", - "md5": "aad3eab6b2488ef1bd5bc315e00da2a3", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1311, - "sha1": "c2d546d09f915aca23dfdf020752005722997cda", - "md5": "8b447acb17c64b54e9e818a5d5b101b5", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1313, - "sha1": "42374d8e20f4f30e10b4cda81d1f793178c1f863", - "md5": "0b379243086e1d301620ba18ffb28898", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2445, - "sha1": "094fce522951d6eb33eae87ee7bba401b98aad8c", - "md5": "58c5c6cbd284dddb101b93ec1f3a7235", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1294, - "sha1": "a11f78111b82695a000b7fcd7c8f53282e9de7bc", - "md5": "edb67d67c4af0fa47d84a8350183b743", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1311, - "sha1": "4491cebf86dce9165f57c52048a088853d7de5f0", - "md5": "9e4cc989d1b6e0f39a8e8ec0e39f4463", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1311, - "sha1": "8b0bae714a8608c3b5a5f6d391fa625dfdfb64c1", - "md5": "303df0f95e213d2e50a990b9cdba0dcf", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1312, - "sha1": "b57639116382f88792299a5b6b426a702f86c3ae", - "md5": "dac05c55f8ee44f615a10e7d4d81ef7a", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1677, - "sha1": "4bb26c37712224148fcc314316975e8ee3f60458", - "md5": "05dd8f68be78a796e528801bd1d59f86", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1463, - "sha1": "5bca1d9c283eaab04aad4cf6f50aa826ff965c45", - "md5": "2bd0d4b95125095275ff5cf3242826cc", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/dsa.pem", - "type": "file", - "name": "dsa.pem", - "base_name": "dsa", - "extension": ".pem", - "date": "2017-05-25", - "size": 1311, - "sha1": "400599d043896190bb470b470b6b68b75ccd810a", - "md5": "34b076b4357d6bea6311cb1840f333fc", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/dsaparam.pem", - "type": "file", - "name": "dsaparam.pem", - "base_name": "dsaparam", - "extension": ".pem", - "date": "2017-05-25", - "size": 820, - "sha1": "2588449939d3e0e3c96f05cef4d5369f66ff759f", - "md5": "6cd557aa4ef9222ae1a56388012fbc86", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/key.pem", - "type": "file", - "name": "key.pem", - "base_name": "key", - "extension": ".pem", - "date": "2017-05-25", - "size": 1704, - "sha1": "df056382563a896e3723bdf01e0de72bf557f370", - "md5": "5d2f8f25b701d756ecaf843d8c4658be", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/NOTES", - "type": "file", - "name": "NOTES", - "base_name": "NOTES", - "extension": "", - "date": "2017-05-25", - "size": 161, - "sha1": "62f55264df521f7f2b41a4d6d9bc45645032c192", - "md5": "38f628cadb1485751198cdd01cde6eff", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/wellknown", - "type": "file", - "name": "wellknown", - "base_name": "wellknown", - "extension": "", - "date": "2017-05-25", - "size": 10, - "sha1": "3da6c6f100ca58799eed2de496cef1d949f09656", - "md5": "9a7ceba0e43b01516cbd51951fe5ba57", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/smime-certs/ca.cnf", - "type": "file", - "name": "ca.cnf", - "base_name": "ca", - "extension": ".cnf", - "date": "2017-05-25", - "size": 1648, - "sha1": "702d7bd05ada6355620ace60e9b2cd4e0a1b3757", - "md5": "bc780a560ba5465b98d448c0e15e64b5", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/smime-certs/mksmime-certs.sh", - "type": "file", - "name": "mksmime-certs.sh", - "base_name": "mksmime-certs", - "extension": ".sh", - "date": "2017-05-25", - "size": 3479, - "sha1": "f0836544f91df05dfd5352abd4b74b1d5c4dabaa", - "md5": "8b4909c39d10c56842559d12e47ace4e", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/test/smime-certs/smdh.pem", - "type": "file", - "name": "smdh.pem", - "base_name": "smdh", - "extension": ".pem", - "date": "2017-05-25", - "size": 1957, - "sha1": "46c0385c885e4937e29136c487e17f286599e2c3", - "md5": "f75070af193d80a6d0a9e306308391e9", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/smime-certs/smdsa1.pem", - "type": "file", - "name": "smdsa1.pem", - "base_name": "smdsa1", - "extension": ".pem", - "date": "2017-05-25", - "size": 2879, - "sha1": "7601a6ca4a6261a7f87f0e53d9b9d7487f23730c", - "md5": "c3763fdf879d18a7daaeb0d83b8b6aba", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/smime-certs/smdsa2.pem", - "type": "file", - "name": "smdsa2.pem", - "base_name": "smdsa2", - "extension": ".pem", - "date": "2017-05-25", - "size": 2879, - "sha1": "8f673f67328bac7ebe7fa5f61fb74a42ef239454", - "md5": "c8b02a6eb28c301155f162a075703785", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/smime-certs/smdsa3.pem", - "type": "file", - "name": "smdsa3.pem", - "base_name": "smdsa3", - "extension": ".pem", - "date": "2017-05-25", - "size": 2879, - "sha1": "ab4000cd117af90ad70afb1ff63af87d32efcaa7", - "md5": "75debabdb80528864b8b2840beef00a2", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/smime-certs/smdsap.pem", - "type": "file", - "name": "smdsap.pem", - "base_name": "smdsap", - "extension": ".pem", - "date": "2017-05-25", - "size": 455, - "sha1": "1a511707478e66e59ff17b66714cbc6a6b09cc8f", - "md5": "08cefbb36e3a6ba2e784eedca311b6de", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/smime-certs/smec1.pem", - "type": "file", - "name": "smec1.pem", - "base_name": "smec1", - "extension": ".pem", - "date": "2017-05-25", - "size": 1214, - "sha1": "da33c70c32132d434bcde50cb7fbc8f774990a0e", - "md5": "c36fdfa77d7451f77f8097fe85574cad", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/smime-certs/smec2.pem", - "type": "file", - "name": "smec2.pem", - "base_name": "smec2", - "extension": ".pem", - "date": "2017-05-25", - "size": 1231, - "sha1": "94dce8f10defc6a856c39cea9a1409187800a93e", - "md5": "b4cefadecd233d0d6db397ad119bf2ff", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/smime-certs/smroot.pem", - "type": "file", - "name": "smroot.pem", - "base_name": "smroot", - "extension": ".pem", - "date": "2017-05-25", - "size": 2953, - "sha1": "0fb9b3ad55997ffcfe57f2ceb0eeafd226496a25", - "md5": "af32f967ab33a40dd103b9ab9c3e23c8", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/smime-certs/smrsa1.pem", - "type": "file", - "name": "smrsa1.pem", - "base_name": "smrsa1", - "extension": ".pem", - "date": "2017-05-25", - "size": 2953, - "sha1": "996d4e44566b4b2f663b8baeb28ff734fb807038", - "md5": "1fda00cc6f649a36805ab18d4693496f", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/smime-certs/smrsa2.pem", - "type": "file", - "name": "smrsa2.pem", - "base_name": "smrsa2", - "extension": ".pem", - "date": "2017-05-25", - "size": 2953, - "sha1": "cc5db75f219e2ae842482bbf35464a3fe0c4d7e4", - "md5": "b1e8ec208a461372942e7863738a74bc", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/smime-certs/smrsa3.pem", - "type": "file", - "name": "smrsa3.pem", - "base_name": "smrsa3", - "extension": ".pem", - "date": "2017-05-25", - "size": 2953, - "sha1": "d24e8b80ff5d47049a7fdac477cc566415de8864", - "md5": "fb294a639234e4926763dd4a0ecbb49e", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/ssl-tests/01-simple.conf", - "type": "file", - "name": "01-simple.conf", - "base_name": "01-simple", - "extension": ".conf", - "date": "2017-05-25", - "size": 1783, - "sha1": "6354af65cf4bc6a98511d594304824ff17107984", - "md5": "78730ab8e955d911b1b8d8d2f857d925", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1167, - "sha1": "9a44aa9521b32b43309e66bb4349de3d979ed43f", - "md5": "1be2875bf04a132fcef3ae1a1f7fea69", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 244082, - "sha1": "d5cd892a5e5b0b37802a06100e9d5114f92b5bf2", - "md5": "f0209e8931a472e9e678d24d98ec1233", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 490, - "sha1": "b0e56769007fd1d17ce28a139280915be4a16517", - "md5": "12a56dcecf619470ca5323cc9fb8f20a", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 5976, - "sha1": "51d1b8b310425b53ff968538188db6ad125329f7", - "md5": "908a59d92f091911a7617b0cc2efadf0", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 3948, - "sha1": "203c6bdd25c511f57338b92e0d279cc5e8c786d7", - "md5": "3ec400262c7a1bb1b05d83a785675ba0", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 15840, - "sha1": "86d63884615b5ee381e9d886d67a4c60cd2c227f", - "md5": "db458c1691b9a456bdabd5b4f18a5af9", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 4213, - "sha1": "1cec3d3e3a2dc6cae8e571ad6ed0161954d258d5", - "md5": "6193ff87b1d4cea2971fdd6ba84f2f42", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/ssl-tests/05-sni.conf", - "type": "file", - "name": "05-sni.conf", - "base_name": "05-sni", - "extension": ".conf", - "date": "2017-05-25", - "size": 5418, - "sha1": "c91964759759062e56a5249f7d89541404b8499b", - "md5": "7b09867f8ea55ab282f1f8cfe484af35", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2850, - "sha1": "1fce91c3b5d8715950cafe8504cac78fc439f3be", - "md5": "3bdb28c00d9fc3124b832e556263910d", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 19043, - "sha1": "5be7e0491a78d93c7367e5b5e37ecb29135b4f05", - "md5": "584d697a7ef286c87606ed182ac5ab03", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 2684, - "sha1": "bbb87ab789c143eca5c675df83d554826b78214c", - "md5": "141b0aeb2e7d931a0bd45d9fb572f585", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 43556, - "sha1": "9fa0b2d28d0fc5212bd886bacfa411e1ed8e2ae8", - "md5": "ceeb32aea8cc8a86bb7fc4ca27d1d575", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 492, - "sha1": "b263b254440ce032233aea7a0629893db4360876", - "md5": "fea942900c3840bf007467b13e7cc28b", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/test/ssl-tests/08-npn.conf", - "type": "file", - "name": "08-npn.conf", - "base_name": "08-npn", - "extension": ".conf", - "date": "2017-05-25", - "size": 24132, - "sha1": "d73764a03d3fc0c65b6870729d2c280b53f88706", - "md5": "184020cae24a7750db8d963c2e6c9a0c", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 10411, - "sha1": "d80f1bdb9c1768ac2e6f868fd20e7613d2a2ea37", - "md5": "cde83aea6270a60981e772b5cba31d67", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/test/ssl-tests/09-alpn.conf", - "type": "file", - "name": "09-alpn.conf", - "base_name": "09-alpn", - "extension": ".conf", - "date": "2017-05-25", - "size": 18604, - "sha1": "a8714db4b64f49430ac0586e952078cc14823696", - "md5": "a5e690a084246f18386e267bb28fe2df", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 7962, - "sha1": "08c3908ced7f71624031f3412c136a35abc40fd0", - "md5": "deaed7a39cc1ec93118c0e826e33c9c4", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/test/ssl-tests/10-resumption.conf", - "type": "file", - "name": "10-resumption.conf", - "base_name": "10-resumption", - "extension": ".conf", - "date": "2017-05-25", - "size": 31378, - "sha1": "1e42fcbb44fec86d672bc6e48ada2aae407fedad", - "md5": "44a297d420f0d6d86e58eb2da6d0edc0", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 506, - "sha1": "dd1fed549f01a769462fd6d8286aaba252cd792b", - "md5": "f08c9f332a26c2aab55dec99f6125f1f", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 14174, - "sha1": "476589a7bdd0338a72b78b9e3a95829ea2ed4c8b", - "md5": "a63c72af3d437b9e3137ab3d87e0f4bc", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 507, - "sha1": "92abcc8c13e36e1557da9e64ecb191cf9a7a0cb0", - "md5": "66c4241132e1b9408baed79040626b34", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/test/ssl-tests/12-ct.conf", - "type": "file", - "name": "12-ct.conf", - "base_name": "12-ct", - "extension": ".conf", - "date": "2017-05-25", - "size": 5103, - "sha1": "81f62e391cb289a213af68932e35b6ad8bb1e83a", - "md5": "494b04d7a2189553a3f64053e0146eff", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 3272, - "sha1": "0839ba7586fe2ff83c253418cb71947c0545c2bd", - "md5": "957bdcda9537abfa83c98157dd3c149e", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/test/ssl-tests/13-fragmentation.conf", - "type": "file", - "name": "13-fragmentation.conf", - "base_name": "13-fragmentation", - "extension": ".conf", - "date": "2017-05-25", - "size": 10941, - "sha1": "99705237f3c51b32727aafbfdc0b88a3a04d08db", - "md5": "5ae1f9abf9a291f757e42230d6e57bb4", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 4655, - "sha1": "7b0cd7d107258eeb2a9246e7a64ce9ef56b9b361", - "md5": "bc8e1d4bf4692b7ae718c36ceeedf3ba", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/test/ssl-tests/14-curves.conf", - "type": "file", - "name": "14-curves.conf", - "base_name": "14-curves", - "extension": ".conf", - "date": "2017-05-25", - "size": 18210, - "sha1": "30ee0dd1acbe07205a17ce224c3fff4e3da94a8d", - "md5": "1056a3e5cf5053ff59a157f891c7ed14", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1171, - "sha1": "a6be8981af507f66e6ba0c11572a9f41bb0ac056", - "md5": "d400acbd8d63470416f84f184c3d6239", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/ssl-tests/15-certstatus.conf", - "type": "file", - "name": "15-certstatus.conf", - "base_name": "15-certstatus", - "extension": ".conf", - "date": "2017-05-25", - "size": 1365, - "sha1": "4a795b254a43f9d7eeb344ea6f5db5f506154a12", - "md5": "d4955c9febdcfc4123bfbb3cf87f1f26", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1015, - "sha1": "20630f2c0bd5c1fef2f06b2df9a479022dce7d4a", - "md5": "d7d5d729faf5ec03a3c01569ef3c9b98", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/test/ssl-tests/16-certstatus.conf", - "type": "file", - "name": "16-certstatus.conf", - "base_name": "16-certstatus", - "extension": ".conf", - "date": "2017-05-25", - "size": 0, - "sha1": null, - "md5": null, - "files_count": 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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1367, - "sha1": "4714f745b8ab9a544b1d83c808877803333fdf43", - "md5": "b950387a3d7202a2418e030a9c8651a4", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 1022, - "sha1": "b895f45cbee8c19f5d3b5320d4df5a0799053edf", - "md5": "36981c28a6136e500e2da3ccf2ebb023", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/test/ssl-tests/17-renegotiate.conf", - "type": "file", - "name": "17-renegotiate.conf", - "base_name": "17-renegotiate", - "extension": ".conf", - "date": "2017-05-25", - "size": 8599, - "sha1": "47495fd4882a3d4b77508e3f582f26b041ed4da3", - "md5": "742b9bec9ed7d57bdd8819cb7ab55170", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 5325, - "sha1": "014ef881025a69d6f8dd47a3948fd27e4a8eef97", - "md5": "7e6aa64a705001cf53f8b2541dc41063", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "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", - "date": "2017-05-25", - "size": 7639, - "sha1": "951e457b42d4ba2d366693a458e1460fa85ddd29", - "md5": "108534e51572ba60250da46eebdb5125", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "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", - "date": "2017-05-25", - "size": 5250, - "sha1": "6ea3df9d95155276af0907111400f9f2b15a2a0b", - "md5": "c1f8419bbf346f78b6e44e447614a3e5", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/test/ssl-tests/protocol_version.pm", - "type": "file", - "name": "protocol_version.pm", - "base_name": "protocol_version", - "extension": ".pm", - "date": "2017-05-25", - "size": 8529, - "sha1": "7373b7c767b8810d8b96ccf03a5f445866f3d042", - "md5": "ccaa3e8bb243a4d3a4dcf7dc847a9636", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/test/ssl-tests/ssltests_base.pm", - "type": "file", - "name": "ssltests_base.pm", - "base_name": "ssltests_base", - "extension": ".pm", - "date": "2017-05-25", - "size": 812, - "sha1": "6728be96780a84fc319b76080af423b7bf00da60", - "md5": "eff72b222232ca8f03e12b87318eeb0c", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/test/testlib/OpenSSL", - "type": "directory", - "name": "OpenSSL", - "base_name": "OpenSSL", - "extension": "", - "date": null, - "size": 35395, - "sha1": null, - "md5": null, - "files_count": 3, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/testlib/OpenSSL/Test.pm", - "type": "file", - "name": "Test.pm", - "base_name": "Test", - "extension": ".pm", - "date": "2017-05-25", - "size": 28259, - "sha1": "c5b1c78da8416d797244e4acb4375a712483bae1", - "md5": "307c606fffb1f08f1bef36782d410f47", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/test/testlib/OpenSSL/Test", - "type": "directory", - "name": "Test", - "base_name": "Test", - "extension": "", - "date": null, - "size": 7136, - "sha1": null, - "md5": null, - "files_count": 2, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/test/testlib/OpenSSL/Test/Simple.pm", - "type": "file", - "name": "Simple.pm", - "base_name": "Simple", - "extension": ".pm", - "date": "2017-05-25", - "size": 1967, - "sha1": "235d4af3a41533f1bccf15663e555d229ed4f482", - "md5": "1fc754cd556094a1bbe0213b356998fc", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/test/testlib/OpenSSL/Test/Utils.pm", - "type": "file", - "name": "Utils.pm", - "base_name": "Utils", - "extension": ".pm", - "date": "2017-05-25", - "size": 5169, - "sha1": "15c2c22981e79227c6643f91e0fae8935ab10e5a", - "md5": "3308956636919510a4c3ec3791a04b71", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/tools/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 209, - "sha1": "4816112511b19b0407d6a795970f184cacdca249", - "md5": "86a0b8345f945a948efda2c1d0b1246d", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/tools/c_rehash.in", - "type": "file", - "name": "c_rehash.in", - "base_name": "c_rehash", - "extension": ".in", - "date": "2017-05-25", - "size": 6213, - "sha1": "9ea451bc69bc407167bd6afd5ee61b68f5d36167", - "md5": "8405ef0862c932eacd7b9ec5801e3e86", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/util/build.info", - "type": "file", - "name": "build.info", - "base_name": "build", - "extension": ".info", - "date": "2017-05-25", - "size": 316, - "sha1": "fda8dd3506b893260649bb05da8db3715fbfa8ca", - "md5": "a3e88c639651662aa98dc3ddc090ea09", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/util/ck_errf.pl", - "type": "file", - "name": "ck_errf.pl", - "base_name": "ck_errf", - "extension": ".pl", - "date": "2017-05-25", - "size": 1541, - "sha1": "f9b74b612ef46968b1b826f393d9b31f5d858844", - "md5": "089b3becca339d2af2749fe10ccab23a", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/util/copy.pl", - "type": "file", - "name": "copy.pl", - "base_name": "copy", - "extension": ".pl", - "date": "2017-05-25", - "size": 1416, - "sha1": "671cf5165246d57f58878011d5c6c9e636649f62", - "md5": "c0e68d43fcaece674e47a9640310824b", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/util/dofile.pl", - "type": "file", - "name": "dofile.pl", - "base_name": "dofile", - "extension": ".pl", - "date": "2017-05-25", - "size": 5940, - "sha1": "6e5b032c40c9b67fd3c7715c45b09b1a4165f96e", - "md5": "5fdc549af0bdd260f65cfde8a6aab309", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/util/find-undoc-api.pl", - "type": "file", - "name": "find-undoc-api.pl", - "base_name": "find-undoc-api", - "extension": ".pl", - "date": "2017-05-25", - "size": 1829, - "sha1": "7ee6e6b2cd8600ebbd115b3c0ac53b2c21767959", - "md5": "bb87875ff12fd0a54cb0865fb115b29f", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/util/find-unused-errs", - "type": "file", - "name": "find-unused-errs", - "base_name": "find-unused-errs", - "extension": "", - "date": "2017-05-25", - "size": 1022, - "sha1": "6da4f44d6b6153ecf9a461110bf9be96d7d9d5c4", - "md5": "53cdc58b5e8099a007c01e3e204acfca", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/util/fipslink.pl", - "type": "file", - "name": "fipslink.pl", - "base_name": "fipslink", - "extension": ".pl", - "date": "2017-05-25", - "size": 3074, - "sha1": "65de2bcd2f83b884d88d6bc39fd64276dccb2083", - "md5": "7174ab495b92dfc338a4f43b79ec8071", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/util/incore", - "type": "file", - "name": "incore", - "base_name": "incore", - "extension": "", - "date": "2017-05-25", - "size": 12221, - "sha1": "17ea254033424294a2a0c4e6e874fefc9228dd4f", - "md5": "82003194b8607f453ee62da72a672246", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/util/indent.pro", - "type": "file", - "name": "indent.pro", - "base_name": "indent", - "extension": ".pro", - "date": "2017-05-25", - "size": 11659, - "sha1": "008b22278da3089539c212314c3d15f441ac761f", - "md5": "665228eca634e92eef2344d32db1ec0a", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/util/libcrypto.num", - "type": "file", - "name": "libcrypto.num", - "base_name": "libcrypto", - "extension": ".num", - "date": "2017-05-25", - "size": 300342, - "sha1": "41dae7d51d06b538d54aaa00459456d0f30fe6ac", - "md5": "4f35c1a85bc5318bef981687dd1dfd76", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/util/libssl.num", - "type": "file", - "name": "libssl.num", - "base_name": "libssl", - "extension": ".num", - "date": "2017-05-25", - "size": 27990, - "sha1": "5e8864a846e3445c097e53410d7a93fb4d64db73", - "md5": "1c1071d3f30c00cdf5b4f319b229bb55", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/util/local_shlib.com.in", - "type": "file", - "name": "local_shlib.com.in", - "base_name": "local_shlib.com", - "extension": ".in", - "date": "2017-05-25", - "size": 1057, - "sha1": "a5d6d34e7cf96e51dafe2bd05a85ea7b00cb25e9", - "md5": "68c29c73eb8e8e5d479bfebcb70b3176", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/util/mkbuildinf.pl", - "type": "file", - "name": "mkbuildinf.pl", - "base_name": "mkbuildinf", - "extension": ".pl", - "date": "2017-05-25", - "size": 1101, - "sha1": "c70b03d399f5f2a8971dfbb4241cf5bef840bd3e", - "md5": "e515d0487093cf944881c0824abd61f5", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/util/mkcerts.sh", - "type": "file", - "name": "mkcerts.sh", - "base_name": "mkcerts", - "extension": ".sh", - "date": "2017-05-25", - "size": 3784, - "sha1": "c42d2755666149d754af70a3c8d03afd36847e3d", - "md5": "9a584abe3de6d91cc64812f897c75386", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/util/mkdef.pl", - "type": "file", - "name": "mkdef.pl", - "base_name": "mkdef", - "extension": ".pl", - "date": "2017-05-25", - "size": 50962, - "sha1": "b363c834d5fa611b904c2a5a55c2552e5a972b4c", - "md5": "2aeb98f8431f2ca31010e4d26ac22eb7", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/util/mkdir-p.pl", - "type": "file", - "name": "mkdir-p.pl", - "base_name": "mkdir-p", - "extension": ".pl", - "date": "2017-05-25", - "size": 974, - "sha1": "62579e7abaa7837f524b66181a7034c842e2b4c3", - "md5": "33138a31c6c5febf122e1c6a78857680", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/util/mkerr.pl", - "type": "file", - "name": "mkerr.pl", - "base_name": "mkerr", - "extension": ".pl", - "date": "2017-05-25", - "size": 20056, - "sha1": "54eeca71cc5c0cb483f2e9b6a405ff25c771e093", - "md5": "5590b9068ed590bfea73958e05cae595", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": [] - }, - { - "path": "openssl-1.1.0f/util/mkrc.pl", - "type": "file", - "name": "mkrc.pl", - "base_name": "mkrc", - "extension": ".pl", - "date": "2017-05-25", - "size": 2344, - "sha1": "463580b61348dee101ebccdf1c6aa89ce32fa886", - "md5": "b2a698ae8062fcb70f64c91156e3d051", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/util/openssl-format-source", - "type": "file", - "name": "openssl-format-source", - "base_name": "openssl-format-source", - "extension": "", - "date": "2017-05-25", - "size": 5437, - "sha1": "1dfca854d8f441435490ac69b7469e2fa4123c30", - "md5": "2446b4694f4f9bb774ee8dab22971328", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/util/opensslwrap.sh", - "type": "file", - "name": "opensslwrap.sh", - "base_name": "opensslwrap", - "extension": ".sh", - "date": "2017-05-25", - "size": 977, - "sha1": "c2d8b92b4c681d1a58865fd64ba4bbd313c9bab5", - "md5": "ce58dfa10147eec1cefd3aaee89d1501", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/util/point.sh", - "type": "file", - "name": "point.sh", - "base_name": "point", - "extension": ".sh", - "date": "2017-05-25", - "size": 152, - "sha1": "3e730e92aff64047bce421f4c4e154060b16f4a2", - "md5": "9f2245ea5003b81a23605d243adbbe8d", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/util/process_docs.pl", - "type": "file", - "name": "process_docs.pl", - "base_name": "process_docs", - "extension": ".pl", - "date": "2017-05-25", - "size": 8609, - "sha1": "83e752e69e3446f106a9a0bce35d2ad1149591c4", - "md5": "8efb466b8abd1eaf3ea3194997c332a1", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje: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": 239, - "end_line": 239 - } - ], - "packages": [] - }, - { - "path": "openssl-1.1.0f/util/selftest.pl", - "type": "file", - "name": "selftest.pl", - "base_name": "selftest", - "extension": ".pl", - "date": "2017-05-25", - "size": 5028, - "sha1": "3aa92f01fecdf57736e0ae20aa7f70329d603245", - "md5": "c2cd1fa1257f003c305d7ff8aa2f591b", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/util/shlib_wrap.sh.in", - "type": "file", - "name": "shlib_wrap.sh.in", - "base_name": "shlib_wrap.sh", - "extension": ".in", - "date": "2017-05-25", - "size": 4219, - "sha1": "cbfc430aa0e1a085ceb475670b898b0993dc064b", - "md5": "6b3d42cd8f10ca8b5ff62f22fdb9564b", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/util/su-filter.pl", - "type": "file", - "name": "su-filter.pl", - "base_name": "su-filter", - "extension": ".pl", - "date": "2017-05-25", - "size": 6603, - "sha1": "d440566201bd3ac496dee6e033472707f9f78161", - "md5": "e7040bee2021eb64e816d72408fb78f2", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 7, - "matched_rule": { - "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": [] - }, - { - "path": "openssl-1.1.0f/util/unlocal_shlib.com.in", - "type": "file", - "name": "unlocal_shlib.com.in", - "base_name": "unlocal_shlib.com", - "extension": ".in", - "date": "2017-05-25", - "size": 862, - "sha1": "e5707d00fa2b2acac2b2cf0ac98b723f76676172", - "md5": "73ebc0ffa81d280652eab0f73441d72a", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/util/with_fallback.pm", - "type": "file", - "name": "with_fallback.pm", - "base_name": "with_fallback", - "extension": ".pm", - "date": "2017-05-25", - "size": 648, - "sha1": "5517df8d79775e2996a1f2e830a2916f34a39080", - "md5": "bf1434f67d54184097dce7cb176416eb", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/util/perl", - "type": "directory", - "name": "perl", - "base_name": "perl", - "extension": "", - "date": null, - "size": 3907, - "sha1": null, - "md5": null, - "files_count": 1, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/util/TLSProxy", - "type": "directory", - "name": "TLSProxy", - "base_name": "TLSProxy", - "extension": "", - "date": null, - "size": 48678, - "sha1": null, - "md5": null, - "files_count": 7, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/util/perl/OpenSSL", - "type": "directory", - "name": "OpenSSL", - "base_name": "OpenSSL", - "extension": "", - "date": null, - "size": 3907, - "sha1": null, - "md5": null, - "files_count": 1, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/util/perl/OpenSSL/Util", - "type": "directory", - "name": "Util", - "base_name": "Util", - "extension": "", - "date": null, - "size": 3907, - "sha1": null, - "md5": null, - "files_count": 1, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/util/perl/OpenSSL/Util/Pod.pm", - "type": "file", - "name": "Pod.pm", - "base_name": "Pod", - "extension": ".pm", - "date": "2017-05-25", - "size": 3907, - "sha1": "f41084985b5568e39fa4e4f1b93299b48817153f", - "md5": "cbfd6ea927cc67239d89c2c9cf47cf44", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/util/TLSProxy/ClientHello.pm", - "type": "file", - "name": "ClientHello.pm", - "base_name": "ClientHello", - "extension": ".pm", - "date": "2017-05-25", - "size": 6098, - "sha1": "dc15365c795708c07d33f81e93b3613922f4cd67", - "md5": "cbc1585681cf50b1a49540861e16b32a", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/util/TLSProxy/Message.pm", - "type": "file", - "name": "Message.pm", - "base_name": "Message", - "extension": ".pm", - "date": "2017-05-25", - "size": 13265, - "sha1": "bfeec23b4531939ad2846ef8a178185f222b33b9", - "md5": "b392c67d96304c8f11578178101aa3b1", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/util/TLSProxy/NewSessionTicket.pm", - "type": "file", - "name": "NewSessionTicket.pm", - "base_name": "NewSessionTicket", - "extension": ".pm", - "date": "2017-05-25", - "size": 1690, - "sha1": "b1a3200c29ffc2b9d38bdf93059447512588ed6f", - "md5": "9e88bec4ca49ad6324bd8ccd0999fecc", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/util/TLSProxy/Proxy.pm", - "type": "file", - "name": "Proxy.pm", - "base_name": "Proxy", - "extension": ".pm", - "date": "2017-05-25", - "size": 12546, - "sha1": "df508c53a3fb36b01ef76bcb718c25509a6d46c5", - "md5": "cdd68a876584250cd29302bef963cfae", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/util/TLSProxy/Record.pm", - "type": "file", - "name": "Record.pm", - "base_name": "Record", - "extension": ".pm", - "date": "2017-05-25", - "size": 7145, - "sha1": "0cfe128188b3da1033012fa17689dbe4a9ace5ec", - "md5": "1f8423dd59c3f3f2a907e846429d3ca8", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/util/TLSProxy/ServerHello.pm", - "type": "file", - "name": "ServerHello.pm", - "base_name": "ServerHello", - "extension": ".pm", - "date": "2017-05-25", - "size": 5195, - "sha1": "c9bb235c68c8d0afb8907c906c0cf5e9e35fe5dd", - "md5": "51465126632612d0d5c3950f1eb43ad1", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/util/TLSProxy/ServerKeyExchange.pm", - "type": "file", - "name": "ServerKeyExchange.pm", - "base_name": "ServerKeyExchange", - "extension": ".pm", - "date": "2017-05-25", - "size": 2739, - "sha1": "2673abab13c6b95387bd6c3278c86a2756464e33", - "md5": "ded97878a16a2c1fbdda517185c97f08", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.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": [] - }, - { - "path": "openssl-1.1.0f/VMS/engine.opt", - "type": "file", - "name": "engine.opt", - "base_name": "engine", - "extension": ".opt", - "date": "2017-05-25", - "size": 75, - "sha1": "5886e8c6f78e32f1516ea7642f4030d06f8884c0", - "md5": "a2684c392f3218aeb90dace5575e8f5e", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/VMS/openssl_ivp.com.in", - "type": "file", - "name": "openssl_ivp.com.in", - "base_name": "openssl_ivp.com", - "extension": ".in", - "date": "2017-05-25", - "size": 1865, - "sha1": "6e6e6820a85b72867899e236fb2044f50bfa5632", - "md5": "2a560e6cda5ff0754f26af4720110879", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/VMS/openssl_shutdown.com.in", - "type": "file", - "name": "openssl_shutdown.com.in", - "base_name": "openssl_shutdown.com", - "extension": ".in", - "date": "2017-05-25", - "size": 1397, - "sha1": "4439fbb208d67a59749a1235d5c4d93fe8faac86", - "md5": "e886077e890b22bcc717b113dec51436", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/VMS/openssl_startup.com.in", - "type": "file", - "name": "openssl_startup.com.in", - "base_name": "openssl_startup.com", - "extension": ".in", - "date": "2017-05-25", - "size": 4531, - "sha1": "25f9de3f5a081ea2d4bbfbea7bc784579c719585", - "md5": "d0e4f303815db020c1467f1830cc4cee", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/VMS/openssl_utils.com.in", - "type": "file", - "name": "openssl_utils.com.in", - "base_name": "openssl_utils.com", - "extension": ".in", - "date": "2017-05-25", - "size": 327, - "sha1": "3345fec233c6dc1c2c3a5100df9e145c07c6814f", - "md5": "42e840c2c48d500d10eaacdd49ab29e4", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/VMS/test-includes.com", - "type": "file", - "name": "test-includes.com", - "base_name": "test-includes", - "extension": ".com", - "date": "2017-05-25", - "size": 752, - "sha1": "72619f09fccf082a9040890a158f135738412b49", - "md5": "7624134f20b0cce73cff758fe0b2e3f2", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "openssl-1.1.0f/VMS/translatesyms.pl", - "type": "file", - "name": "translatesyms.pl", - "base_name": "translatesyms", - "extension": ".pl", - "date": "2017-05-25", - "size": 1954, - "sha1": "3d6098e2a8362898f7a59619e4e86b096ca25be2", - "md5": "1cfd4ee0df7387ba4ca6a6638dc7f4de", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - }, - { - "path": "openssl-1.1.0f/VMS/VMSify-conf.pl", - "type": "file", - "name": "VMSify-conf.pl", - "base_name": "VMSify-conf", - "extension": ".pl", - "date": "2017-05-25", - "size": 1444, - "sha1": "099c6406c0ccc7425cdc0d7ac4703343d480c59a", - "md5": "1e53020c0dbb0472ac0be70ae5aa6d14", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [ - { - "key": "openssl", - "score": 100.0, - "short_name": "OpenSSL License", - "category": "Permissive", - "owner": "OpenSSL", - "homepage_url": "http://openssl.org/source/license.html", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", - "spdx_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": [] - } - ] -} diff --git a/tests/data/models/scan/samples-clip-json-pp.json b/tests/data/models/scan/samples-clip-json-pp.json deleted file mode 100644 index ad18f7ab..00000000 --- a/tests/data/models/scan/samples-clip-json-pp.json +++ /dev/null @@ -1,2171 +0,0 @@ -{ - "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.2.1", - "scancode_options": { - "--copyright": true, - "--license": true, - "--package": true, - "--info": true, - "--license-score": 0, - "--format": "json-pp" - }, - "files_count": 43, - "files": [ - { - "path": "samples/README", - "type": "file", - "name": "README", - "base_name": "README", - "extension": "", - "date": "2017-02-02", - "size": 239, - "sha1": "c6cff3e0957498242703871dc306ed735181a9e5", - "md5": "5a863f0639e14c541564ba1bbd698af0", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/screenshot.png", - "type": "file", - "name": "screenshot.png", - "base_name": "screenshot", - "extension": ".png", - "date": "2017-02-02", - "size": 622754, - "sha1": "01ff4b1de0bc6c75c9cca6e46c80c1802d6976d4", - "md5": "b6ef5a90777147423c98b42a6a25e57a", - "files_count": null, - "mime_type": "image/png", - "file_type": "PNG image data, 2880 x 1666, 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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/arch", - "type": "directory", - "name": "arch", - "base_name": "arch", - "extension": "", - "date": null, - "size": 28103, - "sha1": null, - "md5": null, - "files_count": 1, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/JGroups", - "type": "directory", - "name": "JGroups", - "base_name": "JGroups", - "extension": "", - "date": null, - "size": 245739, - "sha1": null, - "md5": null, - "files_count": 14, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/zlib", - "type": "directory", - "name": "zlib", - "base_name": "zlib", - "extension": "", - "date": null, - "size": 274911, - "sha1": null, - "md5": null, - "files_count": 16, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/arch/zlib.tar.gz", - "type": "file", - "name": "zlib.tar.gz", - "base_name": "zlib", - "extension": ".tar.gz", - "date": "2017-02-02", - "size": 28103, - "sha1": "576f0ccfe534d7f5ff5d6400078d3c6586de3abd", - "md5": "20b2370751abfc08bb3556c1d8114b5a", - "files_count": null, - "mime_type": "application/x-gzip", - "file_type": "gzip compressed data, last modified: Wed Jul 15 02:08:19 2015, from Unix", - "programming_language": null, - "is_binary": true, - "is_text": false, - "is_archive": true, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [ - { - "type": "plain tarball", - "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": [] - } - ] - }, - { - "path": "samples/JGroups/EULA", - "type": "file", - "name": "EULA", - "base_name": "EULA", - "extension": "", - "date": "2017-02-02", - "size": 8265, - "sha1": "48fbca418bc12ffad8b8c82b08dac07508b08c6c", - "md5": "a97752adcb0781cf02a011f06e95887c", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Velocity", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "jboss-eula", - "score": 100.0, - "short_name": "JBoss EULA", - "category": "Proprietary Free", - "owner": "JBoss Community", - "homepage_url": "", - "text_url": "http://repository.jboss.org/licenses/jbossorg-eula.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:jboss-eula", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 3, - "end_line": 108, - "matched_rule": { - "identifier": "jboss-eula.LICENSE", - "license_choice": false, - "licenses": [ - "jboss-eula" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 2006 Red Hat, Inc." - ], - "holders": [ - "Red Hat, Inc." - ], - "authors": [], - "start_line": 104, - "end_line": 104 - } - ], - "packages": [] - }, - { - "path": "samples/JGroups/LICENSE", - "type": "file", - "name": "LICENSE", - "base_name": "LICENSE", - "extension": "", - "date": "2017-02-02", - "size": 26934, - "sha1": "8f1a637d2e2ed1bdb9eb01a7dccb5c12cc0557e1", - "md5": "f14599a2f089f6ff8c97e2baa4e3d575", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "lgpl-2.1-plus", - "score": 100.0, - "short_name": "LGPL 2.1 or later", - "category": "Copyleft Limited", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "text_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1-plus", - "spdx_license_key": "LGPL-2.1+", - "spdx_url": "https://spdx.org/licenses/LGPL-2.1", - "start_line": 1, - "end_line": 502, - "matched_rule": { - "identifier": "lgpl-2.1-plus_2.RULE", - "license_choice": false, - "licenses": [ - "lgpl-2.1-plus" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1991, 1999 Free Software Foundation, Inc." - ], - "holders": [ - "Free Software Foundation, Inc." - ], - "authors": [], - "start_line": 4, - "end_line": 7 - }, - { - "statements": [ - "copyrighted by the Free Software Foundation" - ], - "holders": [ - "the Free Software Foundation" - ], - "authors": [], - "start_line": 427, - "end_line": 433 - }, - { - "statements": [], - "holders": [], - "authors": [ - "James Random Hacker." - ], - "start_line": 496, - "end_line": 497 - } - ], - "packages": [] - }, - { - "path": "samples/JGroups/licenses", - "type": "directory", - "name": "licenses", - "base_name": "licenses", - "extension": "", - "date": null, - "size": 54569, - "sha1": null, - "md5": null, - "files_count": 5, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/JGroups/src", - "type": "directory", - "name": "src", - "base_name": "src", - "extension": "", - "date": null, - "size": 155971, - "sha1": null, - "md5": null, - "files_count": 7, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/JGroups/licenses/apache-1.1.txt", - "type": "file", - "name": "apache-1.1.txt", - "base_name": "apache-1.1", - "extension": ".txt", - "date": "2017-02-02", - "size": 2885, - "sha1": "6b5608d35c3e304532af43db8bbfc5947bef46a6", - "md5": "276982197c941f4cbf3d218546e17ae2", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "apache-1.1", - "score": 100.0, - "short_name": "Apache 1.1", - "category": "Permissive", - "owner": "Apache Software Foundation", - "homepage_url": "http://www.apache.org/licenses/", - "text_url": "http://apache.org/licenses/LICENSE-1.1", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-1.1", - "spdx_license_key": "Apache-1.1", - "spdx_url": "https://spdx.org/licenses/Apache-1.1", - "start_line": 2, - "end_line": 56, - "matched_rule": { - "identifier": "apache-1.1.SPDX.RULE", - "license_choice": false, - "licenses": [ - "apache-1.1" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2000 The Apache Software Foundation." - ], - "holders": [ - "The Apache Software Foundation." - ], - "authors": [], - "start_line": 4, - "end_line": 5 - }, - { - "statements": [], - "holders": [], - "authors": [ - "the Apache Software Foundation" - ], - "start_line": 20, - "end_line": 23 - } - ], - "packages": [] - }, - { - "path": "samples/JGroups/licenses/apache-2.0.txt", - "type": "file", - "name": "apache-2.0.txt", - "base_name": "apache-2.0", - "extension": ".txt", - "date": "2017-02-02", - "size": 11560, - "sha1": "47b573e3824cd5e02a1a3ae99e2735b49e0256e4", - "md5": "d273d63619c9aeaf15cdaf76422c4f87", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "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": 2, - "end_line": 202, - "matched_rule": { - "identifier": "apache-2.0_easyeclipse.RULE", - "license_choice": false, - "licenses": [ - "apache-2.0" - ] - } - } - ], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/JGroups/licenses/bouncycastle.txt", - "type": "file", - "name": "bouncycastle.txt", - "base_name": "bouncycastle", - "extension": ".txt", - "date": "2017-02-02", - "size": 1203, - "sha1": "5693e1524ea9c177cd603f47c2b77f5b8ec2a3b9", - "md5": "8d00871ced5dc2a03d1e90f1e59ea97b", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "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": 18, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2000 - 2006 The Legion Of The Bouncy Castle (http://www.bouncycastle.org)" - ], - "holders": [ - "Legion Of The Bouncy Castle (http://www.bouncycastle.org)" - ], - "authors": [], - "start_line": 5, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "samples/JGroups/licenses/cpl-1.0.txt", - "type": "file", - "name": "cpl-1.0.txt", - "base_name": "cpl-1.0", - "extension": ".txt", - "date": "2017-02-02", - "size": 11987, - "sha1": "681cf776bcd79752543d42490ec7ed22a29fd888", - "md5": "9a6d2c9ae73d59eb3dd38e3909750d14", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "cpl-1.0", - "score": 99.94, - "short_name": "CPL 1.0", - "category": "Copyleft Limited", - "owner": "IBM", - "homepage_url": "http://www.eclipse.org/legal/cpl-v10.html", - "text_url": "http://www.eclipse.org/legal/cpl-v10.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:cpl-1.0", - "spdx_license_key": "CPL-1.0", - "spdx_url": "https://spdx.org/licenses/CPL-1.0", - "start_line": 1, - "end_line": 212, - "matched_rule": { - "identifier": "cpl-1.0.SPDX.RULE", - "license_choice": false, - "licenses": [ - "cpl-1.0" - ] - } - } - ], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/JGroups/licenses/lgpl.txt", - "type": "file", - "name": "lgpl.txt", - "base_name": "lgpl", - "extension": ".txt", - "date": "2017-02-02", - "size": 26934, - "sha1": "8f1a637d2e2ed1bdb9eb01a7dccb5c12cc0557e1", - "md5": "f14599a2f089f6ff8c97e2baa4e3d575", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "lgpl-2.1-plus", - "score": 100.0, - "short_name": "LGPL 2.1 or later", - "category": "Copyleft Limited", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "text_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1-plus", - "spdx_license_key": "LGPL-2.1+", - "spdx_url": "https://spdx.org/licenses/LGPL-2.1", - "start_line": 1, - "end_line": 502, - "matched_rule": { - "identifier": "lgpl-2.1-plus_2.RULE", - "license_choice": false, - "licenses": [ - "lgpl-2.1-plus" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1991, 1999 Free Software Foundation, Inc." - ], - "holders": [ - "Free Software Foundation, Inc." - ], - "authors": [], - "start_line": 4, - "end_line": 7 - }, - { - "statements": [ - "copyrighted by the Free Software Foundation" - ], - "holders": [ - "the Free Software Foundation" - ], - "authors": [], - "start_line": 427, - "end_line": 433 - }, - { - "statements": [], - "holders": [], - "authors": [ - "James Random Hacker." - ], - "start_line": 496, - "end_line": 497 - } - ], - "packages": [] - }, - { - "path": "samples/JGroups/src/FixedMembershipToken.java", - "type": "file", - "name": "FixedMembershipToken.java", - "base_name": "FixedMembershipToken", - "extension": ".java", - "date": "2017-02-02", - "size": 5294, - "sha1": "4375406c4515f66ac0498d7c6cec5a4841a74cbc", - "md5": "d1994ba211364156da23ebda7b91de2e", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "lgpl-2.1-plus", - "score": 100.0, - "short_name": "LGPL 2.1 or later", - "category": "Copyleft Limited", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "text_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1-plus", - "spdx_license_key": "LGPL-2.1+", - "spdx_url": "https://spdx.org/licenses/LGPL-2.1", - "start_line": 7, - "end_line": 20, - "matched_rule": { - "identifier": "lgpl-2.1-plus_59.RULE", - "license_choice": false, - "licenses": [ - "lgpl-2.1-plus" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 2005, JBoss Inc." - ], - "holders": [ - "JBoss Inc." - ], - "authors": [], - "start_line": 2, - "end_line": 5 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Chris Mills (millsy@jboss.com)" - ], - "start_line": 51, - "end_line": 51 - } - ], - "packages": [] - }, - { - "path": "samples/JGroups/src/GuardedBy.java", - "type": "file", - "name": "GuardedBy.java", - "base_name": "GuardedBy", - "extension": ".java", - "date": "2017-02-02", - "size": 836, - "sha1": "93a222292c1eb143538cf876f0e5575fccd87271", - "md5": "739d4bb080991b678a662f5742f30ff1", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "cc-by-2.5", - "score": 70.0, - "short_name": "CC-BY-2.5", - "category": "Permissive", - "owner": "Creative Commons", - "homepage_url": "http://creativecommons.org/licenses/by/2.5/", - "text_url": "http://creativecommons.org/licenses/by/2.5/legalcode", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:cc-by-2.5", - "spdx_license_key": "CC-BY-2.5", - "spdx_url": "https://spdx.org/licenses/CC-BY-2.5", - "start_line": 10, - "end_line": 11, - "matched_rule": { - "identifier": "cc-by-2.5_4.RULE", - "license_choice": false, - "licenses": [ - "cc-by-2.5" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2005 Brian Goetz and Tim Peierls" - ], - "holders": [ - "Brian Goetz and Tim Peierls" - ], - "authors": [], - "start_line": 9, - "end_line": 12 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Bela Ban" - ], - "start_line": 14, - "end_line": 17 - } - ], - "packages": [] - }, - { - "path": "samples/JGroups/src/ImmutableReference.java", - "type": "file", - "name": "ImmutableReference.java", - "base_name": "ImmutableReference", - "extension": ".java", - "date": "2017-02-02", - "size": 1893, - "sha1": "429e0ef4c3e85c37b766225402cb77b75f4bda9f", - "md5": "4f72b0abb111b459c89db7e7fd89aba1", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "lgpl-2.1-plus", - "score": 100.0, - "short_name": "LGPL 2.1 or later", - "category": "Copyleft Limited", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "text_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1-plus", - "spdx_license_key": "LGPL-2.1+", - "spdx_url": "https://spdx.org/licenses/LGPL-2.1", - "start_line": 7, - "end_line": 20, - "matched_rule": { - "identifier": "lgpl-2.1-plus_59.RULE", - "license_choice": false, - "licenses": [ - "lgpl-2.1-plus" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 2010, Red Hat, Inc." - ], - "holders": [ - "Red Hat, Inc." - ], - "authors": [], - "start_line": 2, - "end_line": 5 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Brian Stansberry" - ], - "start_line": 29, - "end_line": 29 - } - ], - "packages": [] - }, - { - "path": "samples/JGroups/src/RATE_LIMITER.java", - "type": "file", - "name": "RATE_LIMITER.java", - "base_name": "RATE_LIMITER", - "extension": ".java", - "date": "2017-02-02", - "size": 3812, - "sha1": "7e79042c0239ec9313749be7cceb6f12d0705992", - "md5": "1895e6dee69935f4fc6902abe2d80f6e", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [], - "holders": [], - "authors": [ - "Bela Ban" - ], - "start_line": 14, - "end_line": 17 - } - ], - "packages": [] - }, - { - "path": "samples/JGroups/src/RouterStub.java", - "type": "file", - "name": "RouterStub.java", - "base_name": "RouterStub", - "extension": ".java", - "date": "2017-02-02", - "size": 10208, - "sha1": "f255c2dbdb104bb0b0773da62fd57a05828a3c53", - "md5": "7026e7ae2fa9bf3217441f7495f5989a", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [], - "holders": [], - "authors": [ - "Bela Ban" - ], - "start_line": 22, - "end_line": 24 - } - ], - "packages": [] - }, - { - "path": "samples/JGroups/src/RouterStubManager.java", - "type": "file", - "name": "RouterStubManager.java", - "base_name": "RouterStubManager", - "extension": ".java", - "date": "2017-02-02", - "size": 8375, - "sha1": "7c03434b9b6ed5e8d70a780a4a8c677955a365bf", - "md5": "2fe89992a3dfb7f5f2343236fbe665a4", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "lgpl-2.1-plus", - "score": 100.0, - "short_name": "LGPL 2.1 or later", - "category": "Copyleft Limited", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "text_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1-plus", - "spdx_license_key": "LGPL-2.1+", - "spdx_url": "https://spdx.org/licenses/LGPL-2.1", - "start_line": 7, - "end_line": 20, - "matched_rule": { - "identifier": "lgpl-2.1-plus_59.RULE", - "license_choice": false, - "licenses": [ - "lgpl-2.1-plus" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 2009, Red Hat Middleware LLC" - ], - "holders": [ - "Red Hat Middleware LLC" - ], - "authors": [], - "start_line": 2, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "samples/JGroups/src/S3_PING.java", - "type": "file", - "name": "S3_PING.java", - "base_name": "S3_PING", - "extension": ".java", - "date": "2017-02-02", - "size": 125553, - "sha1": "41ea46b0c88c4cf331b38b0074497672c114dd12", - "md5": "8f47e9762f9654f6ccb160740cd856c8", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "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": 1649, - "end_line": 1649, - "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": 1692, - "end_line": 1692, - "matched_rule": { - "identifier": "public-domain.LICENSE", - "license_choice": false, - "licenses": [ - "public-domain" - ] - } - } - ], - "copyrights": [ - { - "statements": [], - "holders": [], - "authors": [ - "Bela Ban" - ], - "start_line": 35, - "end_line": 38 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Robert Harder", - "rob@iharder.net" - ], - "start_line": 1697, - "end_line": 1700 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/adler32.c", - "type": "file", - "name": "adler32.c", - "base_name": "adler32", - "extension": ".c", - "date": "2017-02-02", - "size": 5147, - "sha1": "f7142f39739b275d3077987f6132504139dcedd9", - "md5": "faf360ba01a8aa854409e93214a46296", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2011 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/deflate.c", - "type": "file", - "name": "deflate.c", - "base_name": "deflate", - "extension": ".c", - "date": "2017-02-02", - "size": 73443, - "sha1": "4cfa5e74c668ef12218a6eee87801e8b75d248ef", - "md5": "2018726c0f336ce97d2aeeafc06879c3", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2013 Jean-loup Gailly and Mark Adler" - ], - "holders": [ - "Jean-loup Gailly and Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Leonid Broukhis. Thanks" - ], - "start_line": 33, - "end_line": 35 - }, - { - "statements": [ - "Copyright 1995-2013 Jean-loup Gailly and Mark Adler" - ], - "holders": [ - "Jean-loup Gailly and Mark Adler" - ], - "authors": [], - "start_line": 54, - "end_line": 55 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/deflate.h", - "type": "file", - "name": "deflate.h", - "base_name": "deflate", - "extension": ".h", - "date": "2017-02-02", - "size": 13120, - "sha1": "cf1978ea0378a2f0b0fa98c383c9b08a3b3f3655", - "md5": "f284d0140dcd0d799ad8a6c74e311829", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - }, - { - "key": "zlib", - "score": 100.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 93, - "end_line": 94, - "matched_rule": { - "identifier": "zlib_21.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2012 Jean-loup Gailly" - ], - "holders": [ - "Jean-loup Gailly" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/zlib.h", - "type": "file", - "name": "zlib.h", - "base_name": "zlib", - "extension": ".h", - "date": "2017-02-02", - "size": 89651, - "sha1": "1fabede36e27d93619690144b7a240bfe7a24f88", - "md5": "a1d4c6864c789f539d325566a863ff26", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 100.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 6, - "end_line": 23, - "matched_rule": { - "identifier": "zlib_17.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2013 Jean-loup Gailly and Mark Adler" - ], - "holders": [ - "Jean-loup Gailly and Mark Adler" - ], - "authors": [], - "start_line": 4, - "end_line": 4 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/zutil.c", - "type": "file", - "name": "zutil.c", - "base_name": "zutil", - "extension": ".c", - "date": "2017-02-02", - "size": 7738, - "sha1": "750edc45373acd6b3f187ad0d25766819db67a37", - "md5": "15b58dbc0d7c5ee05deb2a0094ecca8c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2005, 2010, 2011, 2012 Jean-loup Gailly." - ], - "holders": [ - "Jean-loup Gailly." - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/zutil.h", - "type": "file", - "name": "zutil.h", - "base_name": "zutil", - "extension": ".h", - "date": "2017-02-02", - "size": 7019, - "sha1": "b541ca323c529c1b6bc3102b8b01473a2409aa5a", - "md5": "0cd2089ea6c4dc4bd584d7dd3fb7037f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2013 Jean-loup Gailly." - ], - "holders": [ - "Jean-loup Gailly." - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/ada", - "type": "directory", - "name": "ada", - "base_name": "ada", - "extension": "", - "date": null, - "size": 13922, - "sha1": null, - "md5": null, - "files_count": 1, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/zlib/dotzlib", - "type": "directory", - "name": "dotzlib", - "base_name": "dotzlib", - "extension": "", - "date": null, - "size": 14257, - "sha1": null, - "md5": null, - "files_count": 4, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/zlib/gcc_gvmat64", - "type": "directory", - "name": "gcc_gvmat64", - "base_name": "gcc_gvmat64", - "extension": "", - "date": null, - "size": 16413, - "sha1": null, - "md5": null, - "files_count": 1, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/zlib/infback9", - "type": "directory", - "name": "infback9", - "base_name": "infback9", - "extension": "", - "date": null, - "size": 23875, - "sha1": null, - "md5": null, - "files_count": 2, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/zlib/iostream2", - "type": "directory", - "name": "iostream2", - "base_name": "iostream2", - "extension": "", - "date": null, - "size": 10326, - "sha1": null, - "md5": null, - "files_count": 2, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/zlib/ada/zlib.ads", - "type": "file", - "name": "zlib.ads", - "base_name": "zlib", - "extension": ".ads", - "date": "2017-02-02", - "size": 13922, - "sha1": "b1735a58842c907a4926f50326c774538482efd2", - "md5": "55f9046b4db726c6981e28a15dd48b12", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Ada", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "gpl-2.0-plus-ada", - "score": 100.0, - "short_name": "GPL 2.0 or later with Ada exception", - "category": "Copyleft Limited", - "owner": "Dmitriy Anisimkov", - "homepage_url": "", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus-ada", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 6, - "end_line": 25, - "matched_rule": { - "identifier": "gpl-2.0-plus-ada.LICENSE", - "license_choice": false, - "licenses": [ - "gpl-2.0-plus-ada" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002-2004 Dmitriy Anisimkov" - ], - "holders": [ - "Dmitriy Anisimkov" - ], - "authors": [], - "start_line": 4, - "end_line": 4 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/dotzlib/AssemblyInfo.cs", - "type": "file", - "name": "AssemblyInfo.cs", - "base_name": "AssemblyInfo", - "extension": ".cs", - "date": "2017-02-02", - "size": 2500, - "sha1": "9f1db1177b2e9a014f72bb3cd80be17133e06d16", - "md5": "23d0d7c18846fc31655b6aa89b7c8038", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "C#", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [ - "(c) 2004 by Henrik Ravn" - ], - "holders": [ - "Henrik Ravn" - ], - "authors": [], - "start_line": 13, - "end_line": 16 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/dotzlib/ChecksumImpl.cs", - "type": "file", - "name": "ChecksumImpl.cs", - "base_name": "ChecksumImpl", - "extension": ".cs", - "date": "2017-02-02", - "size": 8040, - "sha1": "3807a0e24a57b92ea301559cab7307b8eab52c51", - "md5": "d01b3cb2e75da9b15f05b92b42f6bd33", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ISO-8859 text, with CRLF line terminators", - "programming_language": "C#", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "boost-1.0", - "score": 91.3, - "short_name": "Boost 1.0", - "category": "Permissive", - "owner": "Boost", - "homepage_url": "http://www.boost.org/users/license.html", - "text_url": "http://www.boost.org/LICENSE_1_0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:boost-1.0", - "spdx_license_key": "BSL-1.0", - "spdx_url": "https://spdx.org/licenses/BSL-1.0", - "start_line": 4, - "end_line": 5, - "matched_rule": { - "identifier": "boost-1.0_1.RULE", - "license_choice": false, - "licenses": [ - "boost-1.0" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "(c) Copyright Henrik Ravn 2004" - ], - "holders": [ - "Henrik Ravn" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/dotzlib/LICENSE_1_0.txt", - "type": "file", - "name": "LICENSE_1_0.txt", - "base_name": "LICENSE_1_0", - "extension": ".txt", - "date": "2017-02-02", - "size": 1359, - "sha1": "892b34f7865d90a6f949f50d95e49625a10bc7f0", - "md5": "81543b22c36f10d20ac9712f8d80ef8d", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "boost-1.0", - "score": 100.0, - "short_name": "Boost 1.0", - "category": "Permissive", - "owner": "Boost", - "homepage_url": "http://www.boost.org/users/license.html", - "text_url": "http://www.boost.org/LICENSE_1_0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:boost-1.0", - "spdx_license_key": "BSL-1.0", - "spdx_url": "https://spdx.org/licenses/BSL-1.0", - "start_line": 1, - "end_line": 23, - "matched_rule": { - "identifier": "boost-1.0.LICENSE", - "license_choice": false, - "licenses": [ - "boost-1.0" - ] - } - } - ], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/zlib/dotzlib/readme.txt", - "type": "file", - "name": "readme.txt", - "base_name": "readme", - "extension": ".txt", - "date": "2017-02-02", - "size": 2358, - "sha1": "b1229b826f0096808628474538cea8fec2922a9b", - "md5": "1f20f3168ee63d90de033edac2ce383c", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "boost-1.0", - "score": 30.0, - "short_name": "Boost 1.0", - "category": "Permissive", - "owner": "Boost", - "homepage_url": "http://www.boost.org/users/license.html", - "text_url": "http://www.boost.org/LICENSE_1_0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:boost-1.0", - "spdx_license_key": "BSL-1.0", - "spdx_url": "https://spdx.org/licenses/BSL-1.0", - "start_line": 58, - "end_line": 58, - "matched_rule": { - "identifier": "boost-1.0.RULE", - "license_choice": false, - "licenses": [ - "boost-1.0" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) Henrik Ravn 2004" - ], - "holders": [ - "Henrik Ravn" - ], - "authors": [], - "start_line": 55, - "end_line": 55 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/gcc_gvmat64/gvmat64.S", - "type": "file", - "name": "gvmat64.S", - "base_name": "gvmat64", - "extension": ".S", - "date": "2017-02-02", - "size": 16413, - "sha1": "742603cba1af98a1432cc02efb019b1a5760adf2", - "md5": "5e772d7302475e5473d0c4c57b9861e8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "GAS", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 98.53, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 13, - "end_line": 31, - "matched_rule": { - "identifier": "zlib_4.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2010 Jean-loup Gailly, Brian Raiter and Gilles Vollant." - ], - "holders": [ - "Jean-loup Gailly, Brian Raiter and Gilles Vollant." - ], - "authors": [], - "start_line": 9, - "end_line": 10 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Gilles Vollant" - ], - "start_line": 12, - "end_line": 15 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/infback9/infback9.c", - "type": "file", - "name": "infback9.c", - "base_name": "infback9", - "extension": ".c", - "date": "2017-02-02", - "size": 22244, - "sha1": "be9fd74e9afc16cfbbb693195df972665179c734", - "md5": "f08efcac0c60b475a7a34888a7b85236", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2008 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/infback9/infback9.h", - "type": "file", - "name": "infback9.h", - "base_name": "infback9", - "extension": ".h", - "date": "2017-02-02", - "size": 1631, - "sha1": "9f66c9bf6ad6b4c676e3fe514be653704b403019", - "md5": "7acf663360f7bb54d0f95b808c673fd4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2003 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/iostream2/zstream.h", - "type": "file", - "name": "zstream.h", - "base_name": "zstream", - "extension": ".h", - "date": "2017-02-02", - "size": 9590, - "sha1": "e849f490ba14f090f2d97655197098f0a4187c4a", - "md5": "4d344c3d93e264c9d9b42ed7c54d34d9", - "files_count": null, - "mime_type": "text/x-c++", - "file_type": "C++ source, ASCII text, with CRLF line terminators", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "cmr-no", - "score": 100.0, - "short_name": "CMR License", - "category": "Permissive", - "owner": "CMR - Christian Michelsen Research AS", - "homepage_url": "", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:cmr-no", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 3, - "end_line": 15, - "matched_rule": { - "identifier": "cmr-no.LICENSE", - "license_choice": false, - "licenses": [ - "cmr-no" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1997 Christian Michelsen Research as Advanced Computing" - ], - "holders": [ - "Christian Michelsen Research", - "Advanced Computing" - ], - "authors": [], - "start_line": 3, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/iostream2/zstream_test.cpp", - "type": "file", - "name": "zstream_test.cpp", - "base_name": "zstream_test", - "extension": ".cpp", - "date": "2017-02-02", - "size": 736, - "sha1": "ced646ae3fc8dde7e7cdff41da29b92cce4f795d", - "md5": "b3a86f4710d45e920c8adfa04876b7b5", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "C++", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - } - ] -} diff --git a/tests/data/models/scan/samples-i-no-json-pp.json b/tests/data/models/scan/samples-i-no-json-pp.json deleted file mode 100644 index ed646a56..00000000 --- a/tests/data/models/scan/samples-i-no-json-pp.json +++ /dev/null @@ -1 +0,0 @@ -{"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.2.1","scancode_options":{"--info":true,"--license-score":0,"--format":"json"},"files_count":43,"files":[{"path":"samples/README","type":"file","name":"README","base_name":"README","extension":"","date":"2017-02-02","size":239,"sha1":"c6cff3e0957498242703871dc306ed735181a9e5","md5":"5a863f0639e14c541564ba1bbd698af0","files_count":null,"mime_type":"text/plain","file_type":"ASCII text, with CRLF line terminators","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"scan_errors":[]},{"path":"samples/screenshot.png","type":"file","name":"screenshot.png","base_name":"screenshot","extension":".png","date":"2017-02-02","size":622754,"sha1":"01ff4b1de0bc6c75c9cca6e46c80c1802d6976d4","md5":"b6ef5a90777147423c98b42a6a25e57a","files_count":null,"mime_type":"image/png","file_type":"PNG image data, 2880 x 1666, 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,"scan_errors":[]},{"path":"samples/arch","type":"directory","name":"arch","base_name":"arch","extension":"","date":null,"size":28103,"sha1":null,"md5":null,"files_count":1,"mime_type":null,"file_type":null,"programming_language":null,"is_binary":false,"is_text":false,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"scan_errors":[]},{"path":"samples/JGroups","type":"directory","name":"JGroups","base_name":"JGroups","extension":"","date":null,"size":245739,"sha1":null,"md5":null,"files_count":14,"mime_type":null,"file_type":null,"programming_language":null,"is_binary":false,"is_text":false,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"scan_errors":[]},{"path":"samples/zlib","type":"directory","name":"zlib","base_name":"zlib","extension":"","date":null,"size":274911,"sha1":null,"md5":null,"files_count":16,"mime_type":null,"file_type":null,"programming_language":null,"is_binary":false,"is_text":false,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"scan_errors":[]},{"path":"samples/arch/zlib.tar.gz","type":"file","name":"zlib.tar.gz","base_name":"zlib","extension":".tar.gz","date":"2017-02-02","size":28103,"sha1":"576f0ccfe534d7f5ff5d6400078d3c6586de3abd","md5":"20b2370751abfc08bb3556c1d8114b5a","files_count":null,"mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Wed Jul 15 02:08:19 2015, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"scan_errors":[]},{"path":"samples/JGroups/EULA","type":"file","name":"EULA","base_name":"EULA","extension":"","date":"2017-02-02","size":8265,"sha1":"48fbca418bc12ffad8b8c82b08dac07508b08c6c","md5":"a97752adcb0781cf02a011f06e95887c","files_count":null,"mime_type":"text/plain","file_type":"ASCII text, with CRLF line terminators","programming_language":"Velocity","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"scan_errors":[]},{"path":"samples/JGroups/LICENSE","type":"file","name":"LICENSE","base_name":"LICENSE","extension":"","date":"2017-02-02","size":26934,"sha1":"8f1a637d2e2ed1bdb9eb01a7dccb5c12cc0557e1","md5":"f14599a2f089f6ff8c97e2baa4e3d575","files_count":null,"mime_type":"text/plain","file_type":"ASCII text, with CRLF line terminators","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"scan_errors":[]},{"path":"samples/JGroups/licenses","type":"directory","name":"licenses","base_name":"licenses","extension":"","date":null,"size":54569,"sha1":null,"md5":null,"files_count":5,"mime_type":null,"file_type":null,"programming_language":null,"is_binary":false,"is_text":false,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"scan_errors":[]},{"path":"samples/JGroups/src","type":"directory","name":"src","base_name":"src","extension":"","date":null,"size":155971,"sha1":null,"md5":null,"files_count":7,"mime_type":null,"file_type":null,"programming_language":null,"is_binary":false,"is_text":false,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"scan_errors":[]},{"path":"samples/JGroups/licenses/apache-1.1.txt","type":"file","name":"apache-1.1.txt","base_name":"apache-1.1","extension":".txt","date":"2017-02-02","size":2885,"sha1":"6b5608d35c3e304532af43db8bbfc5947bef46a6","md5":"276982197c941f4cbf3d218546e17ae2","files_count":null,"mime_type":"text/plain","file_type":"ASCII text, with CRLF line terminators","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"scan_errors":[]},{"path":"samples/JGroups/licenses/apache-2.0.txt","type":"file","name":"apache-2.0.txt","base_name":"apache-2.0","extension":".txt","date":"2017-02-02","size":11560,"sha1":"47b573e3824cd5e02a1a3ae99e2735b49e0256e4","md5":"d273d63619c9aeaf15cdaf76422c4f87","files_count":null,"mime_type":"text/plain","file_type":"ASCII text, with CRLF line terminators","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"scan_errors":[]},{"path":"samples/JGroups/licenses/bouncycastle.txt","type":"file","name":"bouncycastle.txt","base_name":"bouncycastle","extension":".txt","date":"2017-02-02","size":1203,"sha1":"5693e1524ea9c177cd603f47c2b77f5b8ec2a3b9","md5":"8d00871ced5dc2a03d1e90f1e59ea97b","files_count":null,"mime_type":"text/plain","file_type":"ASCII text, with CRLF line terminators","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"scan_errors":[]},{"path":"samples/JGroups/licenses/cpl-1.0.txt","type":"file","name":"cpl-1.0.txt","base_name":"cpl-1.0","extension":".txt","date":"2017-02-02","size":11987,"sha1":"681cf776bcd79752543d42490ec7ed22a29fd888","md5":"9a6d2c9ae73d59eb3dd38e3909750d14","files_count":null,"mime_type":"text/plain","file_type":"ASCII text, with CRLF line terminators","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"scan_errors":[]},{"path":"samples/JGroups/licenses/lgpl.txt","type":"file","name":"lgpl.txt","base_name":"lgpl","extension":".txt","date":"2017-02-02","size":26934,"sha1":"8f1a637d2e2ed1bdb9eb01a7dccb5c12cc0557e1","md5":"f14599a2f089f6ff8c97e2baa4e3d575","files_count":null,"mime_type":"text/plain","file_type":"ASCII text, with CRLF line terminators","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"scan_errors":[]},{"path":"samples/JGroups/src/FixedMembershipToken.java","type":"file","name":"FixedMembershipToken.java","base_name":"FixedMembershipToken","extension":".java","date":"2017-02-02","size":5294,"sha1":"4375406c4515f66ac0498d7c6cec5a4841a74cbc","md5":"d1994ba211364156da23ebda7b91de2e","files_count":null,"mime_type":"text/plain","file_type":"ASCII text, with CRLF line terminators","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"scan_errors":[]},{"path":"samples/JGroups/src/GuardedBy.java","type":"file","name":"GuardedBy.java","base_name":"GuardedBy","extension":".java","date":"2017-02-02","size":836,"sha1":"93a222292c1eb143538cf876f0e5575fccd87271","md5":"739d4bb080991b678a662f5742f30ff1","files_count":null,"mime_type":"text/plain","file_type":"ASCII text, with CRLF line terminators","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"scan_errors":[]},{"path":"samples/JGroups/src/ImmutableReference.java","type":"file","name":"ImmutableReference.java","base_name":"ImmutableReference","extension":".java","date":"2017-02-02","size":1893,"sha1":"429e0ef4c3e85c37b766225402cb77b75f4bda9f","md5":"4f72b0abb111b459c89db7e7fd89aba1","files_count":null,"mime_type":"text/plain","file_type":"ASCII text, with CRLF line terminators","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"scan_errors":[]},{"path":"samples/JGroups/src/RATE_LIMITER.java","type":"file","name":"RATE_LIMITER.java","base_name":"RATE_LIMITER","extension":".java","date":"2017-02-02","size":3812,"sha1":"7e79042c0239ec9313749be7cceb6f12d0705992","md5":"1895e6dee69935f4fc6902abe2d80f6e","files_count":null,"mime_type":"text/plain","file_type":"ASCII text, with CRLF line terminators","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"scan_errors":[]},{"path":"samples/JGroups/src/RouterStub.java","type":"file","name":"RouterStub.java","base_name":"RouterStub","extension":".java","date":"2017-02-02","size":10208,"sha1":"f255c2dbdb104bb0b0773da62fd57a05828a3c53","md5":"7026e7ae2fa9bf3217441f7495f5989a","files_count":null,"mime_type":"text/plain","file_type":"ASCII text, with CRLF line terminators","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"scan_errors":[]},{"path":"samples/JGroups/src/RouterStubManager.java","type":"file","name":"RouterStubManager.java","base_name":"RouterStubManager","extension":".java","date":"2017-02-02","size":8375,"sha1":"7c03434b9b6ed5e8d70a780a4a8c677955a365bf","md5":"2fe89992a3dfb7f5f2343236fbe665a4","files_count":null,"mime_type":"text/plain","file_type":"ASCII text, with CRLF line terminators","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"scan_errors":[]},{"path":"samples/JGroups/src/S3_PING.java","type":"file","name":"S3_PING.java","base_name":"S3_PING","extension":".java","date":"2017-02-02","size":125553,"sha1":"41ea46b0c88c4cf331b38b0074497672c114dd12","md5":"8f47e9762f9654f6ccb160740cd856c8","files_count":null,"mime_type":"text/plain","file_type":"ASCII text, with CRLF line terminators","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"scan_errors":[]},{"path":"samples/zlib/adler32.c","type":"file","name":"adler32.c","base_name":"adler32","extension":".c","date":"2017-02-02","size":5147,"sha1":"f7142f39739b275d3077987f6132504139dcedd9","md5":"faf360ba01a8aa854409e93214a46296","files_count":null,"mime_type":"text/x-c","file_type":"C source, ASCII text, with CRLF line terminators","programming_language":"C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"scan_errors":[]},{"path":"samples/zlib/deflate.c","type":"file","name":"deflate.c","base_name":"deflate","extension":".c","date":"2017-02-02","size":73443,"sha1":"4cfa5e74c668ef12218a6eee87801e8b75d248ef","md5":"2018726c0f336ce97d2aeeafc06879c3","files_count":null,"mime_type":"text/x-c","file_type":"C source, ASCII text, with CRLF line terminators","programming_language":"C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"scan_errors":[]},{"path":"samples/zlib/deflate.h","type":"file","name":"deflate.h","base_name":"deflate","extension":".h","date":"2017-02-02","size":13120,"sha1":"cf1978ea0378a2f0b0fa98c383c9b08a3b3f3655","md5":"f284d0140dcd0d799ad8a6c74e311829","files_count":null,"mime_type":"text/x-c","file_type":"C source, ASCII text, with CRLF line terminators","programming_language":"C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"scan_errors":[]},{"path":"samples/zlib/zlib.h","type":"file","name":"zlib.h","base_name":"zlib","extension":".h","date":"2017-02-02","size":89651,"sha1":"1fabede36e27d93619690144b7a240bfe7a24f88","md5":"a1d4c6864c789f539d325566a863ff26","files_count":null,"mime_type":"text/x-c","file_type":"C source, ASCII text, with CRLF line terminators","programming_language":"C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"scan_errors":[]},{"path":"samples/zlib/zutil.c","type":"file","name":"zutil.c","base_name":"zutil","extension":".c","date":"2017-02-02","size":7738,"sha1":"750edc45373acd6b3f187ad0d25766819db67a37","md5":"15b58dbc0d7c5ee05deb2a0094ecca8c","files_count":null,"mime_type":"text/x-c","file_type":"C source, ASCII text, with CRLF line terminators","programming_language":"C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"scan_errors":[]},{"path":"samples/zlib/zutil.h","type":"file","name":"zutil.h","base_name":"zutil","extension":".h","date":"2017-02-02","size":7019,"sha1":"b541ca323c529c1b6bc3102b8b01473a2409aa5a","md5":"0cd2089ea6c4dc4bd584d7dd3fb7037f","files_count":null,"mime_type":"text/x-c","file_type":"C source, ASCII text, with CRLF line terminators","programming_language":"C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"scan_errors":[]},{"path":"samples/zlib/ada","type":"directory","name":"ada","base_name":"ada","extension":"","date":null,"size":13922,"sha1":null,"md5":null,"files_count":1,"mime_type":null,"file_type":null,"programming_language":null,"is_binary":false,"is_text":false,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"scan_errors":[]},{"path":"samples/zlib/dotzlib","type":"directory","name":"dotzlib","base_name":"dotzlib","extension":"","date":null,"size":14257,"sha1":null,"md5":null,"files_count":4,"mime_type":null,"file_type":null,"programming_language":null,"is_binary":false,"is_text":false,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"scan_errors":[]},{"path":"samples/zlib/gcc_gvmat64","type":"directory","name":"gcc_gvmat64","base_name":"gcc_gvmat64","extension":"","date":null,"size":16413,"sha1":null,"md5":null,"files_count":1,"mime_type":null,"file_type":null,"programming_language":null,"is_binary":false,"is_text":false,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"scan_errors":[]},{"path":"samples/zlib/infback9","type":"directory","name":"infback9","base_name":"infback9","extension":"","date":null,"size":23875,"sha1":null,"md5":null,"files_count":2,"mime_type":null,"file_type":null,"programming_language":null,"is_binary":false,"is_text":false,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"scan_errors":[]},{"path":"samples/zlib/iostream2","type":"directory","name":"iostream2","base_name":"iostream2","extension":"","date":null,"size":10326,"sha1":null,"md5":null,"files_count":2,"mime_type":null,"file_type":null,"programming_language":null,"is_binary":false,"is_text":false,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"scan_errors":[]},{"path":"samples/zlib/ada/zlib.ads","type":"file","name":"zlib.ads","base_name":"zlib","extension":".ads","date":"2017-02-02","size":13922,"sha1":"b1735a58842c907a4926f50326c774538482efd2","md5":"55f9046b4db726c6981e28a15dd48b12","files_count":null,"mime_type":"text/plain","file_type":"ASCII text, with CRLF line terminators","programming_language":"Ada","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"scan_errors":[]},{"path":"samples/zlib/dotzlib/AssemblyInfo.cs","type":"file","name":"AssemblyInfo.cs","base_name":"AssemblyInfo","extension":".cs","date":"2017-02-02","size":2500,"sha1":"9f1db1177b2e9a014f72bb3cd80be17133e06d16","md5":"23d0d7c18846fc31655b6aa89b7c8038","files_count":null,"mime_type":"text/plain","file_type":"ASCII text, with CRLF line terminators","programming_language":"C#","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"scan_errors":[]},{"path":"samples/zlib/dotzlib/ChecksumImpl.cs","type":"file","name":"ChecksumImpl.cs","base_name":"ChecksumImpl","extension":".cs","date":"2017-02-02","size":8040,"sha1":"3807a0e24a57b92ea301559cab7307b8eab52c51","md5":"d01b3cb2e75da9b15f05b92b42f6bd33","files_count":null,"mime_type":"text/plain","file_type":"ISO-8859 text, with CRLF line terminators","programming_language":"C#","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"scan_errors":[]},{"path":"samples/zlib/dotzlib/LICENSE_1_0.txt","type":"file","name":"LICENSE_1_0.txt","base_name":"LICENSE_1_0","extension":".txt","date":"2017-02-02","size":1359,"sha1":"892b34f7865d90a6f949f50d95e49625a10bc7f0","md5":"81543b22c36f10d20ac9712f8d80ef8d","files_count":null,"mime_type":"text/plain","file_type":"ASCII text, with CRLF line terminators","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"scan_errors":[]},{"path":"samples/zlib/dotzlib/readme.txt","type":"file","name":"readme.txt","base_name":"readme","extension":".txt","date":"2017-02-02","size":2358,"sha1":"b1229b826f0096808628474538cea8fec2922a9b","md5":"1f20f3168ee63d90de033edac2ce383c","files_count":null,"mime_type":"text/plain","file_type":"ASCII text, with CRLF line terminators","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"scan_errors":[]},{"path":"samples/zlib/gcc_gvmat64/gvmat64.S","type":"file","name":"gvmat64.S","base_name":"gvmat64","extension":".S","date":"2017-02-02","size":16413,"sha1":"742603cba1af98a1432cc02efb019b1a5760adf2","md5":"5e772d7302475e5473d0c4c57b9861e8","files_count":null,"mime_type":"text/x-c","file_type":"C source, ASCII text, with CRLF line terminators","programming_language":"GAS","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"scan_errors":[]},{"path":"samples/zlib/infback9/infback9.c","type":"file","name":"infback9.c","base_name":"infback9","extension":".c","date":"2017-02-02","size":22244,"sha1":"be9fd74e9afc16cfbbb693195df972665179c734","md5":"f08efcac0c60b475a7a34888a7b85236","files_count":null,"mime_type":"text/x-c","file_type":"C source, ASCII text, with CRLF line terminators","programming_language":"C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"scan_errors":[]},{"path":"samples/zlib/infback9/infback9.h","type":"file","name":"infback9.h","base_name":"infback9","extension":".h","date":"2017-02-02","size":1631,"sha1":"9f66c9bf6ad6b4c676e3fe514be653704b403019","md5":"7acf663360f7bb54d0f95b808c673fd4","files_count":null,"mime_type":"text/x-c","file_type":"C source, ASCII text, with CRLF line terminators","programming_language":"C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"scan_errors":[]},{"path":"samples/zlib/iostream2/zstream.h","type":"file","name":"zstream.h","base_name":"zstream","extension":".h","date":"2017-02-02","size":9590,"sha1":"e849f490ba14f090f2d97655197098f0a4187c4a","md5":"4d344c3d93e264c9d9b42ed7c54d34d9","files_count":null,"mime_type":"text/x-c++","file_type":"C++ source, ASCII text, with CRLF line terminators","programming_language":"C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"scan_errors":[]},{"path":"samples/zlib/iostream2/zstream_test.cpp","type":"file","name":"zstream_test.cpp","base_name":"zstream_test","extension":".cpp","date":"2017-02-02","size":736,"sha1":"ced646ae3fc8dde7e7cdff41da29b92cce4f795d","md5":"b3a86f4710d45e920c8adfa04876b7b5","files_count":null,"mime_type":"text/x-c","file_type":"C source, ASCII text, with CRLF line terminators","programming_language":"C++","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"scan_errors":[]}]} diff --git a/tests/data/models/scan/this-is-json.txt b/tests/data/models/scan/this-is-json.txt deleted file mode 100644 index e2216c93..00000000 --- a/tests/data/models/scan/this-is-json.txt +++ /dev/null @@ -1,2138 +0,0 @@ -{ - "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.1.0", - "scancode_options": { - "--copyright": true, - "--license": true, - "--package": true, - "--info": true, - "--license-score": 0, - "--format": "json-pp" - }, - "files_count": 43, - "files": [ - { - "path": "samples/README", - "type": "file", - "name": "README", - "base_name": "README", - "extension": "", - "date": "2017-02-02", - "size": 239, - "sha1": "c6cff3e0957498242703871dc306ed735181a9e5", - "md5": "5a863f0639e14c541564ba1bbd698af0", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/screenshot.png", - "type": "file", - "name": "screenshot.png", - "base_name": "screenshot", - "extension": ".png", - "date": "2017-02-02", - "size": 622754, - "sha1": "01ff4b1de0bc6c75c9cca6e46c80c1802d6976d4", - "md5": "b6ef5a90777147423c98b42a6a25e57a", - "files_count": null, - "mime_type": "image/png", - "file_type": "PNG image data, 2880 x 1666, 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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/arch", - "type": "directory", - "name": "arch", - "base_name": "arch", - "extension": "", - "date": null, - "size": 28103, - "sha1": null, - "md5": null, - "files_count": 1, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/JGroups", - "type": "directory", - "name": "JGroups", - "base_name": "JGroups", - "extension": "", - "date": null, - "size": 245739, - "sha1": null, - "md5": null, - "files_count": 14, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/zlib", - "type": "directory", - "name": "zlib", - "base_name": "zlib", - "extension": "", - "date": null, - "size": 274911, - "sha1": null, - "md5": null, - "files_count": 16, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/arch/zlib.tar.gz", - "type": "file", - "name": "zlib.tar.gz", - "base_name": "zlib", - "extension": ".tar.gz", - "date": "2017-02-02", - "size": 28103, - "sha1": "576f0ccfe534d7f5ff5d6400078d3c6586de3abd", - "md5": "20b2370751abfc08bb3556c1d8114b5a", - "files_count": null, - "mime_type": "application/x-gzip", - "file_type": "gzip compressed data, last modified: Wed Jul 15 09:08:19 2015, from Unix", - "programming_language": null, - "is_binary": true, - "is_text": false, - "is_archive": true, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [ - { - "type": "plain tarball", - "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": [] - } - ] - }, - { - "path": "samples/JGroups/EULA", - "type": "file", - "name": "EULA", - "base_name": "EULA", - "extension": "", - "date": "2017-02-02", - "size": 8265, - "sha1": "48fbca418bc12ffad8b8c82b08dac07508b08c6c", - "md5": "a97752adcb0781cf02a011f06e95887c", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Velocity", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "jboss-eula", - "score": 100.0, - "short_name": "JBoss EULA", - "category": "Proprietary Free", - "owner": "JBoss Community", - "homepage_url": "", - "text_url": "http://repository.jboss.org/licenses/jbossorg-eula.txt", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:jboss-eula", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 3, - "end_line": 108, - "matched_rule": { - "identifier": "jboss-eula.LICENSE", - "license_choice": false, - "licenses": [ - "jboss-eula" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 2006 Red Hat, Inc." - ], - "holders": [ - "Red Hat, Inc." - ], - "authors": [], - "start_line": 104, - "end_line": 104 - } - ], - "packages": [] - }, - { - "path": "samples/JGroups/LICENSE", - "type": "file", - "name": "LICENSE", - "base_name": "LICENSE", - "extension": "", - "date": "2017-02-02", - "size": 26934, - "sha1": "8f1a637d2e2ed1bdb9eb01a7dccb5c12cc0557e1", - "md5": "f14599a2f089f6ff8c97e2baa4e3d575", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "lgpl-2.1-plus", - "score": 100.0, - "short_name": "LGPL 2.1 or later", - "category": "Copyleft Limited", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "text_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1-plus", - "spdx_license_key": "LGPL-2.1+", - "spdx_url": "https://spdx.org/licenses/LGPL-2.1", - "start_line": 1, - "end_line": 502, - "matched_rule": { - "identifier": "lgpl-2.1-plus_2.RULE", - "license_choice": false, - "licenses": [ - "lgpl-2.1-plus" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1991, 1999 Free Software Foundation, Inc." - ], - "holders": [ - "Free Software Foundation, Inc." - ], - "authors": [], - "start_line": 4, - "end_line": 7 - }, - { - "statements": [ - "copyrighted by the Free Software Foundation" - ], - "holders": [ - "the Free Software Foundation" - ], - "authors": [], - "start_line": 427, - "end_line": 433 - }, - { - "statements": [], - "holders": [], - "authors": [ - "James Random Hacker." - ], - "start_line": 496, - "end_line": 497 - } - ], - "packages": [] - }, - { - "path": "samples/JGroups/licenses", - "type": "directory", - "name": "licenses", - "base_name": "licenses", - "extension": "", - "date": null, - "size": 54569, - "sha1": null, - "md5": null, - "files_count": 5, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/JGroups/src", - "type": "directory", - "name": "src", - "base_name": "src", - "extension": "", - "date": null, - "size": 155971, - "sha1": null, - "md5": null, - "files_count": 7, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/JGroups/licenses/apache-1.1.txt", - "type": "file", - "name": "apache-1.1.txt", - "base_name": "apache-1.1", - "extension": ".txt", - "date": "2017-02-02", - "size": 2885, - "sha1": "6b5608d35c3e304532af43db8bbfc5947bef46a6", - "md5": "276982197c941f4cbf3d218546e17ae2", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "apache-1.1", - "score": 100.0, - "short_name": "Apache 1.1", - "category": "Permissive", - "owner": "Apache Software Foundation", - "homepage_url": "http://www.apache.org/licenses/", - "text_url": "http://apache.org/licenses/LICENSE-1.1", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-1.1", - "spdx_license_key": "Apache-1.1", - "spdx_url": "https://spdx.org/licenses/Apache-1.1", - "start_line": 2, - "end_line": 56, - "matched_rule": { - "identifier": "apache-1.1.SPDX.RULE", - "license_choice": false, - "licenses": [ - "apache-1.1" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2000 The Apache Software Foundation." - ], - "holders": [ - "The Apache Software Foundation." - ], - "authors": [], - "start_line": 4, - "end_line": 5 - }, - { - "statements": [], - "holders": [], - "authors": [ - "the Apache Software Foundation" - ], - "start_line": 20, - "end_line": 23 - } - ], - "packages": [] - }, - { - "path": "samples/JGroups/licenses/apache-2.0.txt", - "type": "file", - "name": "apache-2.0.txt", - "base_name": "apache-2.0", - "extension": ".txt", - "date": "2017-02-02", - "size": 11560, - "sha1": "47b573e3824cd5e02a1a3ae99e2735b49e0256e4", - "md5": "d273d63619c9aeaf15cdaf76422c4f87", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "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", - "dejacode_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": 2, - "end_line": 202, - "matched_rule": { - "identifier": "apache-2.0_easyeclipse.RULE", - "license_choice": false, - "licenses": [ - "apache-2.0" - ] - } - } - ], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/JGroups/licenses/bouncycastle.txt", - "type": "file", - "name": "bouncycastle.txt", - "base_name": "bouncycastle", - "extension": ".txt", - "date": "2017-02-02", - "size": 1203, - "sha1": "5693e1524ea9c177cd603f47c2b77f5b8ec2a3b9", - "md5": "8d00871ced5dc2a03d1e90f1e59ea97b", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "dejacode_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": 18, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2000 - 2006 The Legion Of The Bouncy Castle" - ], - "holders": [ - "Legion Of The Bouncy Castle" - ], - "authors": [], - "start_line": 5, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "samples/JGroups/licenses/cpl-1.0.txt", - "type": "file", - "name": "cpl-1.0.txt", - "base_name": "cpl-1.0", - "extension": ".txt", - "date": "2017-02-02", - "size": 11987, - "sha1": "681cf776bcd79752543d42490ec7ed22a29fd888", - "md5": "9a6d2c9ae73d59eb3dd38e3909750d14", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "cpl-1.0", - "score": 99.94, - "short_name": "CPL 1.0", - "category": "Copyleft Limited", - "owner": "IBM", - "homepage_url": "http://www.eclipse.org/legal/cpl-v10.html", - "text_url": "http://www.eclipse.org/legal/cpl-v10.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:cpl-1.0", - "spdx_license_key": "CPL-1.0", - "spdx_url": "https://spdx.org/licenses/CPL-1.0", - "start_line": 1, - "end_line": 212, - "matched_rule": { - "identifier": "cpl-1.0.SPDX.RULE", - "license_choice": false, - "licenses": [ - "cpl-1.0" - ] - } - } - ], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/JGroups/licenses/lgpl.txt", - "type": "file", - "name": "lgpl.txt", - "base_name": "lgpl", - "extension": ".txt", - "date": "2017-02-02", - "size": 26934, - "sha1": "8f1a637d2e2ed1bdb9eb01a7dccb5c12cc0557e1", - "md5": "f14599a2f089f6ff8c97e2baa4e3d575", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "lgpl-2.1-plus", - "score": 100.0, - "short_name": "LGPL 2.1 or later", - "category": "Copyleft Limited", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "text_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1-plus", - "spdx_license_key": "LGPL-2.1+", - "spdx_url": "https://spdx.org/licenses/LGPL-2.1", - "start_line": 1, - "end_line": 502, - "matched_rule": { - "identifier": "lgpl-2.1-plus_2.RULE", - "license_choice": false, - "licenses": [ - "lgpl-2.1-plus" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1991, 1999 Free Software Foundation, Inc." - ], - "holders": [ - "Free Software Foundation, Inc." - ], - "authors": [], - "start_line": 4, - "end_line": 7 - }, - { - "statements": [ - "copyrighted by the Free Software Foundation" - ], - "holders": [ - "the Free Software Foundation" - ], - "authors": [], - "start_line": 427, - "end_line": 433 - }, - { - "statements": [], - "holders": [], - "authors": [ - "James Random Hacker." - ], - "start_line": 496, - "end_line": 497 - } - ], - "packages": [] - }, - { - "path": "samples/JGroups/src/FixedMembershipToken.java", - "type": "file", - "name": "FixedMembershipToken.java", - "base_name": "FixedMembershipToken", - "extension": ".java", - "date": "2017-02-02", - "size": 5294, - "sha1": "4375406c4515f66ac0498d7c6cec5a4841a74cbc", - "md5": "d1994ba211364156da23ebda7b91de2e", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "lgpl-2.1-plus", - "score": 100.0, - "short_name": "LGPL 2.1 or later", - "category": "Copyleft Limited", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "text_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1-plus", - "spdx_license_key": "LGPL-2.1+", - "spdx_url": "https://spdx.org/licenses/LGPL-2.1", - "start_line": 7, - "end_line": 20, - "matched_rule": { - "identifier": "lgpl-2.1-plus_59.RULE", - "license_choice": false, - "licenses": [ - "lgpl-2.1-plus" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 2005, JBoss Inc." - ], - "holders": [ - "JBoss Inc." - ], - "authors": [], - "start_line": 2, - "end_line": 5 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Chris Mills (millsy@jboss.com)" - ], - "start_line": 51, - "end_line": 51 - } - ], - "packages": [] - }, - { - "path": "samples/JGroups/src/GuardedBy.java", - "type": "file", - "name": "GuardedBy.java", - "base_name": "GuardedBy", - "extension": ".java", - "date": "2017-02-02", - "size": 836, - "sha1": "93a222292c1eb143538cf876f0e5575fccd87271", - "md5": "739d4bb080991b678a662f5742f30ff1", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "cc-by-2.5", - "score": 70.0, - "short_name": "CC-BY-2.5", - "category": "Permissive", - "owner": "Creative Commons", - "homepage_url": "http://creativecommons.org/licenses/by/2.5/", - "text_url": "http://creativecommons.org/licenses/by/2.5/legalcode", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:cc-by-2.5", - "spdx_license_key": "CC-BY-2.5", - "spdx_url": "https://spdx.org/licenses/CC-BY-2.5", - "start_line": 10, - "end_line": 11, - "matched_rule": { - "identifier": "cc-by-2.5_4.RULE", - "license_choice": false, - "licenses": [ - "cc-by-2.5" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2005 Brian Goetz and Tim Peierls" - ], - "holders": [ - "Brian Goetz and Tim Peierls" - ], - "authors": [], - "start_line": 9, - "end_line": 12 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Bela Ban" - ], - "start_line": 14, - "end_line": 17 - } - ], - "packages": [] - }, - { - "path": "samples/JGroups/src/ImmutableReference.java", - "type": "file", - "name": "ImmutableReference.java", - "base_name": "ImmutableReference", - "extension": ".java", - "date": "2017-02-02", - "size": 1893, - "sha1": "429e0ef4c3e85c37b766225402cb77b75f4bda9f", - "md5": "4f72b0abb111b459c89db7e7fd89aba1", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "lgpl-2.1-plus", - "score": 100.0, - "short_name": "LGPL 2.1 or later", - "category": "Copyleft Limited", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "text_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1-plus", - "spdx_license_key": "LGPL-2.1+", - "spdx_url": "https://spdx.org/licenses/LGPL-2.1", - "start_line": 7, - "end_line": 20, - "matched_rule": { - "identifier": "lgpl-2.1-plus_59.RULE", - "license_choice": false, - "licenses": [ - "lgpl-2.1-plus" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 2010, Red Hat, Inc." - ], - "holders": [ - "Red Hat, Inc." - ], - "authors": [], - "start_line": 2, - "end_line": 5 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Brian Stansberry" - ], - "start_line": 29, - "end_line": 29 - } - ], - "packages": [] - }, - { - "path": "samples/JGroups/src/RATE_LIMITER.java", - "type": "file", - "name": "RATE_LIMITER.java", - "base_name": "RATE_LIMITER", - "extension": ".java", - "date": "2017-02-02", - "size": 3812, - "sha1": "7e79042c0239ec9313749be7cceb6f12d0705992", - "md5": "1895e6dee69935f4fc6902abe2d80f6e", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [], - "holders": [], - "authors": [ - "Bela Ban" - ], - "start_line": 14, - "end_line": 17 - } - ], - "packages": [] - }, - { - "path": "samples/JGroups/src/RouterStub.java", - "type": "file", - "name": "RouterStub.java", - "base_name": "RouterStub", - "extension": ".java", - "date": "2017-02-02", - "size": 10208, - "sha1": "f255c2dbdb104bb0b0773da62fd57a05828a3c53", - "md5": "7026e7ae2fa9bf3217441f7495f5989a", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/JGroups/src/RouterStubManager.java", - "type": "file", - "name": "RouterStubManager.java", - "base_name": "RouterStubManager", - "extension": ".java", - "date": "2017-02-02", - "size": 8375, - "sha1": "7c03434b9b6ed5e8d70a780a4a8c677955a365bf", - "md5": "2fe89992a3dfb7f5f2343236fbe665a4", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "lgpl-2.1-plus", - "score": 100.0, - "short_name": "LGPL 2.1 or later", - "category": "Copyleft Limited", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "text_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1-plus", - "spdx_license_key": "LGPL-2.1+", - "spdx_url": "https://spdx.org/licenses/LGPL-2.1", - "start_line": 7, - "end_line": 20, - "matched_rule": { - "identifier": "lgpl-2.1-plus_59.RULE", - "license_choice": false, - "licenses": [ - "lgpl-2.1-plus" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 2009, Red Hat Middleware LLC" - ], - "holders": [ - "Red Hat Middleware LLC" - ], - "authors": [], - "start_line": 2, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "samples/JGroups/src/S3_PING.java", - "type": "file", - "name": "S3_PING.java", - "base_name": "S3_PING", - "extension": ".java", - "date": "2017-02-02", - "size": 125553, - "sha1": "41ea46b0c88c4cf331b38b0074497672c114dd12", - "md5": "8f47e9762f9654f6ccb160740cd856c8", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "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": "", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:public-domain", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 1649, - "end_line": 1649, - "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": "", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:public-domain", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 1692, - "end_line": 1692, - "matched_rule": { - "identifier": "public-domain.LICENSE", - "license_choice": false, - "licenses": [ - "public-domain" - ] - } - } - ], - "copyrights": [ - { - "statements": [], - "holders": [], - "authors": [ - "Bela Ban" - ], - "start_line": 35, - "end_line": 38 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Robert Harder author rob@iharder.net" - ], - "start_line": 1697, - "end_line": 1700 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/adler32.c", - "type": "file", - "name": "adler32.c", - "base_name": "adler32", - "extension": ".c", - "date": "2017-02-02", - "size": 5147, - "sha1": "f7142f39739b275d3077987f6132504139dcedd9", - "md5": "faf360ba01a8aa854409e93214a46296", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2011 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/deflate.c", - "type": "file", - "name": "deflate.c", - "base_name": "deflate", - "extension": ".c", - "date": "2017-02-02", - "size": 73443, - "sha1": "4cfa5e74c668ef12218a6eee87801e8b75d248ef", - "md5": "2018726c0f336ce97d2aeeafc06879c3", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2013 Jean-loup Gailly and Mark Adler" - ], - "holders": [ - "Jean-loup Gailly and Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Leonid Broukhis. Thanks" - ], - "start_line": 33, - "end_line": 35 - }, - { - "statements": [ - "Copyright 1995-2013 Jean-loup Gailly and Mark Adler" - ], - "holders": [ - "Jean-loup Gailly and Mark Adler" - ], - "authors": [], - "start_line": 54, - "end_line": 55 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/deflate.h", - "type": "file", - "name": "deflate.h", - "base_name": "deflate", - "extension": ".h", - "date": "2017-02-02", - "size": 13120, - "sha1": "cf1978ea0378a2f0b0fa98c383c9b08a3b3f3655", - "md5": "f284d0140dcd0d799ad8a6c74e311829", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2012 Jean-loup Gailly" - ], - "holders": [ - "Jean-loup Gailly" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/zlib.h", - "type": "file", - "name": "zlib.h", - "base_name": "zlib", - "extension": ".h", - "date": "2017-02-02", - "size": 89651, - "sha1": "1fabede36e27d93619690144b7a240bfe7a24f88", - "md5": "a1d4c6864c789f539d325566a863ff26", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 100.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 6, - "end_line": 23, - "matched_rule": { - "identifier": "zlib_17.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2013 Jean-loup Gailly and Mark Adler" - ], - "holders": [ - "Jean-loup Gailly and Mark Adler" - ], - "authors": [], - "start_line": 4, - "end_line": 4 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/zutil.c", - "type": "file", - "name": "zutil.c", - "base_name": "zutil", - "extension": ".c", - "date": "2017-02-02", - "size": 7738, - "sha1": "750edc45373acd6b3f187ad0d25766819db67a37", - "md5": "15b58dbc0d7c5ee05deb2a0094ecca8c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2005, 2010, 2011, 2012 Jean-loup Gailly." - ], - "holders": [ - "Jean-loup Gailly." - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/zutil.h", - "type": "file", - "name": "zutil.h", - "base_name": "zutil", - "extension": ".h", - "date": "2017-02-02", - "size": 7019, - "sha1": "b541ca323c529c1b6bc3102b8b01473a2409aa5a", - "md5": "0cd2089ea6c4dc4bd584d7dd3fb7037f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2013 Jean-loup Gailly." - ], - "holders": [ - "Jean-loup Gailly." - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/ada", - "type": "directory", - "name": "ada", - "base_name": "ada", - "extension": "", - "date": null, - "size": 13922, - "sha1": null, - "md5": null, - "files_count": 1, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/zlib/dotzlib", - "type": "directory", - "name": "dotzlib", - "base_name": "dotzlib", - "extension": "", - "date": null, - "size": 14257, - "sha1": null, - "md5": null, - "files_count": 4, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/zlib/gcc_gvmat64", - "type": "directory", - "name": "gcc_gvmat64", - "base_name": "gcc_gvmat64", - "extension": "", - "date": null, - "size": 16413, - "sha1": null, - "md5": null, - "files_count": 1, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/zlib/infback9", - "type": "directory", - "name": "infback9", - "base_name": "infback9", - "extension": "", - "date": null, - "size": 23875, - "sha1": null, - "md5": null, - "files_count": 2, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/zlib/iostream2", - "type": "directory", - "name": "iostream2", - "base_name": "iostream2", - "extension": "", - "date": null, - "size": 10326, - "sha1": null, - "md5": null, - "files_count": 2, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/zlib/ada/zlib.ads", - "type": "file", - "name": "zlib.ads", - "base_name": "zlib", - "extension": ".ads", - "date": "2017-02-02", - "size": 13922, - "sha1": "b1735a58842c907a4926f50326c774538482efd2", - "md5": "55f9046b4db726c6981e28a15dd48b12", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Ada", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "gpl-2.0-plus-ada", - "score": 100.0, - "short_name": "GPL 2.0 or later with Ada exception", - "category": "Copyleft Limited", - "owner": "Dmitriy Anisimkov", - "homepage_url": "", - "text_url": "", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus-ada", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 6, - "end_line": 25, - "matched_rule": { - "identifier": "gpl-2.0-plus-ada.LICENSE", - "license_choice": false, - "licenses": [ - "gpl-2.0-plus-ada" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002-2004 Dmitriy Anisimkov" - ], - "holders": [ - "Dmitriy Anisimkov" - ], - "authors": [], - "start_line": 4, - "end_line": 4 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/dotzlib/AssemblyInfo.cs", - "type": "file", - "name": "AssemblyInfo.cs", - "base_name": "AssemblyInfo", - "extension": ".cs", - "date": "2017-02-02", - "size": 2500, - "sha1": "9f1db1177b2e9a014f72bb3cd80be17133e06d16", - "md5": "23d0d7c18846fc31655b6aa89b7c8038", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "C#", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [ - "(c) 2004 by Henrik Ravn" - ], - "holders": [ - "Henrik Ravn" - ], - "authors": [], - "start_line": 13, - "end_line": 16 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/dotzlib/ChecksumImpl.cs", - "type": "file", - "name": "ChecksumImpl.cs", - "base_name": "ChecksumImpl", - "extension": ".cs", - "date": "2017-02-02", - "size": 8040, - "sha1": "3807a0e24a57b92ea301559cab7307b8eab52c51", - "md5": "d01b3cb2e75da9b15f05b92b42f6bd33", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ISO-8859 text, with CRLF line terminators", - "programming_language": "C#", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "boost-1.0", - "score": 100.0, - "short_name": "Boost 1.0", - "category": "Permissive", - "owner": "Boost", - "homepage_url": "http://www.boost.org/users/license.html", - "text_url": "http://www.boost.org/LICENSE_1_0.txt", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:boost-1.0", - "spdx_license_key": "BSL-1.0", - "spdx_url": "https://spdx.org/licenses/BSL-1.0", - "start_line": 4, - "end_line": 5, - "matched_rule": { - "identifier": "boost-1.0_1.RULE", - "license_choice": false, - "licenses": [ - "boost-1.0" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "(c) Copyright Henrik Ravn 2004" - ], - "holders": [ - "Henrik Ravn" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/dotzlib/LICENSE_1_0.txt", - "type": "file", - "name": "LICENSE_1_0.txt", - "base_name": "LICENSE_1_0", - "extension": ".txt", - "date": "2017-02-02", - "size": 1359, - "sha1": "892b34f7865d90a6f949f50d95e49625a10bc7f0", - "md5": "81543b22c36f10d20ac9712f8d80ef8d", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "boost-1.0", - "score": 100.0, - "short_name": "Boost 1.0", - "category": "Permissive", - "owner": "Boost", - "homepage_url": "http://www.boost.org/users/license.html", - "text_url": "http://www.boost.org/LICENSE_1_0.txt", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:boost-1.0", - "spdx_license_key": "BSL-1.0", - "spdx_url": "https://spdx.org/licenses/BSL-1.0", - "start_line": 1, - "end_line": 23, - "matched_rule": { - "identifier": "boost-1.0.LICENSE", - "license_choice": false, - "licenses": [ - "boost-1.0" - ] - } - } - ], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/zlib/dotzlib/readme.txt", - "type": "file", - "name": "readme.txt", - "base_name": "readme", - "extension": ".txt", - "date": "2017-02-02", - "size": 2358, - "sha1": "b1229b826f0096808628474538cea8fec2922a9b", - "md5": "1f20f3168ee63d90de033edac2ce383c", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "boost-1.0", - "score": 100.0, - "short_name": "Boost 1.0", - "category": "Permissive", - "owner": "Boost", - "homepage_url": "http://www.boost.org/users/license.html", - "text_url": "http://www.boost.org/LICENSE_1_0.txt", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:boost-1.0", - "spdx_license_key": "BSL-1.0", - "spdx_url": "https://spdx.org/licenses/BSL-1.0", - "start_line": 57, - "end_line": 58, - "matched_rule": { - "identifier": "boost-1.0_1.RULE", - "license_choice": false, - "licenses": [ - "boost-1.0" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) Henrik Ravn 2004" - ], - "holders": [ - "Henrik Ravn" - ], - "authors": [], - "start_line": 55, - "end_line": 55 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/gcc_gvmat64/gvmat64.S", - "type": "file", - "name": "gvmat64.S", - "base_name": "gvmat64", - "extension": ".S", - "date": "2017-02-02", - "size": 16413, - "sha1": "742603cba1af98a1432cc02efb019b1a5760adf2", - "md5": "5e772d7302475e5473d0c4c57b9861e8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "GAS", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 88.82, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 17, - "end_line": 37, - "matched_rule": { - "identifier": "zlib_10.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2010 Jean-loup Gailly, Brian Raiter and Gilles Vollant." - ], - "holders": [ - "Jean-loup Gailly, Brian Raiter and Gilles Vollant." - ], - "authors": [], - "start_line": 9, - "end_line": 10 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Gilles Vollant" - ], - "start_line": 12, - "end_line": 15 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/infback9/infback9.c", - "type": "file", - "name": "infback9.c", - "base_name": "infback9", - "extension": ".c", - "date": "2017-02-02", - "size": 22244, - "sha1": "be9fd74e9afc16cfbbb693195df972665179c734", - "md5": "f08efcac0c60b475a7a34888a7b85236", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2008 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/infback9/infback9.h", - "type": "file", - "name": "infback9.h", - "base_name": "infback9", - "extension": ".h", - "date": "2017-02-02", - "size": 1631, - "sha1": "9f66c9bf6ad6b4c676e3fe514be653704b403019", - "md5": "7acf663360f7bb54d0f95b808c673fd4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2003 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/iostream2/zstream.h", - "type": "file", - "name": "zstream.h", - "base_name": "zstream", - "extension": ".h", - "date": "2017-02-02", - "size": 9590, - "sha1": "e849f490ba14f090f2d97655197098f0a4187c4a", - "md5": "4d344c3d93e264c9d9b42ed7c54d34d9", - "files_count": null, - "mime_type": "text/x-c++", - "file_type": "C++ source, ASCII text, with CRLF line terminators", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "cmr-no", - "score": 100.0, - "short_name": "CMR License", - "category": "Permissive", - "owner": "CMR - Christian Michelsen Research AS", - "homepage_url": "", - "text_url": "", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:cmr-no", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 3, - "end_line": 15, - "matched_rule": { - "identifier": "cmr-no.LICENSE", - "license_choice": false, - "licenses": [ - "cmr-no" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1997 Christian Michelsen Research" - ], - "holders": [ - "Christian Michelsen Research" - ], - "authors": [], - "start_line": 3, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/iostream2/zstream_test.cpp", - "type": "file", - "name": "zstream_test.cpp", - "base_name": "zstream_test", - "extension": ".cpp", - "date": "2017-02-02", - "size": 736, - "sha1": "ced646ae3fc8dde7e7cdff41da29b92cce4f795d", - "md5": "b3a86f4710d45e920c8adfa04876b7b5", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "C++", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - } - ] -} diff --git a/tests/data/models/scan/well-formed-scan.json b/tests/data/models/scan/well-formed-scan.json deleted file mode 100644 index e2216c93..00000000 --- a/tests/data/models/scan/well-formed-scan.json +++ /dev/null @@ -1,2138 +0,0 @@ -{ - "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.1.0", - "scancode_options": { - "--copyright": true, - "--license": true, - "--package": true, - "--info": true, - "--license-score": 0, - "--format": "json-pp" - }, - "files_count": 43, - "files": [ - { - "path": "samples/README", - "type": "file", - "name": "README", - "base_name": "README", - "extension": "", - "date": "2017-02-02", - "size": 239, - "sha1": "c6cff3e0957498242703871dc306ed735181a9e5", - "md5": "5a863f0639e14c541564ba1bbd698af0", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/screenshot.png", - "type": "file", - "name": "screenshot.png", - "base_name": "screenshot", - "extension": ".png", - "date": "2017-02-02", - "size": 622754, - "sha1": "01ff4b1de0bc6c75c9cca6e46c80c1802d6976d4", - "md5": "b6ef5a90777147423c98b42a6a25e57a", - "files_count": null, - "mime_type": "image/png", - "file_type": "PNG image data, 2880 x 1666, 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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/arch", - "type": "directory", - "name": "arch", - "base_name": "arch", - "extension": "", - "date": null, - "size": 28103, - "sha1": null, - "md5": null, - "files_count": 1, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/JGroups", - "type": "directory", - "name": "JGroups", - "base_name": "JGroups", - "extension": "", - "date": null, - "size": 245739, - "sha1": null, - "md5": null, - "files_count": 14, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/zlib", - "type": "directory", - "name": "zlib", - "base_name": "zlib", - "extension": "", - "date": null, - "size": 274911, - "sha1": null, - "md5": null, - "files_count": 16, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/arch/zlib.tar.gz", - "type": "file", - "name": "zlib.tar.gz", - "base_name": "zlib", - "extension": ".tar.gz", - "date": "2017-02-02", - "size": 28103, - "sha1": "576f0ccfe534d7f5ff5d6400078d3c6586de3abd", - "md5": "20b2370751abfc08bb3556c1d8114b5a", - "files_count": null, - "mime_type": "application/x-gzip", - "file_type": "gzip compressed data, last modified: Wed Jul 15 09:08:19 2015, from Unix", - "programming_language": null, - "is_binary": true, - "is_text": false, - "is_archive": true, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [ - { - "type": "plain tarball", - "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": [] - } - ] - }, - { - "path": "samples/JGroups/EULA", - "type": "file", - "name": "EULA", - "base_name": "EULA", - "extension": "", - "date": "2017-02-02", - "size": 8265, - "sha1": "48fbca418bc12ffad8b8c82b08dac07508b08c6c", - "md5": "a97752adcb0781cf02a011f06e95887c", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Velocity", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "jboss-eula", - "score": 100.0, - "short_name": "JBoss EULA", - "category": "Proprietary Free", - "owner": "JBoss Community", - "homepage_url": "", - "text_url": "http://repository.jboss.org/licenses/jbossorg-eula.txt", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:jboss-eula", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 3, - "end_line": 108, - "matched_rule": { - "identifier": "jboss-eula.LICENSE", - "license_choice": false, - "licenses": [ - "jboss-eula" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 2006 Red Hat, Inc." - ], - "holders": [ - "Red Hat, Inc." - ], - "authors": [], - "start_line": 104, - "end_line": 104 - } - ], - "packages": [] - }, - { - "path": "samples/JGroups/LICENSE", - "type": "file", - "name": "LICENSE", - "base_name": "LICENSE", - "extension": "", - "date": "2017-02-02", - "size": 26934, - "sha1": "8f1a637d2e2ed1bdb9eb01a7dccb5c12cc0557e1", - "md5": "f14599a2f089f6ff8c97e2baa4e3d575", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "lgpl-2.1-plus", - "score": 100.0, - "short_name": "LGPL 2.1 or later", - "category": "Copyleft Limited", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "text_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1-plus", - "spdx_license_key": "LGPL-2.1+", - "spdx_url": "https://spdx.org/licenses/LGPL-2.1", - "start_line": 1, - "end_line": 502, - "matched_rule": { - "identifier": "lgpl-2.1-plus_2.RULE", - "license_choice": false, - "licenses": [ - "lgpl-2.1-plus" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1991, 1999 Free Software Foundation, Inc." - ], - "holders": [ - "Free Software Foundation, Inc." - ], - "authors": [], - "start_line": 4, - "end_line": 7 - }, - { - "statements": [ - "copyrighted by the Free Software Foundation" - ], - "holders": [ - "the Free Software Foundation" - ], - "authors": [], - "start_line": 427, - "end_line": 433 - }, - { - "statements": [], - "holders": [], - "authors": [ - "James Random Hacker." - ], - "start_line": 496, - "end_line": 497 - } - ], - "packages": [] - }, - { - "path": "samples/JGroups/licenses", - "type": "directory", - "name": "licenses", - "base_name": "licenses", - "extension": "", - "date": null, - "size": 54569, - "sha1": null, - "md5": null, - "files_count": 5, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/JGroups/src", - "type": "directory", - "name": "src", - "base_name": "src", - "extension": "", - "date": null, - "size": 155971, - "sha1": null, - "md5": null, - "files_count": 7, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/JGroups/licenses/apache-1.1.txt", - "type": "file", - "name": "apache-1.1.txt", - "base_name": "apache-1.1", - "extension": ".txt", - "date": "2017-02-02", - "size": 2885, - "sha1": "6b5608d35c3e304532af43db8bbfc5947bef46a6", - "md5": "276982197c941f4cbf3d218546e17ae2", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "apache-1.1", - "score": 100.0, - "short_name": "Apache 1.1", - "category": "Permissive", - "owner": "Apache Software Foundation", - "homepage_url": "http://www.apache.org/licenses/", - "text_url": "http://apache.org/licenses/LICENSE-1.1", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-1.1", - "spdx_license_key": "Apache-1.1", - "spdx_url": "https://spdx.org/licenses/Apache-1.1", - "start_line": 2, - "end_line": 56, - "matched_rule": { - "identifier": "apache-1.1.SPDX.RULE", - "license_choice": false, - "licenses": [ - "apache-1.1" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2000 The Apache Software Foundation." - ], - "holders": [ - "The Apache Software Foundation." - ], - "authors": [], - "start_line": 4, - "end_line": 5 - }, - { - "statements": [], - "holders": [], - "authors": [ - "the Apache Software Foundation" - ], - "start_line": 20, - "end_line": 23 - } - ], - "packages": [] - }, - { - "path": "samples/JGroups/licenses/apache-2.0.txt", - "type": "file", - "name": "apache-2.0.txt", - "base_name": "apache-2.0", - "extension": ".txt", - "date": "2017-02-02", - "size": 11560, - "sha1": "47b573e3824cd5e02a1a3ae99e2735b49e0256e4", - "md5": "d273d63619c9aeaf15cdaf76422c4f87", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "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", - "dejacode_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": 2, - "end_line": 202, - "matched_rule": { - "identifier": "apache-2.0_easyeclipse.RULE", - "license_choice": false, - "licenses": [ - "apache-2.0" - ] - } - } - ], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/JGroups/licenses/bouncycastle.txt", - "type": "file", - "name": "bouncycastle.txt", - "base_name": "bouncycastle", - "extension": ".txt", - "date": "2017-02-02", - "size": 1203, - "sha1": "5693e1524ea9c177cd603f47c2b77f5b8ec2a3b9", - "md5": "8d00871ced5dc2a03d1e90f1e59ea97b", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "mit", - "score": 100.0, - "short_name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "dejacode_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": 18, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_choice": false, - "licenses": [ - "mit" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2000 - 2006 The Legion Of The Bouncy Castle" - ], - "holders": [ - "Legion Of The Bouncy Castle" - ], - "authors": [], - "start_line": 5, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "samples/JGroups/licenses/cpl-1.0.txt", - "type": "file", - "name": "cpl-1.0.txt", - "base_name": "cpl-1.0", - "extension": ".txt", - "date": "2017-02-02", - "size": 11987, - "sha1": "681cf776bcd79752543d42490ec7ed22a29fd888", - "md5": "9a6d2c9ae73d59eb3dd38e3909750d14", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "cpl-1.0", - "score": 99.94, - "short_name": "CPL 1.0", - "category": "Copyleft Limited", - "owner": "IBM", - "homepage_url": "http://www.eclipse.org/legal/cpl-v10.html", - "text_url": "http://www.eclipse.org/legal/cpl-v10.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:cpl-1.0", - "spdx_license_key": "CPL-1.0", - "spdx_url": "https://spdx.org/licenses/CPL-1.0", - "start_line": 1, - "end_line": 212, - "matched_rule": { - "identifier": "cpl-1.0.SPDX.RULE", - "license_choice": false, - "licenses": [ - "cpl-1.0" - ] - } - } - ], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/JGroups/licenses/lgpl.txt", - "type": "file", - "name": "lgpl.txt", - "base_name": "lgpl", - "extension": ".txt", - "date": "2017-02-02", - "size": 26934, - "sha1": "8f1a637d2e2ed1bdb9eb01a7dccb5c12cc0557e1", - "md5": "f14599a2f089f6ff8c97e2baa4e3d575", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "lgpl-2.1-plus", - "score": 100.0, - "short_name": "LGPL 2.1 or later", - "category": "Copyleft Limited", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "text_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1-plus", - "spdx_license_key": "LGPL-2.1+", - "spdx_url": "https://spdx.org/licenses/LGPL-2.1", - "start_line": 1, - "end_line": 502, - "matched_rule": { - "identifier": "lgpl-2.1-plus_2.RULE", - "license_choice": false, - "licenses": [ - "lgpl-2.1-plus" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1991, 1999 Free Software Foundation, Inc." - ], - "holders": [ - "Free Software Foundation, Inc." - ], - "authors": [], - "start_line": 4, - "end_line": 7 - }, - { - "statements": [ - "copyrighted by the Free Software Foundation" - ], - "holders": [ - "the Free Software Foundation" - ], - "authors": [], - "start_line": 427, - "end_line": 433 - }, - { - "statements": [], - "holders": [], - "authors": [ - "James Random Hacker." - ], - "start_line": 496, - "end_line": 497 - } - ], - "packages": [] - }, - { - "path": "samples/JGroups/src/FixedMembershipToken.java", - "type": "file", - "name": "FixedMembershipToken.java", - "base_name": "FixedMembershipToken", - "extension": ".java", - "date": "2017-02-02", - "size": 5294, - "sha1": "4375406c4515f66ac0498d7c6cec5a4841a74cbc", - "md5": "d1994ba211364156da23ebda7b91de2e", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "lgpl-2.1-plus", - "score": 100.0, - "short_name": "LGPL 2.1 or later", - "category": "Copyleft Limited", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "text_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1-plus", - "spdx_license_key": "LGPL-2.1+", - "spdx_url": "https://spdx.org/licenses/LGPL-2.1", - "start_line": 7, - "end_line": 20, - "matched_rule": { - "identifier": "lgpl-2.1-plus_59.RULE", - "license_choice": false, - "licenses": [ - "lgpl-2.1-plus" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 2005, JBoss Inc." - ], - "holders": [ - "JBoss Inc." - ], - "authors": [], - "start_line": 2, - "end_line": 5 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Chris Mills (millsy@jboss.com)" - ], - "start_line": 51, - "end_line": 51 - } - ], - "packages": [] - }, - { - "path": "samples/JGroups/src/GuardedBy.java", - "type": "file", - "name": "GuardedBy.java", - "base_name": "GuardedBy", - "extension": ".java", - "date": "2017-02-02", - "size": 836, - "sha1": "93a222292c1eb143538cf876f0e5575fccd87271", - "md5": "739d4bb080991b678a662f5742f30ff1", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "cc-by-2.5", - "score": 70.0, - "short_name": "CC-BY-2.5", - "category": "Permissive", - "owner": "Creative Commons", - "homepage_url": "http://creativecommons.org/licenses/by/2.5/", - "text_url": "http://creativecommons.org/licenses/by/2.5/legalcode", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:cc-by-2.5", - "spdx_license_key": "CC-BY-2.5", - "spdx_url": "https://spdx.org/licenses/CC-BY-2.5", - "start_line": 10, - "end_line": 11, - "matched_rule": { - "identifier": "cc-by-2.5_4.RULE", - "license_choice": false, - "licenses": [ - "cc-by-2.5" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2005 Brian Goetz and Tim Peierls" - ], - "holders": [ - "Brian Goetz and Tim Peierls" - ], - "authors": [], - "start_line": 9, - "end_line": 12 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Bela Ban" - ], - "start_line": 14, - "end_line": 17 - } - ], - "packages": [] - }, - { - "path": "samples/JGroups/src/ImmutableReference.java", - "type": "file", - "name": "ImmutableReference.java", - "base_name": "ImmutableReference", - "extension": ".java", - "date": "2017-02-02", - "size": 1893, - "sha1": "429e0ef4c3e85c37b766225402cb77b75f4bda9f", - "md5": "4f72b0abb111b459c89db7e7fd89aba1", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "lgpl-2.1-plus", - "score": 100.0, - "short_name": "LGPL 2.1 or later", - "category": "Copyleft Limited", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "text_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1-plus", - "spdx_license_key": "LGPL-2.1+", - "spdx_url": "https://spdx.org/licenses/LGPL-2.1", - "start_line": 7, - "end_line": 20, - "matched_rule": { - "identifier": "lgpl-2.1-plus_59.RULE", - "license_choice": false, - "licenses": [ - "lgpl-2.1-plus" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 2010, Red Hat, Inc." - ], - "holders": [ - "Red Hat, Inc." - ], - "authors": [], - "start_line": 2, - "end_line": 5 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Brian Stansberry" - ], - "start_line": 29, - "end_line": 29 - } - ], - "packages": [] - }, - { - "path": "samples/JGroups/src/RATE_LIMITER.java", - "type": "file", - "name": "RATE_LIMITER.java", - "base_name": "RATE_LIMITER", - "extension": ".java", - "date": "2017-02-02", - "size": 3812, - "sha1": "7e79042c0239ec9313749be7cceb6f12d0705992", - "md5": "1895e6dee69935f4fc6902abe2d80f6e", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [], - "holders": [], - "authors": [ - "Bela Ban" - ], - "start_line": 14, - "end_line": 17 - } - ], - "packages": [] - }, - { - "path": "samples/JGroups/src/RouterStub.java", - "type": "file", - "name": "RouterStub.java", - "base_name": "RouterStub", - "extension": ".java", - "date": "2017-02-02", - "size": 10208, - "sha1": "f255c2dbdb104bb0b0773da62fd57a05828a3c53", - "md5": "7026e7ae2fa9bf3217441f7495f5989a", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/JGroups/src/RouterStubManager.java", - "type": "file", - "name": "RouterStubManager.java", - "base_name": "RouterStubManager", - "extension": ".java", - "date": "2017-02-02", - "size": 8375, - "sha1": "7c03434b9b6ed5e8d70a780a4a8c677955a365bf", - "md5": "2fe89992a3dfb7f5f2343236fbe665a4", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "lgpl-2.1-plus", - "score": 100.0, - "short_name": "LGPL 2.1 or later", - "category": "Copyleft Limited", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "text_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1-plus", - "spdx_license_key": "LGPL-2.1+", - "spdx_url": "https://spdx.org/licenses/LGPL-2.1", - "start_line": 7, - "end_line": 20, - "matched_rule": { - "identifier": "lgpl-2.1-plus_59.RULE", - "license_choice": false, - "licenses": [ - "lgpl-2.1-plus" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright 2009, Red Hat Middleware LLC" - ], - "holders": [ - "Red Hat Middleware LLC" - ], - "authors": [], - "start_line": 2, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "samples/JGroups/src/S3_PING.java", - "type": "file", - "name": "S3_PING.java", - "base_name": "S3_PING", - "extension": ".java", - "date": "2017-02-02", - "size": 125553, - "sha1": "41ea46b0c88c4cf331b38b0074497672c114dd12", - "md5": "8f47e9762f9654f6ccb160740cd856c8", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "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": "", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:public-domain", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 1649, - "end_line": 1649, - "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": "", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:public-domain", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 1692, - "end_line": 1692, - "matched_rule": { - "identifier": "public-domain.LICENSE", - "license_choice": false, - "licenses": [ - "public-domain" - ] - } - } - ], - "copyrights": [ - { - "statements": [], - "holders": [], - "authors": [ - "Bela Ban" - ], - "start_line": 35, - "end_line": 38 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Robert Harder author rob@iharder.net" - ], - "start_line": 1697, - "end_line": 1700 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/adler32.c", - "type": "file", - "name": "adler32.c", - "base_name": "adler32", - "extension": ".c", - "date": "2017-02-02", - "size": 5147, - "sha1": "f7142f39739b275d3077987f6132504139dcedd9", - "md5": "faf360ba01a8aa854409e93214a46296", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2011 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/deflate.c", - "type": "file", - "name": "deflate.c", - "base_name": "deflate", - "extension": ".c", - "date": "2017-02-02", - "size": 73443, - "sha1": "4cfa5e74c668ef12218a6eee87801e8b75d248ef", - "md5": "2018726c0f336ce97d2aeeafc06879c3", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2013 Jean-loup Gailly and Mark Adler" - ], - "holders": [ - "Jean-loup Gailly and Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Leonid Broukhis. Thanks" - ], - "start_line": 33, - "end_line": 35 - }, - { - "statements": [ - "Copyright 1995-2013 Jean-loup Gailly and Mark Adler" - ], - "holders": [ - "Jean-loup Gailly and Mark Adler" - ], - "authors": [], - "start_line": 54, - "end_line": 55 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/deflate.h", - "type": "file", - "name": "deflate.h", - "base_name": "deflate", - "extension": ".h", - "date": "2017-02-02", - "size": 13120, - "sha1": "cf1978ea0378a2f0b0fa98c383c9b08a3b3f3655", - "md5": "f284d0140dcd0d799ad8a6c74e311829", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2012 Jean-loup Gailly" - ], - "holders": [ - "Jean-loup Gailly" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/zlib.h", - "type": "file", - "name": "zlib.h", - "base_name": "zlib", - "extension": ".h", - "date": "2017-02-02", - "size": 89651, - "sha1": "1fabede36e27d93619690144b7a240bfe7a24f88", - "md5": "a1d4c6864c789f539d325566a863ff26", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 100.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 6, - "end_line": 23, - "matched_rule": { - "identifier": "zlib_17.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2013 Jean-loup Gailly and Mark Adler" - ], - "holders": [ - "Jean-loup Gailly and Mark Adler" - ], - "authors": [], - "start_line": 4, - "end_line": 4 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/zutil.c", - "type": "file", - "name": "zutil.c", - "base_name": "zutil", - "extension": ".c", - "date": "2017-02-02", - "size": 7738, - "sha1": "750edc45373acd6b3f187ad0d25766819db67a37", - "md5": "15b58dbc0d7c5ee05deb2a0094ecca8c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2005, 2010, 2011, 2012 Jean-loup Gailly." - ], - "holders": [ - "Jean-loup Gailly." - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/zutil.h", - "type": "file", - "name": "zutil.h", - "base_name": "zutil", - "extension": ".h", - "date": "2017-02-02", - "size": 7019, - "sha1": "b541ca323c529c1b6bc3102b8b01473a2409aa5a", - "md5": "0cd2089ea6c4dc4bd584d7dd3fb7037f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2013 Jean-loup Gailly." - ], - "holders": [ - "Jean-loup Gailly." - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/ada", - "type": "directory", - "name": "ada", - "base_name": "ada", - "extension": "", - "date": null, - "size": 13922, - "sha1": null, - "md5": null, - "files_count": 1, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/zlib/dotzlib", - "type": "directory", - "name": "dotzlib", - "base_name": "dotzlib", - "extension": "", - "date": null, - "size": 14257, - "sha1": null, - "md5": null, - "files_count": 4, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/zlib/gcc_gvmat64", - "type": "directory", - "name": "gcc_gvmat64", - "base_name": "gcc_gvmat64", - "extension": "", - "date": null, - "size": 16413, - "sha1": null, - "md5": null, - "files_count": 1, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/zlib/infback9", - "type": "directory", - "name": "infback9", - "base_name": "infback9", - "extension": "", - "date": null, - "size": 23875, - "sha1": null, - "md5": null, - "files_count": 2, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/zlib/iostream2", - "type": "directory", - "name": "iostream2", - "base_name": "iostream2", - "extension": "", - "date": null, - "size": 10326, - "sha1": null, - "md5": null, - "files_count": 2, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/zlib/ada/zlib.ads", - "type": "file", - "name": "zlib.ads", - "base_name": "zlib", - "extension": ".ads", - "date": "2017-02-02", - "size": 13922, - "sha1": "b1735a58842c907a4926f50326c774538482efd2", - "md5": "55f9046b4db726c6981e28a15dd48b12", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Ada", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "gpl-2.0-plus-ada", - "score": 100.0, - "short_name": "GPL 2.0 or later with Ada exception", - "category": "Copyleft Limited", - "owner": "Dmitriy Anisimkov", - "homepage_url": "", - "text_url": "", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus-ada", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 6, - "end_line": 25, - "matched_rule": { - "identifier": "gpl-2.0-plus-ada.LICENSE", - "license_choice": false, - "licenses": [ - "gpl-2.0-plus-ada" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002-2004 Dmitriy Anisimkov" - ], - "holders": [ - "Dmitriy Anisimkov" - ], - "authors": [], - "start_line": 4, - "end_line": 4 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/dotzlib/AssemblyInfo.cs", - "type": "file", - "name": "AssemblyInfo.cs", - "base_name": "AssemblyInfo", - "extension": ".cs", - "date": "2017-02-02", - "size": 2500, - "sha1": "9f1db1177b2e9a014f72bb3cd80be17133e06d16", - "md5": "23d0d7c18846fc31655b6aa89b7c8038", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "C#", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [ - "(c) 2004 by Henrik Ravn" - ], - "holders": [ - "Henrik Ravn" - ], - "authors": [], - "start_line": 13, - "end_line": 16 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/dotzlib/ChecksumImpl.cs", - "type": "file", - "name": "ChecksumImpl.cs", - "base_name": "ChecksumImpl", - "extension": ".cs", - "date": "2017-02-02", - "size": 8040, - "sha1": "3807a0e24a57b92ea301559cab7307b8eab52c51", - "md5": "d01b3cb2e75da9b15f05b92b42f6bd33", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ISO-8859 text, with CRLF line terminators", - "programming_language": "C#", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "boost-1.0", - "score": 100.0, - "short_name": "Boost 1.0", - "category": "Permissive", - "owner": "Boost", - "homepage_url": "http://www.boost.org/users/license.html", - "text_url": "http://www.boost.org/LICENSE_1_0.txt", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:boost-1.0", - "spdx_license_key": "BSL-1.0", - "spdx_url": "https://spdx.org/licenses/BSL-1.0", - "start_line": 4, - "end_line": 5, - "matched_rule": { - "identifier": "boost-1.0_1.RULE", - "license_choice": false, - "licenses": [ - "boost-1.0" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "(c) Copyright Henrik Ravn 2004" - ], - "holders": [ - "Henrik Ravn" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/dotzlib/LICENSE_1_0.txt", - "type": "file", - "name": "LICENSE_1_0.txt", - "base_name": "LICENSE_1_0", - "extension": ".txt", - "date": "2017-02-02", - "size": 1359, - "sha1": "892b34f7865d90a6f949f50d95e49625a10bc7f0", - "md5": "81543b22c36f10d20ac9712f8d80ef8d", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "boost-1.0", - "score": 100.0, - "short_name": "Boost 1.0", - "category": "Permissive", - "owner": "Boost", - "homepage_url": "http://www.boost.org/users/license.html", - "text_url": "http://www.boost.org/LICENSE_1_0.txt", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:boost-1.0", - "spdx_license_key": "BSL-1.0", - "spdx_url": "https://spdx.org/licenses/BSL-1.0", - "start_line": 1, - "end_line": 23, - "matched_rule": { - "identifier": "boost-1.0.LICENSE", - "license_choice": false, - "licenses": [ - "boost-1.0" - ] - } - } - ], - "copyrights": [], - "packages": [] - }, - { - "path": "samples/zlib/dotzlib/readme.txt", - "type": "file", - "name": "readme.txt", - "base_name": "readme", - "extension": ".txt", - "date": "2017-02-02", - "size": 2358, - "sha1": "b1229b826f0096808628474538cea8fec2922a9b", - "md5": "1f20f3168ee63d90de033edac2ce383c", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "boost-1.0", - "score": 100.0, - "short_name": "Boost 1.0", - "category": "Permissive", - "owner": "Boost", - "homepage_url": "http://www.boost.org/users/license.html", - "text_url": "http://www.boost.org/LICENSE_1_0.txt", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:boost-1.0", - "spdx_license_key": "BSL-1.0", - "spdx_url": "https://spdx.org/licenses/BSL-1.0", - "start_line": 57, - "end_line": 58, - "matched_rule": { - "identifier": "boost-1.0_1.RULE", - "license_choice": false, - "licenses": [ - "boost-1.0" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) Henrik Ravn 2004" - ], - "holders": [ - "Henrik Ravn" - ], - "authors": [], - "start_line": 55, - "end_line": 55 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/gcc_gvmat64/gvmat64.S", - "type": "file", - "name": "gvmat64.S", - "base_name": "gvmat64", - "extension": ".S", - "date": "2017-02-02", - "size": 16413, - "sha1": "742603cba1af98a1432cc02efb019b1a5760adf2", - "md5": "5e772d7302475e5473d0c4c57b9861e8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "GAS", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 88.82, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 17, - "end_line": 37, - "matched_rule": { - "identifier": "zlib_10.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2010 Jean-loup Gailly, Brian Raiter and Gilles Vollant." - ], - "holders": [ - "Jean-loup Gailly, Brian Raiter and Gilles Vollant." - ], - "authors": [], - "start_line": 9, - "end_line": 10 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Gilles Vollant" - ], - "start_line": 12, - "end_line": 15 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/infback9/infback9.c", - "type": "file", - "name": "infback9.c", - "base_name": "infback9", - "extension": ".c", - "date": "2017-02-02", - "size": 22244, - "sha1": "be9fd74e9afc16cfbbb693195df972665179c734", - "md5": "f08efcac0c60b475a7a34888a7b85236", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2008 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/infback9/infback9.h", - "type": "file", - "name": "infback9.h", - "base_name": "infback9", - "extension": ".h", - "date": "2017-02-02", - "size": 1631, - "sha1": "9f66c9bf6ad6b4c676e3fe514be653704b403019", - "md5": "7acf663360f7bb54d0f95b808c673fd4", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2003 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/iostream2/zstream.h", - "type": "file", - "name": "zstream.h", - "base_name": "zstream", - "extension": ".h", - "date": "2017-02-02", - "size": 9590, - "sha1": "e849f490ba14f090f2d97655197098f0a4187c4a", - "md5": "4d344c3d93e264c9d9b42ed7c54d34d9", - "files_count": null, - "mime_type": "text/x-c++", - "file_type": "C++ source, ASCII text, with CRLF line terminators", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "cmr-no", - "score": 100.0, - "short_name": "CMR License", - "category": "Permissive", - "owner": "CMR - Christian Michelsen Research AS", - "homepage_url": "", - "text_url": "", - "dejacode_url": "https://enterprise.dejacode.com/urn/urn:dje:license:cmr-no", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 3, - "end_line": 15, - "matched_rule": { - "identifier": "cmr-no.LICENSE", - "license_choice": false, - "licenses": [ - "cmr-no" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1997 Christian Michelsen Research" - ], - "holders": [ - "Christian Michelsen Research" - ], - "authors": [], - "start_line": 3, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "samples/zlib/iostream2/zstream_test.cpp", - "type": "file", - "name": "zstream_test.cpp", - "base_name": "zstream_test", - "extension": ".cpp", - "date": "2017-02-02", - "size": 736, - "sha1": "ced646ae3fc8dde7e7cdff41da29b92cce4f795d", - "md5": "b3a86f4710d45e920c8adfa04876b7b5", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "C++", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - } - ] -} diff --git a/tests/data/models/scan/zlib-1.2.11-clip_scan.json b/tests/data/models/scan/zlib-1.2.11-clip_scan.json deleted file mode 100644 index afa7ede6..00000000 --- a/tests/data/models/scan/zlib-1.2.11-clip_scan.json +++ /dev/null @@ -1,11612 +0,0 @@ -{ - "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.2.1", - "scancode_options": { - "--copyright": true, - "--license": true, - "--package": true, - "--info": true, - "--license-score": 0, - "--format": "json-pp" - }, - "files_count": 292, - "files": [ - { - "path": "zlib-1.2.11/adler32.c", - "type": "file", - "name": "adler32.c", - "base_name": "adler32", - "extension": ".c", - "date": "2017-01-01", - "size": 5204, - "sha1": "6c1114794db137af50f9b060aaade1a1a35ed784", - "md5": "4dc406b7d1b6e49c22eee2e01177c195", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2011, 2016 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/ChangeLog", - "type": "file", - "name": "ChangeLog", - "base_name": "ChangeLog", - "extension": "", - "date": "2017-01-15", - "size": 78553, - "sha1": "e59e031b1a8b9f128fefde07c9d596db4a4c50e8", - "md5": "5b1b3f8b1fc98209b9492717ee39719c", - "files_count": null, - "mime_type": "text/plain", - "file_type": "UTF-8 Unicode text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [], - "holders": [], - "authors": [ - "Gilles Vollant ", - "Kevin Ruland ", - "Tyge Lvset ", - "Carlos Rios " - ], - "start_line": 1219, - "end_line": 1230 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/CMakeLists.txt", - "type": "file", - "name": "CMakeLists.txt", - "base_name": "CMakeLists", - "extension": ".txt", - "date": "2017-01-15", - "size": 8099, - "sha1": "ade23b9417a586a0974e48fda589491fceb85c16", - "md5": "03bf3ba8089f4bf475ef4035cf316a47", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/compress.c", - "type": "file", - "name": "compress.c", - "base_name": "compress", - "extension": ".c", - "date": "2017-01-01", - "size": 2699, - "sha1": "bd40f3ba8567a21560dc307d99c810de6f2d0533", - "md5": "bca8dc2f982dfce8944aec9f4a83626c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2005, 2014, 2016 Jean-loup Gailly, Mark Adler" - ], - "holders": [ - "Jean-loup Gailly, Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/configure", - "type": "file", - "name": "configure", - "base_name": "configure", - "extension": "", - "date": "2016-12-31", - "size": 28244, - "sha1": "bdc2fac491ea3431c733cf8be5b8c17ff60207ab", - "md5": "551e3f81bb7dad9adc058c9138119b02", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/crc32.c", - "type": "file", - "name": "crc32.c", - "base_name": "crc32", - "extension": ".c", - "date": "2017-01-01", - "size": 14053, - "sha1": "88ea76a1b42bfc247680dd50b450923858f945fe", - "md5": "f9a17af8e4efe8019fca94827ea1c0db", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2006, 2010, 2011, 2012, 2016 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/crc32.h", - "type": "file", - "name": "crc32.h", - "base_name": "crc32", - "extension": ".h", - "date": "2012-04-29", - "size": 30562, - "sha1": "db9e88b8332953972c9120c73389fa2ce03dd8f8", - "md5": "f28d16b67efecdfafa0d816a7d982124", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/deflate.c", - "type": "file", - "name": "deflate.c", - "base_name": "deflate", - "extension": ".c", - "date": "2017-01-15", - "size": 78889, - "sha1": "436dc72ccb798bf1ac3e30cd9b580799f8bbb441", - "md5": "9e645d2cc17f3e324028b90d25edc969", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2017 Jean-loup Gailly and Mark Adler" - ], - "holders": [ - "Jean-loup Gailly and Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Leonid Broukhis. Thanks" - ], - "start_line": 33, - "end_line": 35 - }, - { - "statements": [ - "Copyright 1995-2017 Jean-loup Gailly and Mark Adler" - ], - "holders": [ - "Jean-loup Gailly and Mark Adler" - ], - "authors": [], - "start_line": 54, - "end_line": 55 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/deflate.h", - "type": "file", - "name": "deflate.h", - "base_name": "deflate", - "extension": ".h", - "date": "2017-01-01", - "size": 13150, - "sha1": "d54ac3369732bc45463c254851809a0062382b3d", - "md5": "c5839b3f66d79c5aa0daa5062de59bd5", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2016 Jean-loup Gailly" - ], - "holders": [ - "Jean-loup Gailly" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/FAQ", - "type": "file", - "name": "FAQ", - "base_name": "FAQ", - "extension": "", - "date": "2011-11-27", - "size": 16573, - "sha1": "832bb73adff252fa426a141ee4756daa9b8a4db4", - "md5": "b7a1991f01daea3efe108a215c5514a5", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "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": 353, - "end_line": 353, - "matched_rule": { - "identifier": "gpl_63.RULE", - "license_choice": false, - "licenses": [ - "gpl-1.0-plus" - ] - } - }, - { - "key": "gpl-1.0-plus", - "score": 10.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": 355, - "end_line": 355, - "matched_rule": { - "identifier": "gpl_202.RULE", - "license_choice": false, - "licenses": [ - "gpl-1.0-plus" - ] - } - } - ], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/gzclose.c", - "type": "file", - "name": "gzclose.c", - "base_name": "gzclose", - "extension": ".c", - "date": "2010-02-14", - "size": 678, - "sha1": "4698124c166f59728db9ae229f8467459b458ef3", - "md5": "29d02cff161bde3e4e717b25a2ab7050", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2004, 2010 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/gzguts.h", - "type": "file", - "name": "gzguts.h", - "base_name": "gzguts", - "extension": ".h", - "date": "2017-01-01", - "size": 6819, - "sha1": "637240f7e6ac7249e161083b450fb9f4e1f2b088", - "md5": "de472a3069a84c6e6b1eb083c3f91b53", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2004, 2005, 2010, 2011, 2012, 2013, 2016 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/gzlib.c", - "type": "file", - "name": "gzlib.c", - "base_name": "gzlib", - "extension": ".c", - "date": "2017-01-15", - "size": 16599, - "sha1": "4bd4f2745936d396899a7ba09290d6b17fab4a3c", - "md5": "2c08acd5014596272031fdd1a36d0f1c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2004-2017 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/gzread.c", - "type": "file", - "name": "gzread.c", - "base_name": "gzread", - "extension": ".c", - "date": "2017-01-01", - "size": 20428, - "sha1": "dfbd4eef919b6eded7e59ae420642ddf8bc848b8", - "md5": "c999b14aab6322655059b2f1146fb935", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2004, 2005, 2010, 2011, 2012, 2013, 2016 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/gzwrite.c", - "type": "file", - "name": "gzwrite.c", - "base_name": "gzwrite", - "extension": ".c", - "date": "2017-01-15", - "size": 19253, - "sha1": "d2e11857ffe5e792f5d89b927bb47ed726b65031", - "md5": "a407d2308188e881b49c32d586d0da82", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2004-2017 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/INDEX", - "type": "file", - "name": "INDEX", - "base_name": "INDEX", - "extension": "", - "date": "2012-03-11", - "size": 1988, - "sha1": "74611a0f2bcc004caa1fa07bdeb4c44b01f0a5d6", - "md5": "3b6b6f9e88f2319b75e6ccb8c2823b13", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/infback.c", - "type": "file", - "name": "infback.c", - "base_name": "infback", - "extension": ".c", - "date": "2017-01-01", - "size": 22715, - "sha1": "6b7d6a93d4429068f1af3c10a11de42ece950edd", - "md5": "f2adcadab3504b146be9c4928821f233", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2016 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/inffast.c", - "type": "file", - "name": "inffast.c", - "base_name": "inffast", - "extension": ".c", - "date": "2017-01-15", - "size": 12978, - "sha1": "fe2fdfb8f51d9f84881cc453ba64f60e3d7c9cbc", - "md5": "20d7b26f5ae64f4e8501f846beab550c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2017 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/inffast.h", - "type": "file", - "name": "inffast.h", - "base_name": "inffast", - "extension": ".h", - "date": "2010-04-19", - "size": 427, - "sha1": "4fc803c43a562b2b92a97e22300754ddfe44c603", - "md5": "f3669099d3f571dbc0426401ed5f50e3", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2003, 2010 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/inffixed.h", - "type": "file", - "name": "inffixed.h", - "base_name": "inffixed", - "extension": ".h", - "date": "2011-10-06", - "size": 6332, - "sha1": "8770ab43c9050b824c646f6e6cee8b3c0628cbda", - "md5": "7fa3e91804601b6618c915b76a8dc332", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/inflate.c", - "type": "file", - "name": "inflate.c", - "base_name": "inflate", - "extension": ".c", - "date": "2017-01-01", - "size": 54800, - "sha1": "d5cfffd5a037697867a78566d583e73f6d0f91b9", - "md5": "c892c303a1be104ed0efb628e18ed85a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2016 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/inflate.h", - "type": "file", - "name": "inflate.h", - "base_name": "inflate", - "extension": ".h", - "date": "2017-01-01", - "size": 6618, - "sha1": "628d8395fc7f67e6d7a9a6cecba64f6594d64eb9", - "md5": "12c1f3adaf005c8a4cfb629f2e266d30", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2016 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/inftrees.c", - "type": "file", - "name": "inftrees.c", - "base_name": "inftrees", - "extension": ".c", - "date": "2017-01-15", - "size": 12999, - "sha1": "a152b76b78f9245ca67db2729de72d51ecc234b0", - "md5": "34a634c4c6e1de2e357f18c170e6b96c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2017 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - }, - { - "statements": [ - "Copyright 1995-2017 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 11, - "end_line": 12 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/inftrees.h", - "type": "file", - "name": "inftrees.h", - "base_name": "inftrees", - "extension": ".h", - "date": "2010-04-19", - "size": 2928, - "sha1": "3c63a7707d83991f3e074391c047b3136ff3e558", - "md5": "ec87be89b9bcca8ced80a70f857e823b", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2005, 2010 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/Makefile", - "type": "file", - "name": "Makefile", - "base_name": "Makefile", - "extension": "", - "date": "2011-09-10", - "size": 100, - "sha1": "b04f62dd1002b9ca07068c90651432dec60029f3", - "md5": "673574278a68806348d4b57c090f38d4", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/Makefile.in", - "type": "file", - "name": "Makefile.in", - "base_name": "Makefile", - "extension": ".in", - "date": "2017-01-15", - "size": 13680, - "sha1": "023e127b48d292316614f604c1bacda043ba3bb5", - "md5": "31e13357403fe2f42e2dacfa8909bc03", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2017 Jean-loup Gailly, Mark Adler" - ], - "holders": [ - "Jean-loup Gailly, Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/make_vms.com", - "type": "file", - "name": "make_vms.com", - "base_name": "make_vms", - "extension": ".com", - "date": "2012-03-10", - "size": 26402, - "sha1": "dc817ba3a5335de14bde5b81b1a3365734757625", - "md5": "0e5c38a1ec38448cfc594efc152d32f7", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [], - "holders": [], - "authors": [ - "$! Martin P.J. Zinser" - ], - "start_line": 1, - "end_line": 2 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Martin P.J. Zinser zinser@zinser.no-ip.info" - ], - "start_line": 422, - "end_line": 427 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/README", - "type": "file", - "name": "README", - "base_name": "README", - "extension": "", - "date": "2017-01-15", - "size": 5187, - "sha1": "e1e1b075ae4ad6d628468e7dd40d9ec512ff9d10", - "md5": "0ff45db88393c3152e458a047bba0ff1", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 100.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 89, - "end_line": 106, - "matched_rule": { - "identifier": "zlib_17.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [], - "holders": [], - "authors": [ - "Paul Marquess " - ], - "start_line": 41, - "end_line": 43 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Gilles Vollant " - ], - "start_line": 51, - "end_line": 53 - }, - { - "statements": [], - "holders": [], - "authors": [ - "L. Peter Deutsch. Thanks" - ], - "start_line": 80, - "end_line": 83 - }, - { - "statements": [ - "(c) 1995-2017 Jean-loup Gailly and Mark Adler" - ], - "holders": [ - "Jean-loup Gailly and Mark Adler" - ], - "authors": [], - "start_line": 87, - "end_line": 87 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Jean-loup Gailly and Mark Adler" - ], - "start_line": 109, - "end_line": 111 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/treebuild.xml", - "type": "file", - "name": "treebuild.xml", - "base_name": "treebuild", - "extension": ".xml", - "date": "2017-01-15", - "size": 3142, - "sha1": "bdcfc455f66ef2b108b0a10c6dbe7837f54f59b3", - "md5": "a018d7e9e40c63ce8e1be3f6fa26e8a7", - "files_count": null, - "mime_type": "application/xml", - "file_type": "XML document text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/trees.c", - "type": "file", - "name": "trees.c", - "base_name": "trees", - "extension": ".c", - "date": "2017-01-15", - "size": 43761, - "sha1": "ab030a33e399e7284b9ddf9bba64d0dd2730b417", - "md5": "fddcbf441ed0140dec23927ee34de9a7", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 4, - "end_line": 4, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2017 Jean-loup Gailly" - ], - "holders": [ - "Jean-loup Gailly" - ], - "authors": [], - "start_line": 1, - "end_line": 4 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/trees.h", - "type": "file", - "name": "trees.h", - "base_name": "trees", - "extension": ".h", - "date": "2010-04-18", - "size": 8472, - "sha1": "5d8a9c42f902d2418a7e63b539c0f319373e9400", - "md5": "51fdcb3e2ccf60ca13c06920c89296a3", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/uncompr.c", - "type": "file", - "name": "uncompr.c", - "base_name": "uncompr", - "extension": ".c", - "date": "2016-12-31", - "size": 2966, - "sha1": "90f92698d7de79341e85bd3ca411a6b165c58848", - "md5": "dc210f08738914519d15edf1bb6e5141", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2003, 2010, 2014, 2016 Jean-loup Gailly, Mark Adler" - ], - "holders": [ - "Jean-loup Gailly, Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/zconf.h", - "type": "file", - "name": "zconf.h", - "base_name": "zconf", - "extension": ".h", - "date": "2017-01-01", - "size": 16298, - "sha1": "0ef05b0d12bf2cfbbf1aa84cff0e8dcf4fc5b731", - "md5": "66c6b3953f574eca8b709dd5f6865745", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2016 Jean-loup Gailly, Mark Adler" - ], - "holders": [ - "Jean-loup Gailly, Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/zconf.h.cmakein", - "type": "file", - "name": "zconf.h.cmakein", - "base_name": "zconf.h", - "extension": ".cmakein", - "date": "2017-01-01", - "size": 16349, - "sha1": "cbd5ddffb39904669e115e270b23138106bb0ac2", - "md5": "26ab763d924e6ffc50701c71a408ce39", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2016 Jean-loup Gailly, Mark Adler" - ], - "holders": [ - "Jean-loup Gailly, Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/zconf.h.in", - "type": "file", - "name": "zconf.h.in", - "base_name": "zconf.h", - "extension": ".in", - "date": "2017-01-01", - "size": 16298, - "sha1": "0ef05b0d12bf2cfbbf1aa84cff0e8dcf4fc5b731", - "md5": "66c6b3953f574eca8b709dd5f6865745", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2016 Jean-loup Gailly, Mark Adler" - ], - "holders": [ - "Jean-loup Gailly, Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/zlib.3", - "type": "file", - "name": "zlib.3", - "base_name": "zlib", - "extension": ".3", - "date": "2017-01-15", - "size": 4477, - "sha1": "8b7c3c050d8cfdd1e8455c98a4767bf98752cb74", - "md5": "8e4658ab605826672b98422b973305b6", - "files_count": null, - "mime_type": "text/troff", - "file_type": "troff or preprocessor input, ASCII text", - "programming_language": "Groff", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 79.88, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 112, - "end_line": 137, - "matched_rule": { - "identifier": "zlib_3.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [], - "holders": [], - "authors": [ - "Gilles Vollant (info@winimage.com)" - ], - "start_line": 56, - "end_line": 59 - }, - { - "statements": [ - "Copyright (c) 1995-2017 Jean-loup Gailly and Mark Adler" - ], - "holders": [ - "Jean-loup Gailly and Mark Adler" - ], - "authors": [], - "start_line": 106, - "end_line": 115 - }, - { - "statements": [], - "holders": [], - "authors": [ - "L. Peter Deutsch. Thanks" - ], - "start_line": 135, - "end_line": 143 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/zlib.3.pdf", - "type": "file", - "name": "zlib.3.pdf", - "base_name": "zlib.3", - "extension": ".pdf", - "date": "2017-01-15", - "size": 19318, - "sha1": "8c3040d78eb9dd1bdc83d687f5b601465ff22583", - "md5": "22a44610601666b7ddbd6cabc43b0f9f", - "files_count": null, - "mime_type": "application/pdf", - "file_type": "PDF document, version 1.4", - "programming_language": null, - "is_binary": true, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 84.97, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 91, - "end_line": 115, - "matched_rule": { - "identifier": "zlib_10.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [], - "holders": [], - "authors": [ - "Gilles Vollant (info@winimage.com)" - ], - "start_line": 42, - "end_line": 43 - }, - { - "statements": [ - "(c) 1995-2017 Jean-loup Gailly and Mark Adler" - ], - "holders": [ - "Jean-loup Gailly and Mark Adler" - ], - "authors": [], - "start_line": 89, - "end_line": 89 - }, - { - "statements": [], - "holders": [], - "authors": [ - "L. Peter Deutsch. Thanks" - ], - "start_line": 115, - "end_line": 117 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/zlib.h", - "type": "file", - "name": "zlib.h", - "base_name": "zlib", - "extension": ".h", - "date": "2017-01-15", - "size": 96239, - "sha1": "473b29ab06e2be461fe4aa74952fcb9bd08d9fa0", - "md5": "0338828e9d00c94645648b1517108324", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 100.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 6, - "end_line": 23, - "matched_rule": { - "identifier": "zlib_17.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2017 Jean-loup Gailly and Mark Adler" - ], - "holders": [ - "Jean-loup Gailly and Mark Adler" - ], - "authors": [], - "start_line": 4, - "end_line": 4 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/zlib.map", - "type": "file", - "name": "zlib.map", - "base_name": "zlib", - "extension": ".map", - "date": "2017-01-01", - "size": 1457, - "sha1": "513816d1574deea0e966ad82ed0d304959a5ad17", - "md5": "8914872466a77551efb3898272ed98e0", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/zlib.pc.cmakein", - "type": "file", - "name": "zlib.pc.cmakein", - "base_name": "zlib.pc", - "extension": ".cmakein", - "date": "2012-03-11", - "size": 294, - "sha1": "c80d6efe2a2991a1836ee797f75b12c9d60b6783", - "md5": "9d7ec0d0fe9134c725fc8b688ff673f4", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/zlib.pc.in", - "type": "file", - "name": "zlib.pc.in", - "base_name": "zlib.pc", - "extension": ".in", - "date": "2010-04-18", - "size": 254, - "sha1": "3ebc107b34d82b134e9f5933c2a569eb6e952ce4", - "md5": "60674eee456b5cab09b25a4bfd55d533", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/zlib2ansi", - "type": "file", - "name": "zlib2ansi", - "base_name": "zlib2ansi", - "extension": "", - "date": "2006-10-14", - "size": 3895, - "sha1": "e9859eecf47ae66280573d73969c061989615134", - "md5": "381f96b09b247fbe8f4c329a89bd5bd3", - "files_count": null, - "mime_type": "text/x-perl", - "file_type": "Perl script, ASCII text executable", - "programming_language": "Perl", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [], - "holders": [], - "authors": [ - "Paul Marquess Version" - ], - "start_line": 5, - "end_line": 7 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/zutil.c", - "type": "file", - "name": "zutil.c", - "base_name": "zutil", - "extension": ".c", - "date": "2017-01-15", - "size": 7304, - "sha1": "2f1fcc93488ac84acf984415b6ea0bd63c72aa49", - "md5": "69d0e0950d3ab5c1938d8566257c33a3", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2017 Jean-loup Gailly" - ], - "holders": [ - "Jean-loup Gailly" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/zutil.h", - "type": "file", - "name": "zutil.h", - "base_name": "zutil", - "extension": ".h", - "date": "2017-01-01", - "size": 7127, - "sha1": "f32dab3880d47eca1b71c308cf6542b32941b23c", - "md5": "b8a47cd8873cbfa8daf689f88dd62f75", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2016 Jean-loup Gailly, Mark Adler" - ], - "holders": [ - "Jean-loup Gailly, Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/amiga", - "type": "directory", - "name": "amiga", - "base_name": "amiga", - "extension": "", - "date": null, - "size": 3828, - "sha1": null, - "md5": null, - "files_count": 2, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib", - "type": "directory", - "name": "contrib", - "base_name": "contrib", - "extension": "", - "date": null, - "size": 1749228, - "sha1": null, - "md5": null, - "files_count": 159, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/doc", - "type": "directory", - "name": "doc", - "base_name": "doc", - "extension": "", - "date": null, - "size": 97011, - "sha1": null, - "md5": null, - "files_count": 5, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/examples", - "type": "directory", - "name": "examples", - "base_name": "examples", - "extension": "", - "date": null, - "size": 189422, - "sha1": null, - "md5": null, - "files_count": 11, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/msdos", - "type": "directory", - "name": "msdos", - "base_name": "msdos", - "extension": "", - "date": null, - "size": 12746, - "sha1": null, - "md5": null, - "files_count": 5, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/nintendods", - "type": "directory", - "name": "nintendods", - "base_name": "nintendods", - "extension": "", - "date": null, - "size": 4950, - "sha1": null, - "md5": null, - "files_count": 2, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/old", - "type": "directory", - "name": "old", - "base_name": "old", - "extension": "", - "date": null, - "size": 17848, - "sha1": null, - "md5": null, - "files_count": 7, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/os400", - "type": "directory", - "name": "os400", - "base_name": "os400", - "extension": "", - "date": null, - "size": 49379, - "sha1": null, - "md5": null, - "files_count": 4, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/qnx", - "type": "directory", - "name": "qnx", - "base_name": "qnx", - "extension": "", - "date": null, - "size": 6432, - "sha1": null, - "md5": null, - "files_count": 1, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/test", - "type": "directory", - "name": "test", - "base_name": "test", - "extension": "", - "date": null, - "size": 57408, - "sha1": null, - "md5": null, - "files_count": 3, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/watcom", - "type": "directory", - "name": "watcom", - "base_name": "watcom", - "extension": "", - "date": null, - "size": 2846, - "sha1": null, - "md5": null, - "files_count": 2, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/win32", - "type": "directory", - "name": "win32", - "base_name": "win32", - "extension": "", - "date": null, - "size": 38317, - "sha1": null, - "md5": null, - "files_count": 8, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/amiga/Makefile.pup", - "type": "file", - "name": "Makefile.pup", - "base_name": "Makefile", - "extension": ".pup", - "date": "2010-02-14", - "size": 1981, - "sha1": "79461cdcf8eda434edca3c32781982d2082af5fe", - "md5": "f16cd4621f5561cf147b5e56a8af1946", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1998 by Andreas R. Kleinert" - ], - "holders": [ - "Andreas R. Kleinert" - ], - "authors": [], - "start_line": 2, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/amiga/Makefile.sas", - "type": "file", - "name": "Makefile.sas", - "base_name": "Makefile", - "extension": ".sas", - "date": "2010-02-14", - "size": 1847, - "sha1": "64787face2d527df6c78ba8754eb54c53dda6ac2", - "md5": "315c9e3e7dd1d24aeb9d6bc55b7de5fd", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [ - "Copyright Jean-loup Gailly Osma Ahvenlampi " - ], - "holders": [ - "Jean-loup Gailly Osma Ahvenlampi" - ], - "authors": [], - "start_line": 1, - "end_line": 4 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/README.contrib", - "type": "file", - "name": "README.contrib", - "base_name": "README", - "extension": ".contrib", - "date": "2016-12-31", - "size": 3186, - "sha1": "6b6a2a76495304808f5e13df25face2089124fe6", - "md5": "417c6b266549b949b958733f95d075ef", - "files_count": null, - "mime_type": "text/plain", - "file_type": "UTF-8 Unicode text", - "programming_language": "JavaScript+Lasso", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [], - "holders": [], - "authors": [ - "Dmitriy Anisimkov " - ], - "start_line": 7, - "end_line": 9 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Mikhail Teterin " - ], - "start_line": 11, - "end_line": 13 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Brian Raiter " - ], - "start_line": 15, - "end_line": 17 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Mark Adler " - ], - "start_line": 19, - "end_line": 20 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Cosmin Truta " - ], - "start_line": 22, - "end_line": 23 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Henrik Ravn " - ], - "start_line": 25, - "end_line": 26 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Mark Adler " - ], - "start_line": 32, - "end_line": 33 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Chris Anderson " - ], - "start_line": 35, - "end_line": 36 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Kevin Ruland " - ], - "start_line": 38, - "end_line": 39 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Tyge Lvset " - ], - "start_line": 41, - "end_line": 42 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Gilles Vollant " - ], - "start_line": 48, - "end_line": 50 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Gilles Vollant " - ], - "start_line": 53, - "end_line": 55 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Gilles Vollant ", - "Mathias Svensson " - ], - "start_line": 58, - "end_line": 61 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Bob Dellaca " - ], - "start_line": 63, - "end_line": 64 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Mark Adler " - ], - "start_line": 66, - "end_line": 68 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Gilles Vollant " - ], - "start_line": 70, - "end_line": 71 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Pedro A. Aranda Gutierrez " - ], - "start_line": 73, - "end_line": 74 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Gilles Vollant " - ], - "start_line": 76, - "end_line": 78 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/ada", - "type": "directory", - "name": "ada", - "base_name": "ada", - "extension": "", - "date": null, - "size": 91768, - "sha1": null, - "md5": null, - "files_count": 12, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/amd64", - "type": "directory", - "name": "amd64", - "base_name": "amd64", - "extension": "", - "date": null, - "size": 12418, - "sha1": null, - "md5": null, - "files_count": 1, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/asm686", - "type": "directory", - "name": "asm686", - "base_name": "asm686", - "extension": "", - "date": null, - "size": 11987, - "sha1": null, - "md5": null, - "files_count": 2, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/blast", - "type": "directory", - "name": "blast", - "base_name": "blast", - "extension": "", - "date": null, - "size": 22249, - "sha1": null, - "md5": null, - "files_count": 6, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/delphi", - "type": "directory", - "name": "delphi", - "base_name": "delphi", - "extension": "", - "date": null, - "size": 21459, - "sha1": null, - "md5": null, - "files_count": 4, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/dotzlib", - "type": "directory", - "name": "dotzlib", - "base_name": "dotzlib", - "extension": "", - "date": null, - "size": 139548, - "sha1": null, - "md5": null, - "files_count": 15, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/gcc_gvmat64", - "type": "directory", - "name": "gcc_gvmat64", - "base_name": "gcc_gvmat64", - "extension": "", - "date": null, - "size": 16413, - "sha1": null, - "md5": null, - "files_count": 1, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/infback9", - "type": "directory", - "name": "infback9", - "base_name": "infback9", - "extension": "", - "date": null, - "size": 48171, - "sha1": null, - "md5": null, - "files_count": 7, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/inflate86", - "type": "directory", - "name": "inflate86", - "base_name": "inflate86", - "extension": "", - "date": null, - "size": 83450, - "sha1": null, - "md5": null, - "files_count": 2, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/iostream", - "type": "directory", - "name": "iostream", - "base_name": "iostream", - "extension": "", - "date": null, - "size": 8105, - "sha1": null, - "md5": null, - "files_count": 3, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/iostream2", - "type": "directory", - "name": "iostream2", - "base_name": "iostream2", - "extension": "", - "date": null, - "size": 9994, - "sha1": null, - "md5": null, - "files_count": 2, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/iostream3", - "type": "directory", - "name": "iostream3", - "base_name": "iostream3", - "extension": "", - "date": null, - "size": 29158, - "sha1": null, - "md5": null, - "files_count": 5, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/masmx64", - "type": "directory", - "name": "masmx64", - "base_name": "masmx64", - "extension": "", - "date": null, - "size": 35926, - "sha1": null, - "md5": null, - "files_count": 5, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/masmx86", - "type": "directory", - "name": "masmx86", - "base_name": "masmx86", - "extension": "", - "date": null, - "size": 33182, - "sha1": null, - "md5": null, - "files_count": 4, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/minizip", - "type": "directory", - "name": "minizip", - "base_name": "minizip", - "extension": "", - "date": null, - "size": 255057, - "sha1": null, - "md5": null, - "files_count": 22, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/pascal", - "type": "directory", - "name": "pascal", - "base_name": "pascal", - "extension": "", - "date": null, - "size": 31178, - "sha1": null, - "md5": null, - "files_count": 4, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/puff", - "type": "directory", - "name": "puff", - "base_name": "puff", - "extension": "", - "date": null, - "size": 51707, - "sha1": null, - "md5": null, - "files_count": 6, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/testzlib", - "type": "directory", - "name": "testzlib", - "base_name": "testzlib", - "extension": "", - "date": null, - "size": 7848, - "sha1": null, - "md5": null, - "files_count": 2, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/untgz", - "type": "directory", - "name": "untgz", - "base_name": "untgz", - "extension": "", - "date": null, - "size": 17057, - "sha1": null, - "md5": null, - "files_count": 3, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio", - "type": "directory", - "name": "vstudio", - "base_name": "vstudio", - "extension": "", - "date": null, - "size": 819367, - "sha1": null, - "md5": null, - "files_count": 52, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/ada/buffer_demo.adb", - "type": "file", - "name": "buffer_demo.adb", - "base_name": "buffer_demo", - "extension": ".adb", - "date": "2004-09-06", - "size": 3717, - "sha1": "1d8fba99362b0973535a759097f7893d4551c4e7", - "md5": "cd14a97dd8a0613bb1244a68c0c764d6", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": "Ada", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002-2004 Dmitriy Anisimkov" - ], - "holders": [ - "Dmitriy Anisimkov" - ], - "authors": [], - "start_line": 4, - "end_line": 4 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Dr Steve Sangwine " - ], - "start_line": 11, - "end_line": 11 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/ada/mtest.adb", - "type": "file", - "name": "mtest.adb", - "base_name": "mtest", - "extension": ".adb", - "date": "2004-07-23", - "size": 4467, - "sha1": "f1c968146ba1a8f07c7070a2af72ab8a84c82e3d", - "md5": "20f2b8d64f3507ea0eb67bf4be048599", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": "Ada", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002-2003 Dmitriy Anisimkov" - ], - "holders": [ - "Dmitriy Anisimkov" - ], - "authors": [], - "start_line": 4, - "end_line": 4 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/ada/read.adb", - "type": "file", - "name": "read.adb", - "base_name": "read", - "extension": ".adb", - "date": "2004-05-31", - "size": 4248, - "sha1": "a5a6682ef169a7429d9bf9f8acbda6ffb756fec4", - "md5": "a223bf66e23cc79eba08eadd40ee269b", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": "Ada", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002-2003 Dmitriy Anisimkov" - ], - "holders": [ - "Dmitriy Anisimkov" - ], - "authors": [], - "start_line": 4, - "end_line": 4 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/ada/readme.txt", - "type": "file", - "name": "readme.txt", - "base_name": "readme", - "extension": ".txt", - "date": "2004-10-04", - "size": 2178, - "sha1": "1fd4ae8ee39ef80117dca454e1951ecaf0d1d290", - "md5": "c998583cdc1fe9d7f8f6b92d1a9551a3", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [], - "holders": [], - "authors": [ - "Dmitriy Anisimkov " - ], - "start_line": 62, - "end_line": 63 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/ada/test.adb", - "type": "file", - "name": "test.adb", - "base_name": "test", - "extension": ".adb", - "date": "2004-05-31", - "size": 13180, - "sha1": "5eebe86bd398dade5340cc4af24685bf02df671f", - "md5": "8197c8e51a900ed2a1e98d9c1455dba0", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": "Ada", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002-2003 Dmitriy Anisimkov" - ], - "holders": [ - "Dmitriy Anisimkov" - ], - "authors": [], - "start_line": 4, - "end_line": 4 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/ada/zlib-streams.adb", - "type": "file", - "name": "zlib-streams.adb", - "base_name": "zlib-streams", - "extension": ".adb", - "date": "2004-10-04", - "size": 5996, - "sha1": "70f5981b0c3c5de023ea3485ea7e81231a42ce7f", - "md5": "5d67ffc3a8cbe706d47d25f8124c72dd", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": "Ada", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002-2003 Dmitriy Anisimkov" - ], - "holders": [ - "Dmitriy Anisimkov" - ], - "authors": [], - "start_line": 4, - "end_line": 4 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/ada/zlib-streams.ads", - "type": "file", - "name": "zlib-streams.ads", - "base_name": "zlib-streams", - "extension": ".ads", - "date": "2016-10-30", - "size": 4329, - "sha1": "fadb4623dc2469cc4fd571a9fac302798735c40b", - "md5": "9659f0be883fe948d584bc969cbd8564", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": "Ada", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002-2003 Dmitriy Anisimkov" - ], - "holders": [ - "Dmitriy Anisimkov" - ], - "authors": [], - "start_line": 4, - "end_line": 4 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/ada/zlib-thin.adb", - "type": "file", - "name": "zlib-thin.adb", - "base_name": "zlib-thin", - "extension": ".adb", - "date": "2003-12-15", - "size": 3329, - "sha1": "43c7e58eb582ce078f6ff76aa4f4eb09892ff92b", - "md5": "d520a330ed13ea54e7b20c8e5de64579", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": "Ada", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002-2003 Dmitriy Anisimkov" - ], - "holders": [ - "Dmitriy Anisimkov" - ], - "authors": [], - "start_line": 4, - "end_line": 4 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/ada/zlib-thin.ads", - "type": "file", - "name": "zlib-thin.ads", - "base_name": "zlib-thin", - "extension": ".ads", - "date": "2016-10-30", - "size": 15819, - "sha1": "faf47e35174e1e76edb85ea602779084e535df69", - "md5": "92b08ae0238ed5046f1a84959e6e8a54", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": "Ada", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002-2003 Dmitriy Anisimkov" - ], - "holders": [ - "Dmitriy Anisimkov" - ], - "authors": [], - "start_line": 4, - "end_line": 4 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/ada/zlib.adb", - "type": "file", - "name": "zlib.adb", - "base_name": "zlib", - "extension": ".adb", - "date": "2004-09-06", - "size": 20400, - "sha1": "3961008f51def7ffcd692453df7b0f1d8b680645", - "md5": "f46bd97cccf4719989ee553daa36f8c6", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": "Ada", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002-2004 Dmitriy Anisimkov" - ], - "holders": [ - "Dmitriy Anisimkov" - ], - "authors": [], - "start_line": 4, - "end_line": 4 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/ada/zlib.ads", - "type": "file", - "name": "zlib.ads", - "base_name": "zlib", - "extension": ".ads", - "date": "2004-09-06", - "size": 13594, - "sha1": "0245a91806d804bf9f0907a3a001a141e9adb61b", - "md5": "71de2670f2e588b51c62e7f6a9046399", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": "Ada", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "gpl-2.0-plus-ada", - "score": 100.0, - "short_name": "GPL 2.0 or later with Ada exception", - "category": "Copyleft Limited", - "owner": "Dmitriy Anisimkov", - "homepage_url": "", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus-ada", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 6, - "end_line": 25, - "matched_rule": { - "identifier": "gpl-2.0-plus-ada.LICENSE", - "license_choice": false, - "licenses": [ - "gpl-2.0-plus-ada" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002-2004 Dmitriy Anisimkov" - ], - "holders": [ - "Dmitriy Anisimkov" - ], - "authors": [], - "start_line": 4, - "end_line": 4 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/ada/zlib.gpr", - "type": "file", - "name": "zlib.gpr", - "base_name": "zlib", - "extension": ".gpr", - "date": "2004-10-04", - "size": 511, - "sha1": "c36c2cf069e930eb81ee0c89bfe70c20c8d0511a", - "md5": "38044e8f5f88e1f70ade036779d56ee8", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/amd64/amd64-match.S", - "type": "file", - "name": "amd64-match.S", - "base_name": "amd64-match", - "extension": ".S", - "date": "2010-02-24", - "size": 12418, - "sha1": "4ac2676fb0393520f0d051965529c39139e7de8c", - "md5": "5f6c5b314559290786a59c0320b800d5", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "bsd-new", - "score": 100.0, - "short_name": "BSD-Modified", - "category": "Permissive", - "owner": "Regents of the University of California", - "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", - "spdx_license_key": "BSD-3-Clause", - "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", - "start_line": 5, - "end_line": 8, - "matched_rule": { - "identifier": "bsd-new_zlib.RULE", - "license_choice": false, - "licenses": [ - "bsd-new" - ] - } - } - ], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/asm686/match.S", - "type": "file", - "name": "match.S", - "base_name": "match", - "extension": ".S", - "date": "2011-09-10", - "size": 10365, - "sha1": "f1023ae9dab5691291f42b180551bae164086492", - "md5": "35c8e3cc241cef1605bd108b5319ca63", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 89.26, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 1, - "end_line": 20, - "matched_rule": { - "identifier": "zlib_4.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1998, 2007 Brian Raiter " - ], - "holders": [ - "Brian Raiter" - ], - "authors": [], - "start_line": 4, - "end_line": 4 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/asm686/README.686", - "type": "file", - "name": "README.686", - "base_name": "README", - "extension": ".686", - "date": "2010-02-23", - "size": 1622, - "sha1": "ac08681935257d53b3fd1793788a1406a781ee22", - "md5": "c28b5c0d295403ec6c6ba001238ec648", - "files_count": null, - "mime_type": "text/x-makefile", - "file_type": "makefile script, ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": true, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/blast/blast.c", - "type": "file", - "name": "blast.c", - "base_name": "blast", - "extension": ".c", - "date": "2016-07-10", - "size": 18162, - "sha1": "809a3404b6e9e1bc120ff0313c31c4bd2b776823", - "md5": "fc91693deab323a4810a4cbd3c923c4a", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_blast.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2003, 2012, 2013 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 4 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/blast/blast.h", - "type": "file", - "name": "blast.h", - "base_name": "blast", - "extension": ".h", - "date": "2013-08-24", - "size": 3865, - "sha1": "b20eb7c03966462cafbf896c97263632004bd867", - "md5": "aa831d52e70bab6b0319724628e4acce", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 100.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 5, - "end_line": 19, - "matched_rule": { - "identifier": "zlib_variant.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2003, 2012, 2013 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/blast/Makefile", - "type": "file", - "name": "Makefile", - "base_name": "Makefile", - "extension": "", - "date": "2003-03-03", - "size": 127, - "sha1": "c18cae8b163b2fc351bc59b8efad7a190d1ead78", - "md5": "5cd923d6c5e717cdc43180aaa2eeed18", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/blast/README", - "type": "file", - "name": "README", - "base_name": "README", - "extension": "", - "date": "2003-03-04", - "size": 74, - "sha1": "69a33e70f88cc1f3520e2154ed38d3f690ee26e5", - "md5": "b93c34189a9302e6f43c53c7d0277637", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/blast/test.pk", - "type": "file", - "name": "test.pk", - "base_name": "test", - "extension": ".pk", - "date": "2003-02-13", - "size": 8, - "sha1": "00d07b4c71bad842d7e04210f966e55977efd9c3", - "md5": "f8dd3560a13a68bd15f5ca5a53c94ce9", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/blast/test.txt", - "type": "file", - "name": "test.txt", - "base_name": "test", - "extension": ".txt", - "date": "2003-02-13", - "size": 13, - "sha1": "aed9b9fc86b2b47a4c46053df53feb544ecf31ce", - "md5": "1201a93782f0542d6fbf5134c1a5a4c6", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/delphi/readme.txt", - "type": "file", - "name": "readme.txt", - "base_name": "readme", - "extension": ".txt", - "date": "2003-11-12", - "size": 2500, - "sha1": "366e08eaa227cd3d09810c45639aedf4879b7ecf", - "md5": "e43e458c50d36075813a1533d05a0bdc", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1997,99 Borland Corp." - ], - "holders": [ - "Borland Corp." - ], - "authors": [], - "start_line": 8, - "end_line": 10 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/delphi/ZLib.pas", - "type": "file", - "name": "ZLib.pas", - "base_name": "ZLib", - "extension": ".pas", - "date": "2017-01-15", - "size": 16413, - "sha1": "25133131cac8eeed1962e7a9072b06591481a520", - "md5": "bcc04a52a768c648243ede04a1d417ac", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": "Delphi", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1997,99 Borland Corporation" - ], - "holders": [ - "Borland Corporation" - ], - "authors": [], - "start_line": 6, - "end_line": 6 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Cosmin Truta " - ], - "start_line": 10, - "end_line": 10 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/delphi/ZLibConst.pas", - "type": "file", - "name": "ZLibConst.pas", - "base_name": "ZLibConst", - "extension": ".pas", - "date": "2003-07-27", - "size": 186, - "sha1": "e0ff4d3c14a4dcdbf170692ce0fec86939b500d0", - "md5": "b02c46423595bd6358de3b7c5a148a88", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": "Delphi", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/delphi/zlibd32.mak", - "type": "file", - "name": "zlibd32.mak", - "base_name": "zlibd32", - "extension": ".mak", - "date": "2011-11-27", - "size": 2360, - "sha1": "ddf83b34d4c7d41ace39f96b5cb13fb390c8d2eb", - "md5": "b2cc80e48f2aa69be40b6f52ba3480c4", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/dotzlib/DotZLib.build", - "type": "file", - "name": "DotZLib.build", - "base_name": "DotZLib", - "extension": ".build", - "date": "2004-09-18", - "size": 1175, - "sha1": "6f87ba12d786feca35738d0e9ce1f0f03f292881", - "md5": "b1aaa7c52472b3cb4bc9ffd50de23c4c", - "files_count": null, - "mime_type": "application/xml", - "file_type": "XML 1.0 document, UTF-8 Unicode (with BOM) text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/dotzlib/DotZLib.chm", - "type": "file", - "name": "DotZLib.chm", - "base_name": "DotZLib", - "extension": ".chm", - "date": "2004-09-18", - "size": 72726, - "sha1": "a1245c21c7e918fa2919fd10bbe5604fc81faf49", - "md5": "87982cfd077364bc596aecebb7668297", - "files_count": null, - "mime_type": "application/octet-stream", - "file_type": "MS Windows HtmlHelp Data", - "programming_language": null, - "is_binary": true, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/dotzlib/DotZLib.sln", - "type": "file", - "name": "DotZLib.sln", - "base_name": "DotZLib", - "extension": ".sln", - "date": "2004-03-21", - "size": 907, - "sha1": "4946bdb71b79bff62f9217802b7524010c669408", - "md5": "46821b590c4a11eab8409b1d3f1c6fca", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/dotzlib/LICENSE_1_0.txt", - "type": "file", - "name": "LICENSE_1_0.txt", - "base_name": "LICENSE_1_0", - "extension": ".txt", - "date": "2004-03-29", - "size": 1359, - "sha1": "892b34f7865d90a6f949f50d95e49625a10bc7f0", - "md5": "81543b22c36f10d20ac9712f8d80ef8d", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "boost-1.0", - "score": 100.0, - "short_name": "Boost 1.0", - "category": "Permissive", - "owner": "Boost", - "homepage_url": "http://www.boost.org/users/license.html", - "text_url": "http://www.boost.org/LICENSE_1_0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:boost-1.0", - "spdx_license_key": "BSL-1.0", - "spdx_url": "https://spdx.org/licenses/BSL-1.0", - "start_line": 1, - "end_line": 23, - "matched_rule": { - "identifier": "boost-1.0.LICENSE", - "license_choice": false, - "licenses": [ - "boost-1.0" - ] - } - } - ], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/dotzlib/readme.txt", - "type": "file", - "name": "readme.txt", - "base_name": "readme", - "extension": ".txt", - "date": "2004-09-18", - "size": 2358, - "sha1": "b1229b826f0096808628474538cea8fec2922a9b", - "md5": "1f20f3168ee63d90de033edac2ce383c", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "boost-1.0", - "score": 30.0, - "short_name": "Boost 1.0", - "category": "Permissive", - "owner": "Boost", - "homepage_url": "http://www.boost.org/users/license.html", - "text_url": "http://www.boost.org/LICENSE_1_0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:boost-1.0", - "spdx_license_key": "BSL-1.0", - "spdx_url": "https://spdx.org/licenses/BSL-1.0", - "start_line": 58, - "end_line": 58, - "matched_rule": { - "identifier": "boost-1.0.RULE", - "license_choice": false, - "licenses": [ - "boost-1.0" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) Henrik Ravn 2004" - ], - "holders": [ - "Henrik Ravn" - ], - "authors": [], - "start_line": 55, - "end_line": 55 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/dotzlib/DotZLib", - "type": "directory", - "name": "DotZLib", - "base_name": "DotZLib", - "extension": "", - "date": null, - "size": 61023, - "sha1": null, - "md5": null, - "files_count": 10, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/dotzlib/DotZLib/AssemblyInfo.cs", - "type": "file", - "name": "AssemblyInfo.cs", - "base_name": "AssemblyInfo", - "extension": ".cs", - "date": "2004-09-14", - "size": 2500, - "sha1": "9f1db1177b2e9a014f72bb3cd80be17133e06d16", - "md5": "23d0d7c18846fc31655b6aa89b7c8038", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "C#", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [ - "(c) 2004 by Henrik Ravn" - ], - "holders": [ - "Henrik Ravn" - ], - "authors": [], - "start_line": 13, - "end_line": 16 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/dotzlib/DotZLib/ChecksumImpl.cs", - "type": "file", - "name": "ChecksumImpl.cs", - "base_name": "ChecksumImpl", - "extension": ".cs", - "date": "2004-09-18", - "size": 8040, - "sha1": "3807a0e24a57b92ea301559cab7307b8eab52c51", - "md5": "d01b3cb2e75da9b15f05b92b42f6bd33", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ISO-8859 text, with CRLF line terminators", - "programming_language": "C#", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "boost-1.0", - "score": 100.0, - "short_name": "Boost 1.0", - "category": "Permissive", - "owner": "Boost", - "homepage_url": "http://www.boost.org/users/license.html", - "text_url": "http://www.boost.org/LICENSE_1_0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:boost-1.0", - "spdx_license_key": "BSL-1.0", - "spdx_url": "https://spdx.org/licenses/BSL-1.0", - "start_line": 4, - "end_line": 5, - "matched_rule": { - "identifier": "boost-1.0_1.RULE", - "license_choice": false, - "licenses": [ - "boost-1.0" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "(c) Copyright Henrik Ravn 2004" - ], - "holders": [ - "Henrik Ravn" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/dotzlib/DotZLib/CircularBuffer.cs", - "type": "file", - "name": "CircularBuffer.cs", - "base_name": "CircularBuffer", - "extension": ".cs", - "date": "2004-03-29", - "size": 2246, - "sha1": "1e646570737b175729a916da13b23fe88fcbd0e8", - "md5": "0f21c8a8e81b9409c3cc82200210b977", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ISO-8859 text, with CRLF line terminators", - "programming_language": "C#", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "boost-1.0", - "score": 100.0, - "short_name": "Boost 1.0", - "category": "Permissive", - "owner": "Boost", - "homepage_url": "http://www.boost.org/users/license.html", - "text_url": "http://www.boost.org/LICENSE_1_0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:boost-1.0", - "spdx_license_key": "BSL-1.0", - "spdx_url": "https://spdx.org/licenses/BSL-1.0", - "start_line": 4, - "end_line": 5, - "matched_rule": { - "identifier": "boost-1.0_1.RULE", - "license_choice": false, - "licenses": [ - "boost-1.0" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "(c) Copyright Henrik Ravn 2004" - ], - "holders": [ - "Henrik Ravn" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/dotzlib/DotZLib/CodecBase.cs", - "type": "file", - "name": "CodecBase.cs", - "base_name": "CodecBase", - "extension": ".cs", - "date": "2004-09-18", - "size": 6335, - "sha1": "2106c80ed4607f10400ceed9aa8f635efdea9345", - "md5": "24dc08da7a2f4ae283334414effe4342", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ISO-8859 text, with CRLF line terminators", - "programming_language": "C#", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "boost-1.0", - "score": 100.0, - "short_name": "Boost 1.0", - "category": "Permissive", - "owner": "Boost", - "homepage_url": "http://www.boost.org/users/license.html", - "text_url": "http://www.boost.org/LICENSE_1_0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:boost-1.0", - "spdx_license_key": "BSL-1.0", - "spdx_url": "https://spdx.org/licenses/BSL-1.0", - "start_line": 4, - "end_line": 5, - "matched_rule": { - "identifier": "boost-1.0_1.RULE", - "license_choice": false, - "licenses": [ - "boost-1.0" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "(c) Copyright Henrik Ravn 2004" - ], - "holders": [ - "Henrik Ravn" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/dotzlib/DotZLib/Deflater.cs", - "type": "file", - "name": "Deflater.cs", - "base_name": "Deflater", - "extension": ".cs", - "date": "2004-03-30", - "size": 3992, - "sha1": "11f6bf695e4b8ddac0d8553640ef303d9b7cab72", - "md5": "1fdc6f77f6fcf582ab011646db1b8080", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ISO-8859 text, with CRLF line terminators", - "programming_language": "C#", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "boost-1.0", - "score": 100.0, - "short_name": "Boost 1.0", - "category": "Permissive", - "owner": "Boost", - "homepage_url": "http://www.boost.org/users/license.html", - "text_url": "http://www.boost.org/LICENSE_1_0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:boost-1.0", - "spdx_license_key": "BSL-1.0", - "spdx_url": "https://spdx.org/licenses/BSL-1.0", - "start_line": 4, - "end_line": 5, - "matched_rule": { - "identifier": "boost-1.0_1.RULE", - "license_choice": false, - "licenses": [ - "boost-1.0" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "(c) Copyright Henrik Ravn 2004" - ], - "holders": [ - "Henrik Ravn" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/dotzlib/DotZLib/DotZLib.cs", - "type": "file", - "name": "DotZLib.cs", - "base_name": "DotZLib", - "extension": ".cs", - "date": "2004-03-30", - "size": 9927, - "sha1": "e9c7c49791d38b49a39aab76f593b2ea229fa940", - "md5": "250192c134de2a3c9c1d11eaa490bce1", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ISO-8859 text, with CRLF line terminators", - "programming_language": "C#", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "boost-1.0", - "score": 100.0, - "short_name": "Boost 1.0", - "category": "Permissive", - "owner": "Boost", - "homepage_url": "http://www.boost.org/users/license.html", - "text_url": "http://www.boost.org/LICENSE_1_0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:boost-1.0", - "spdx_license_key": "BSL-1.0", - "spdx_url": "https://spdx.org/licenses/BSL-1.0", - "start_line": 4, - "end_line": 5, - "matched_rule": { - "identifier": "boost-1.0_1.RULE", - "license_choice": false, - "licenses": [ - "boost-1.0" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "(c) Copyright Henrik Ravn 2004" - ], - "holders": [ - "Henrik Ravn" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/dotzlib/DotZLib/DotZLib.csproj", - "type": "file", - "name": "DotZLib.csproj", - "base_name": "DotZLib", - "extension": ".csproj", - "date": "2004-09-18", - "size": 5396, - "sha1": "99238c2ad633a641687d722e8c80aaa0a8c8bdd2", - "md5": "1549ce82a2662e77a22625f68c0a5d36", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/dotzlib/DotZLib/GZipStream.cs", - "type": "file", - "name": "GZipStream.cs", - "base_name": "GZipStream", - "extension": ".cs", - "date": "2004-03-30", - "size": 11162, - "sha1": "731206b5721b9a7be5a1cbc98e3cc969bd176b4b", - "md5": "0c83e2409077960456b040ce13fa1fd4", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ISO-8859 text, with CRLF line terminators", - "programming_language": "C#", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "boost-1.0", - "score": 100.0, - "short_name": "Boost 1.0", - "category": "Permissive", - "owner": "Boost", - "homepage_url": "http://www.boost.org/users/license.html", - "text_url": "http://www.boost.org/LICENSE_1_0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:boost-1.0", - "spdx_license_key": "BSL-1.0", - "spdx_url": "https://spdx.org/licenses/BSL-1.0", - "start_line": 4, - "end_line": 5, - "matched_rule": { - "identifier": "boost-1.0_1.RULE", - "license_choice": false, - "licenses": [ - "boost-1.0" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "(c) Copyright Henrik Ravn 2004" - ], - "holders": [ - "Henrik Ravn" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/dotzlib/DotZLib/Inflater.cs", - "type": "file", - "name": "Inflater.cs", - "base_name": "Inflater", - "extension": ".cs", - "date": "2004-09-18", - "size": 3740, - "sha1": "25f788ff0015c08fcd74d6e4552e01792c559350", - "md5": "6071d8412268ff9765540c491a26de1a", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ISO-8859 text, with CRLF line terminators", - "programming_language": "C#", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "boost-1.0", - "score": 100.0, - "short_name": "Boost 1.0", - "category": "Permissive", - "owner": "Boost", - "homepage_url": "http://www.boost.org/users/license.html", - "text_url": "http://www.boost.org/LICENSE_1_0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:boost-1.0", - "spdx_license_key": "BSL-1.0", - "spdx_url": "https://spdx.org/licenses/BSL-1.0", - "start_line": 4, - "end_line": 5, - "matched_rule": { - "identifier": "boost-1.0_1.RULE", - "license_choice": false, - "licenses": [ - "boost-1.0" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "(c) Copyright Henrik Ravn 2004" - ], - "holders": [ - "Henrik Ravn" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/dotzlib/DotZLib/UnitTests.cs", - "type": "file", - "name": "UnitTests.cs", - "base_name": "UnitTests", - "extension": ".cs", - "date": "2017-01-15", - "size": 7685, - "sha1": "8d35d4a5b28e472f5618185c295d1964c1459d07", - "md5": "7bd54b47c37a88cc11c8e92c89be5a66", - "files_count": null, - "mime_type": "text/plain", - "file_type": "UTF-8 Unicode text, with CRLF line terminators", - "programming_language": "C#", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "boost-1.0", - "score": 100.0, - "short_name": "Boost 1.0", - "category": "Permissive", - "owner": "Boost", - "homepage_url": "http://www.boost.org/users/license.html", - "text_url": "http://www.boost.org/LICENSE_1_0.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:boost-1.0", - "spdx_license_key": "BSL-1.0", - "spdx_url": "https://spdx.org/licenses/BSL-1.0", - "start_line": 4, - "end_line": 5, - "matched_rule": { - "identifier": "boost-1.0_1.RULE", - "license_choice": false, - "licenses": [ - "boost-1.0" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "(c) Copyright Henrik Ravn 2004" - ], - "holders": [ - "Henrik Ravn" - ], - "authors": [], - "start_line": 2, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/gcc_gvmat64/gvmat64.S", - "type": "file", - "name": "gvmat64.S", - "base_name": "gvmat64", - "extension": ".S", - "date": "2010-03-12", - "size": 16413, - "sha1": "742603cba1af98a1432cc02efb019b1a5760adf2", - "md5": "5e772d7302475e5473d0c4c57b9861e8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "GAS", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 90.54, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 13, - "end_line": 31, - "matched_rule": { - "identifier": "zlib_4.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2010 Jean-loup Gailly, Brian Raiter and Gilles Vollant." - ], - "holders": [ - "Jean-loup Gailly, Brian Raiter and Gilles Vollant." - ], - "authors": [], - "start_line": 9, - "end_line": 10 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Gilles Vollant" - ], - "start_line": 12, - "end_line": 15 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/infback9/infback9.c", - "type": "file", - "name": "infback9.c", - "base_name": "infback9", - "extension": ".c", - "date": "2012-08-13", - "size": 21629, - "sha1": "17fb362c03755b12f2dda5b12a68cf38162674bd", - "md5": "23ff5edec0817da303cb1294c1e4205c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2008 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/infback9/infback9.h", - "type": "file", - "name": "infback9.h", - "base_name": "infback9", - "extension": ".h", - "date": "2005-04-08", - "size": 1594, - "sha1": "d0486a32b558dcaceded5f0746fad62e680a4734", - "md5": "52b1ed99960d3ed7ed60cd20295e64a8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2003 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/infback9/inffix9.h", - "type": "file", - "name": "inffix9.h", - "base_name": "inffix9", - "extension": ".h", - "date": "2003-09-13", - "size": 6599, - "sha1": "7a57a5901d920d1d3fcf4f8d6bedf8c9c68b41a7", - "md5": "1558f49aeca6376b7aa331add59e0e06", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/infback9/inflate9.h", - "type": "file", - "name": "inflate9.h", - "base_name": "inflate9", - "extension": ".h", - "date": "2003-09-13", - "size": 1991, - "sha1": "c7541490d97f70268010ae1baeb98a10302f3df8", - "md5": "8a4de1bca6c4182d025ea55062d125d9", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2003 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/infback9/inftree9.c", - "type": "file", - "name": "inftree9.c", - "base_name": "inftree9", - "extension": ".c", - "date": "2017-01-15", - "size": 13406, - "sha1": "2729fd3758fb3eb6e84ec51d1c118bd5888ee874", - "md5": "24ad6e3224225202cc5d359440c2f4d9", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2017 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - }, - { - "statements": [ - "Copyright 1995-2017 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 11, - "end_line": 12 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/infback9/inftree9.h", - "type": "file", - "name": "inftree9.h", - "base_name": "inftree9", - "extension": ".h", - "date": "2008-02-17", - "size": 2901, - "sha1": "cfb5d10e9b79029c758cf0428875f9cffa9d6cdf", - "md5": "be5cf855a19b76feb28468e5b46145b7", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2008 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/infback9/README", - "type": "file", - "name": "README", - "base_name": "README", - "extension": "", - "date": "2003-09-09", - "size": 51, - "sha1": "b3905a8a31f7c61114b5fa6e203682b250e029d6", - "md5": "84ff1d06483d3da2af928cddcab88a1b", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/inflate86/inffas86.c", - "type": "file", - "name": "inffas86.c", - "base_name": "inffas86", - "extension": ".c", - "date": "2010-03-13", - "size": 40608, - "sha1": "d9dfc1538fb2bf1daef2fec42e68472ede564abc", - "md5": "06aaf02bb8b5a73503774d78760b191f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 5, - "end_line": 5, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2003 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 3, - "end_line": 5 - }, - { - "statements": [ - "Copyright (c) 2003 Chris Anderson " - ], - "holders": [ - "Chris Anderson" - ], - "authors": [], - "start_line": 7, - "end_line": 8 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/inflate86/inffast.S", - "type": "file", - "name": "inffast.S", - "base_name": "inffast", - "extension": ".S", - "date": "2004-10-21", - "size": 42842, - "sha1": "e5c30f2fc07023d7024571c9882383236d2a1cb0", - "md5": "56cc7e752a85f9d6489892aad226976b", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 6, - "end_line": 6, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2003 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 4, - "end_line": 6 - }, - { - "statements": [ - "Copyright (c) 2003 Chris Anderson " - ], - "holders": [ - "Chris Anderson" - ], - "authors": [], - "start_line": 8, - "end_line": 9 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/iostream/test.cpp", - "type": "file", - "name": "test.cpp", - "base_name": "test", - "extension": ".cpp", - "date": "1997-04-30", - "size": 526, - "sha1": "0074186cc98585f48eb8d18c2be887955238b741", - "md5": "a20e40dae1e8b28ef2ec9ed98fdc8a03", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C++", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/iostream/zfstream.cpp", - "type": "file", - "name": "zfstream.cpp", - "base_name": "zfstream", - "extension": ".cpp", - "date": "2003-08-18", - "size": 5112, - "sha1": "a8f677a8e32a4923a8a57c61e60ecb899eca5cab", - "md5": "a73c28679044fdf0a8057c5193db8da0", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C++", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/iostream/zfstream.h", - "type": "file", - "name": "zfstream.h", - "base_name": "zfstream", - "extension": ".h", - "date": "2003-08-18", - "size": 2467, - "sha1": "57f03c37ca952cec5e58c827995365c18c728285", - "md5": "93f90ecc4d5299d820c3da08f7c7e7d2", - "files_count": null, - "mime_type": "text/x-c++", - "file_type": "C++ source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/iostream2/zstream.h", - "type": "file", - "name": "zstream.h", - "base_name": "zstream", - "extension": ".h", - "date": "1998-01-19", - "size": 9283, - "sha1": "fca4540d490fff36bb90fd801cf9cd8fc695bb17", - "md5": "a980b61c1e8be68d5cdb1236ba6b43e7", - "files_count": null, - "mime_type": "text/x-c++", - "file_type": "C++ source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "cmr-no", - "score": 100.0, - "short_name": "CMR License", - "category": "Permissive", - "owner": "CMR - Christian Michelsen Research AS", - "homepage_url": "", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:cmr-no", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 3, - "end_line": 15, - "matched_rule": { - "identifier": "cmr-no.LICENSE", - "license_choice": false, - "licenses": [ - "cmr-no" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1997 Christian Michelsen Research as Advanced Computing" - ], - "holders": [ - "Christian Michelsen Research", - "Advanced Computing" - ], - "authors": [], - "start_line": 3, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/iostream2/zstream_test.cpp", - "type": "file", - "name": "zstream_test.cpp", - "base_name": "zstream_test", - "extension": ".cpp", - "date": "1998-01-19", - "size": 711, - "sha1": "e18a6d55cbbd8b832f8d795530553467e5c74fcf", - "md5": "d32476bde4e6d5f889092fdff6f8cdb0", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C++", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/iostream3/README", - "type": "file", - "name": "README", - "base_name": "README", - "extension": "", - "date": "2003-06-11", - "size": 1490, - "sha1": "d4a3dfd7a48721d6e7d12da226855bab19f6e8c1", - "md5": "7ec7295bc3b6fe132dba702e0f1f8892", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "mit-open-group", - "score": 71.43, - "short_name": "MIT Open Group", - "category": "Permissive", - "owner": "Open Group", - "homepage_url": "", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit-open-group", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 26, - "end_line": 27, - "matched_rule": { - "identifier": "mit-open-group.LICENSE", - "license_choice": false, - "licenses": [ - "mit-open-group" - ] - } - } - ], - "copyrights": [ - { - "statements": [], - "holders": [], - "authors": [ - "Kevin Ruland" - ], - "start_line": 10, - "end_line": 13 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/iostream3/test.cc", - "type": "file", - "name": "test.cc", - "base_name": "test", - "extension": ".cc", - "date": "2003-06-11", - "size": 1490, - "sha1": "b81342fb774937c210f5718ad5783f1eed13f7a7", - "md5": "8e843c6f8614b260b153091edf9af3ec", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C++", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [], - "holders": [], - "authors": [ - "Ludwig Schwardt ", - "Kevin Ruland " - ], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/iostream3/TODO", - "type": "file", - "name": "TODO", - "base_name": "TODO", - "extension": "", - "date": "2003-06-11", - "size": 491, - "sha1": "c40d91b8e4051c4fac646e0213dee173e207bcee", - "md5": "06be56f0740f2a8dd9b9e04824709ad8", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/iostream3/zfstream.cc", - "type": "file", - "name": "zfstream.cc", - "base_name": "zfstream", - "extension": ".cc", - "date": "2003-06-11", - "size": 13447, - "sha1": "19b83e921e89a638ebf978ca2beea7aefd78f9c2", - "md5": "dda5e85498fe3936fabd955b5504c74e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C++", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [], - "holders": [], - "authors": [ - "Ludwig Schwardt ", - "Kevin Ruland " - ], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/iostream3/zfstream.h", - "type": "file", - "name": "zfstream.h", - "base_name": "zfstream", - "extension": ".h", - "date": "2003-06-10", - "size": 12240, - "sha1": "351a3f5bfb93196701cc86b27db866a18ca54105", - "md5": "938f58c179fabf6ff9ffb85395ada81f", - "files_count": null, - "mime_type": "text/x-c++", - "file_type": "C++ source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [], - "holders": [], - "authors": [ - "Ludwig Schwardt ", - "Kevin Ruland " - ], - "start_line": 4, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/masmx64/bld_ml64.bat", - "type": "file", - "name": "bld_ml64.bat", - "base_name": "bld_ml64", - "extension": ".bat", - "date": "2005-02-06", - "size": 86, - "sha1": "1d723acf46ecfb6e16922ea55309cee9c77b9d49", - "md5": "94027d9beeb5a59503ac3978f9999e90", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Batchfile", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/masmx64/gvmat64.asm", - "type": "file", - "name": "gvmat64.asm", - "base_name": "gvmat64", - "extension": ".asm", - "date": "2010-03-02", - "size": 16443, - "sha1": "3c72c7b7f6c82e72b25a700eebccd0a987e7ba7b", - "md5": "43cb3b368ada48e0ca4608ddb7df69e6", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "NASM", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 90.54, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 11, - "end_line": 30, - "matched_rule": { - "identifier": "zlib_4.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2010 Jean-loup Gailly, Brian Raiter and Gilles Vollant." - ], - "holders": [ - "Jean-loup Gailly, Brian Raiter and Gilles Vollant." - ], - "authors": [], - "start_line": 7, - "end_line": 8 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Gilles Vollant" - ], - "start_line": 10, - "end_line": 11 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/masmx64/inffas8664.c", - "type": "file", - "name": "inffas8664.c", - "base_name": "inffas8664", - "extension": ".c", - "date": "2010-02-24", - "size": 7577, - "sha1": "a179f3e1a04b5db58eaf6fcc473567794e0391f8", - "md5": "755094d8835608c4652ca43a44af47ec", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 5, - "end_line": 5, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2003 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 4, - "end_line": 5 - }, - { - "statements": [ - "Copyright (c) 2003 Chris Anderson " - ], - "holders": [ - "Chris Anderson" - ], - "authors": [], - "start_line": 7, - "end_line": 8 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/masmx64/inffasx64.asm", - "type": "file", - "name": "inffasx64.asm", - "base_name": "inffasx64", - "extension": ".asm", - "date": "2010-03-02", - "size": 10583, - "sha1": "249b0329964e35481e8e6217220f474e3076d35a", - "md5": "9a1aeac37f1a15c0ef1fd68f10d24b3d", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "NASM", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/masmx64/readme.txt", - "type": "file", - "name": "readme.txt", - "base_name": "readme", - "extension": ".txt", - "date": "2010-03-28", - "size": 1237, - "sha1": "3f2e049fdd6fc4c914a0d9a099dfe735cd0e3b86", - "md5": "81c1080ed3661200c166e00394703f94", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [], - "holders": [], - "authors": [ - "Gilles Vollant (2005)" - ], - "start_line": 7, - "end_line": 8 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Chris Anderson" - ], - "start_line": 10, - "end_line": 11 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/masmx86/bld_ml32.bat", - "type": "file", - "name": "bld_ml32.bat", - "base_name": "bld_ml32", - "extension": ".bat", - "date": "2010-03-02", - "size": 92, - "sha1": "d2bcdd2fcb5e43ee260f510c25cf2b98318e9b0c", - "md5": "b71c12c57e5a63630a759e728e92668e", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Batchfile", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/masmx86/inffas32.asm", - "type": "file", - "name": "inffas32.asm", - "base_name": "inffas32", - "extension": ".asm", - "date": "2011-09-10", - "size": 16392, - "sha1": "6f42ac182d48c31346bb6dc04ab74f85157eb0b9", - "md5": "65a7df71a9aa477681e9559c779db941", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "NASM", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 6, - "end_line": 6, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2003 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 5, - "end_line": 6 - }, - { - "statements": [ - "Copyright (c) 2003 Chris Anderson " - ], - "holders": [ - "Chris Anderson" - ], - "authors": [], - "start_line": 8, - "end_line": 9 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/masmx86/match686.asm", - "type": "file", - "name": "match686.asm", - "base_name": "match686", - "extension": ".asm", - "date": "2011-09-10", - "size": 15825, - "sha1": "34529073d91211b48f2d8d6cad58202f50cb2047", - "md5": "84c3c6d7025dfd97ad53b9dd93768f54", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "NASM", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 100.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 168, - "end_line": 182, - "matched_rule": { - "identifier": "zlib.LICENSE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-1996 Jean-loup Gailly, Brian Raiter and Gilles Vollant." - ], - "holders": [ - "Jean-loup Gailly, Brian Raiter and Gilles Vollant." - ], - "authors": [ - "Gilles Vollant" - ], - "start_line": 1, - "end_line": 5 - }, - { - "statements": [ - "Copyright (c) 1998 Brian Raiter " - ], - "holders": [ - "Brian Raiter" - ], - "authors": [], - "start_line": 163, - "end_line": 165 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/masmx86/readme.txt", - "type": "file", - "name": "readme.txt", - "base_name": "readme", - "extension": ".txt", - "date": "2010-03-28", - "size": 873, - "sha1": "287dd9febd8dc4b56b07ca84e4cfcf90d21dc09d", - "md5": "a809d4d52fc0a9d792b0d4e3c557836c", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/minizip/configure.ac", - "type": "file", - "name": "configure.ac", - "base_name": "configure", - "extension": ".ac", - "date": "2017-01-15", - "size": 787, - "sha1": "9f3a1689b5b848b0b21035783601b97155a0a691", - "md5": "41b1495a0615dc17dbc5f4c74941fc63", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/minizip/crypt.h", - "type": "file", - "name": "crypt.h", - "base_name": "crypt", - "extension": ".h", - "date": "2013-02-24", - "size": 4735, - "sha1": "94f289e1b0403b01289b10c6b32ed7d1471fa0ca", - "md5": "6e72c46776f0db175ec8f15144a3c250", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1998-2005 Gilles Vollant" - ], - "holders": [ - "Gilles Vollant" - ], - "authors": [], - "start_line": 6, - "end_line": 6 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/minizip/ioapi.c", - "type": "file", - "name": "ioapi.c", - "base_name": "ioapi", - "extension": ".c", - "date": "2012-01-21", - "size": 8225, - "sha1": "2846a21ba725da90aa3a67024d8107daa793f5f7", - "md5": "e8a6cc43207a37d631d9e90bbec6e6ed", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1998-2010 Gilles Vollant" - ], - "holders": [ - "Gilles Vollant" - ], - "authors": [], - "start_line": 4, - "end_line": 4 - }, - { - "statements": [ - "Copyright (c) 2009-2010 Mathias Svensson http://result42.com" - ], - "holders": [ - "Mathias Svensson", - "http://result42.com" - ], - "authors": [], - "start_line": 6, - "end_line": 7 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/minizip/ioapi.h", - "type": "file", - "name": "ioapi.h", - "base_name": "ioapi", - "extension": ".h", - "date": "2012-01-17", - "size": 7051, - "sha1": "e71518ae9f172eab44a2d8f52b3f80b0552070d5", - "md5": "7d6c0585719ba47fd356795801befc6d", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1998-2010 Gilles Vollant" - ], - "holders": [ - "Gilles Vollant" - ], - "authors": [], - "start_line": 4, - "end_line": 4 - }, - { - "statements": [ - "Copyright (c) 2009-2010 Mathias Svensson http://result42.com" - ], - "holders": [ - "Mathias Svensson", - "http://result42.com" - ], - "authors": [], - "start_line": 6, - "end_line": 7 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/minizip/iowin32.c", - "type": "file", - "name": "iowin32.c", - "base_name": "iowin32", - "extension": ".c", - "date": "2013-08-04", - "size": 14223, - "sha1": "ca25851a0d1dfc989aceb2461dd2d5ec88649b8d", - "md5": "840ce05a6f75ee1683460b9873b120b6", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1998-2010 Gilles Vollant" - ], - "holders": [ - "Gilles Vollant" - ], - "authors": [], - "start_line": 5, - "end_line": 5 - }, - { - "statements": [ - "Copyright (c) 2009-2010 Mathias Svensson http://result42.com" - ], - "holders": [ - "Mathias Svensson", - "http://result42.com" - ], - "authors": [], - "start_line": 7, - "end_line": 8 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/minizip/iowin32.h", - "type": "file", - "name": "iowin32.h", - "base_name": "iowin32", - "extension": ".h", - "date": "2010-02-15", - "size": 851, - "sha1": "4fedf239afafc20e420c5fec678dba91c1dd0074", - "md5": "818e2950cc00d787eaa9b710007dc53f", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1998-2010 Gilles Vollant" - ], - "holders": [ - "Gilles Vollant" - ], - "authors": [], - "start_line": 5, - "end_line": 5 - }, - { - "statements": [ - "Copyright (c) 2009-2010 Mathias Svensson http://result42.com" - ], - "holders": [ - "Mathias Svensson", - "http://result42.com" - ], - "authors": [], - "start_line": 7, - "end_line": 8 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/minizip/Makefile", - "type": "file", - "name": "Makefile", - "base_name": "Makefile", - "extension": "", - "date": "2010-01-04", - "size": 457, - "sha1": "b1b85a0f99bf296c58326a80bc0bf220080778cd", - "md5": "064c9424ffab4af58c685140bb0fc3a0", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/minizip/Makefile.am", - "type": "file", - "name": "Makefile.am", - "base_name": "Makefile", - "extension": ".am", - "date": "2012-03-27", - "size": 818, - "sha1": "f978d26b0069ef66a560bcba8fd204ed70026f2a", - "md5": "3a50713bdffd399cba168843314850f4", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/minizip/make_vms.com", - "type": "file", - "name": "make_vms.com", - "base_name": "make_vms", - "extension": ".com", - "date": "2010-02-15", - "size": 901, - "sha1": "79d9e7c5d124fbcf79bff4509b51c09600b33a34", - "md5": "7db484a6aa910e703838859f33867d02", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/minizip/miniunz.c", - "type": "file", - "name": "miniunz.c", - "base_name": "miniunz", - "extension": ".c", - "date": "2010-07-18", - "size": 17763, - "sha1": "54e7b5392ee6600c91c9c423561941a571aaf715", - "md5": "254fe0695464d4cbbaa1fdc0c83c6a3c", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1998-2010 Gilles Vollant" - ], - "holders": [ - "Gilles Vollant" - ], - "authors": [], - "start_line": 6, - "end_line": 6 - }, - { - "statements": [ - "Copyright (c) 2007-2008 Even Rouault" - ], - "holders": [ - "Even Rouault" - ], - "authors": [], - "start_line": 8, - "end_line": 9 - }, - { - "statements": [ - "Copyright (c) 2009-2010 Mathias Svensson http://result42.com" - ], - "holders": [ - "Mathias Svensson", - "http://result42.com" - ], - "authors": [], - "start_line": 11, - "end_line": 12 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Gilles Vollant" - ], - "start_line": 190, - "end_line": 191 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/minizip/miniunzip.1", - "type": "file", - "name": "miniunzip.1", - "base_name": "miniunzip", - "extension": ".1", - "date": "2013-03-24", - "size": 1861, - "sha1": "e925714d46251f192d3266ef4a4cb64d292eb787", - "md5": "1f4ccb34373f0b46ae4fa7f3c731ae3b", - "files_count": null, - "mime_type": "text/troff", - "file_type": "troff or preprocessor input, ASCII text", - "programming_language": "Groff", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [], - "holders": [], - "authors": [ - "Gilles Vollant.", - "Mark Brown ", - "Dirk Eddelbuettel " - ], - "start_line": 59, - "end_line": 63 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/minizip/minizip.1", - "type": "file", - "name": "minizip.1", - "base_name": "minizip", - "extension": ".1", - "date": "2013-03-24", - "size": 1462, - "sha1": "17a13c717cd030c037a407f59d0d14d2c25e4e05", - "md5": "c7758789cc7e9e99f07d0e758475ea28", - "files_count": null, - "mime_type": "text/troff", - "file_type": "troff or preprocessor input, ASCII text", - "programming_language": "Groff", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [], - "holders": [], - "authors": [ - "Gilles Vollant.", - "Mark Brown " - ], - "start_line": 42, - "end_line": 45 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/minizip/minizip.c", - "type": "file", - "name": "minizip.c", - "base_name": "minizip", - "extension": ".c", - "date": "2012-01-21", - "size": 15034, - "sha1": "f47c6866b347bfff1a54c680b6c393d7c02e1d8d", - "md5": "e2a4a0c1cad4ceb1f77fb3b7e813bb35", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1998-2010 Gilles Vollant" - ], - "holders": [ - "Gilles Vollant" - ], - "authors": [], - "start_line": 6, - "end_line": 6 - }, - { - "statements": [ - "Copyright (c) 2007-2008 Even Rouault" - ], - "holders": [ - "Even Rouault" - ], - "authors": [], - "start_line": 8, - "end_line": 9 - }, - { - "statements": [ - "Copyright (c) 2009-2010 Mathias Svensson http://result42.com" - ], - "holders": [ - "Mathias Svensson", - "http://result42.com" - ], - "authors": [], - "start_line": 11, - "end_line": 12 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Gilles Vollant" - ], - "start_line": 168, - "end_line": 169 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/minizip/minizip.pc.in", - "type": "file", - "name": "minizip.pc.in", - "base_name": "minizip.pc", - "extension": ".in", - "date": "2011-11-13", - "size": 263, - "sha1": "6a19e706e976d4e7b300d7ae294973fa8278ab14", - "md5": "bcbe781316bdbd05584063176b90d672", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/minizip/MiniZip64_Changes.txt", - "type": "file", - "name": "MiniZip64_Changes.txt", - "base_name": "MiniZip64_Changes", - "extension": ".txt", - "date": "2010-02-15", - "size": 109, - "sha1": "cb10d2af06d59532c6d462ab0dbd2b79c55a5834", - "md5": "ec302a2b5e19af31263ce77260dd49d0", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/minizip/MiniZip64_info.txt", - "type": "file", - "name": "MiniZip64_info.txt", - "base_name": "MiniZip64_info", - "extension": ".txt", - "date": "2010-02-15", - "size": 3048, - "sha1": "e1f5511bbdf9715bb2f18e4d24924cca3275fb24", - "md5": "ab61e7d58c5c7114a6c531ce36ccc3e5", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 100.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 55, - "end_line": 71, - "matched_rule": { - "identifier": "zlib_11.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1998-2010 - by Gilles Vollant" - ], - "holders": [ - "Gilles Vollant" - ], - "authors": [], - "start_line": 1, - "end_line": 1 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Even Rouault" - ], - "start_line": 33, - "end_line": 35 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/minizip/mztools.c", - "type": "file", - "name": "mztools.c", - "base_name": "mztools", - "extension": ".c", - "date": "2012-01-21", - "size": 8146, - "sha1": "0f6dad6443b0f347ac6b17563014f50c7b4fd17f", - "md5": "174c6f2a32dad5023616fc45855d8c59", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/minizip/mztools.h", - "type": "file", - "name": "mztools.h", - "base_name": "mztools", - "extension": ".h", - "date": "2012-01-21", - "size": 708, - "sha1": "907243f7cea46d38ad12f6a6d6e01adb4d74f1b3", - "md5": "7caac7503f8f002d61e0f0e5b7f33bc6", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/minizip/unzip.c", - "type": "file", - "name": "unzip.c", - "base_name": "unzip", - "extension": ".c", - "date": "2016-10-30", - "size": 71055, - "sha1": "279d344d1b214a74bc98409dffb69047e6887220", - "md5": "e6ee69414e1309f0669ae661ca56a7b3", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "info-zip-2009-01", - "score": 45.0, - "short_name": "Info-Zip License 2009-01", - "category": "Permissive", - "owner": "info-zip", - "homepage_url": "http://www.info-zip.org/", - "text_url": "ftp://ftp.info-zip.org/pub/infozip/license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:info-zip-2009-01", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 26, - "end_line": 26, - "matched_rule": { - "identifier": "info-zip-2009-01_2.RULE", - "license_choice": false, - "licenses": [ - "info-zip-2009-01" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1998-2010 Gilles Vollant" - ], - "holders": [ - "Gilles Vollant" - ], - "authors": [], - "start_line": 5, - "end_line": 5 - }, - { - "statements": [ - "Copyright (c) 2007-2008 Even Rouault" - ], - "holders": [ - "Even Rouault" - ], - "authors": [], - "start_line": 7, - "end_line": 8 - }, - { - "statements": [ - "Copyright (c) 2009-2010 Mathias Svensson http://result42.com" - ], - "holders": [ - "Mathias Svensson", - "http://result42.com" - ], - "authors": [], - "start_line": 10, - "end_line": 11 - }, - { - "statements": [ - "Copyright (c) 1990-2000 Info-ZIP." - ], - "holders": [], - "authors": [], - "start_line": 21, - "end_line": 21 - }, - { - "statements": [ - "Copyright (c) 2007-2008 Even Rouault" - ], - "holders": [ - "Even Rouault" - ], - "authors": [], - "start_line": 49, - "end_line": 49 - }, - { - "statements": [ - "Copyright (c) 1998 - 2010 Gilles Vollant, Even Rouault, Mathias Svensson" - ], - "holders": [ - "Gilles Vollant, Even Rouault, Mathias Svensson" - ], - "authors": [], - "start_line": 62, - "end_line": 62 - }, - { - "statements": [ - "Copyright 1998-2004 Gilles Vollant" - ], - "holders": [ - "Gilles Vollant" - ], - "authors": [], - "start_line": 122, - "end_line": 123 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/minizip/unzip.h", - "type": "file", - "name": "unzip.h", - "base_name": "unzip", - "extension": ".h", - "date": "2012-07-08", - "size": 16352, - "sha1": "4236476513b299f00f9637f7ad3e3631ebdec2b9", - "md5": "11ae6a9d654c95c47da55fe16772a1e5", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 100.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 17, - "end_line": 33, - "matched_rule": { - "identifier": "zlib_11.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1998-2010 Gilles Vollant" - ], - "holders": [ - "Gilles Vollant" - ], - "authors": [], - "start_line": 5, - "end_line": 5 - }, - { - "statements": [ - "Copyright (c) 2007-2008 Even Rouault" - ], - "holders": [ - "Even Rouault" - ], - "authors": [], - "start_line": 7, - "end_line": 8 - }, - { - "statements": [ - "Copyright (c) 2009-2010 Mathias Svensson http://result42.com" - ], - "holders": [ - "Mathias Svensson", - "http://result42.com" - ], - "authors": [], - "start_line": 10, - "end_line": 11 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/minizip/zip.c", - "type": "file", - "name": "zip.c", - "base_name": "zip", - "extension": ".c", - "date": "2016-10-30", - "size": 65842, - "sha1": "885d9e822859c3b6a6f0656e3d0c8c97af6f6fe7", - "md5": "4fb98be7d5558dd0e8bb210c18f2ba1e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1998-2010 Gilles Vollant" - ], - "holders": [ - "Gilles Vollant" - ], - "authors": [], - "start_line": 5, - "end_line": 5 - }, - { - "statements": [ - "Copyright (c) 2009-2010 Mathias Svensson http://result42.com" - ], - "holders": [ - "Mathias Svensson", - "http://result42.com" - ], - "authors": [], - "start_line": 7, - "end_line": 8 - }, - { - "statements": [ - "Copyright 1998-2004 Gilles Vollant" - ], - "holders": [ - "Gilles Vollant" - ], - "authors": [], - "start_line": 97, - "end_line": 98 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/minizip/zip.h", - "type": "file", - "name": "zip.h", - "base_name": "zip", - "extension": ".h", - "date": "2010-02-15", - "size": 15366, - "sha1": "8cef828db4766401b91bec9b47ca56a3118705fc", - "md5": "e1495f151b00503a64aae7b375cc3b80", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 100.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 14, - "end_line": 30, - "matched_rule": { - "identifier": "zlib_11.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1998-2010 Gilles Vollant" - ], - "holders": [ - "Gilles Vollant" - ], - "authors": [], - "start_line": 5, - "end_line": 5 - }, - { - "statements": [ - "Copyright (c) 2009-2010 Mathias Svensson http://result42.com" - ], - "holders": [ - "Mathias Svensson", - "http://result42.com" - ], - "authors": [], - "start_line": 7, - "end_line": 8 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/pascal/example.pas", - "type": "file", - "name": "example.pas", - "base_name": "example", - "extension": ".pas", - "date": "2003-08-20", - "size": 15687, - "sha1": "51c42c32667ef6fc0b4b51867afac971fe11c15c", - "md5": "6e41517081b62c5045e67146c2b5c3ec", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": "Delphi", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - }, - { - "key": "see-license", - "score": 20.0, - "short_name": "See License mention", - "category": "Unknown License", - "owner": "Unspecified", - "homepage_url": "", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:see-license", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 7, - "end_line": 7, - "matched_rule": { - "identifier": "see-license_21.RULE", - "license_choice": false, - "licenses": [ - "see-license" - ] - } - }, - { - "key": "see-license", - "score": 20.0, - "short_name": "See License mention", - "category": "Unknown License", - "owner": "Unspecified", - "homepage_url": "", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:see-license", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 11, - "end_line": 11, - "matched_rule": { - "identifier": "see-license_21.RULE", - "license_choice": false, - "licenses": [ - "see-license" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2003 Jean-loup Gailly." - ], - "holders": [ - "Jean-loup Gailly." - ], - "authors": [], - "start_line": 1, - "end_line": 3 - }, - { - "statements": [ - "Copyright (c) 1998 by Jacques Nomssi Nzali." - ], - "holders": [ - "Jacques Nomssi Nzali." - ], - "authors": [], - "start_line": 5, - "end_line": 7 - }, - { - "statements": [ - "Copyright (c) 2003 by Cosmin Truta." - ], - "holders": [ - "Cosmin Truta." - ], - "authors": [], - "start_line": 9, - "end_line": 11 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/pascal/readme.txt", - "type": "file", - "name": "readme.txt", - "base_name": "readme", - "extension": ".txt", - "date": "2003-08-17", - "size": 3004, - "sha1": "c47cc3ccdb450bd0d3d1d0e6f52746a2c0ca8541", - "md5": "6f8616a2ea8e227457c9f191b4c71018", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 100.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 61, - "end_line": 75, - "matched_rule": { - "identifier": "zlib_variant.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2003 Jean-loup Gailly and Mark Adler.", - "Copyright (c) 1998 by Bob Dellaca.", - "Copyright (c) 2003 by Cosmin Truta." - ], - "holders": [ - "Jean-loup Gailly and Mark Adler.", - "Bob Dellaca.", - "Cosmin Truta." - ], - "authors": [], - "start_line": 51, - "end_line": 54 - }, - { - "statements": [ - "Copyright (c) 1995-2003 by Jean-loup Gailly.", - "Copyright (c) 1998,1999,2000 by Jacques Nomssi Nzali.", - "Copyright (c) 2003 by Cosmin Truta." - ], - "holders": [ - "Jean-loup Gailly.", - "Jacques Nomssi Nzali.", - "Cosmin Truta." - ], - "authors": [], - "start_line": 56, - "end_line": 59 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/pascal/zlibd32.mak", - "type": "file", - "name": "zlibd32.mak", - "base_name": "zlibd32", - "extension": ".mak", - "date": "2011-11-27", - "size": 2360, - "sha1": "ddf83b34d4c7d41ace39f96b5cb13fb390c8d2eb", - "md5": "b2cc80e48f2aa69be40b6f52ba3480c4", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/pascal/zlibpas.pas", - "type": "file", - "name": "zlibpas.pas", - "base_name": "zlibpas", - "extension": ".pas", - "date": "2017-01-15", - "size": 10127, - "sha1": "6366310dff32cfb18b9e950f8c530304a9fd83fa", - "md5": "026e00db1f7988e09ba4b6069adc3957", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": "Delphi", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "see-license", - "score": 20.0, - "short_name": "See License mention", - "category": "Unknown License", - "owner": "Unspecified", - "homepage_url": "", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:see-license", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 5, - "end_line": 5, - "matched_rule": { - "identifier": "see-license_21.RULE", - "license_choice": false, - "licenses": [ - "see-license" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2003 Cosmin Truta. Derived" - ], - "holders": [ - "Cosmin Truta. Derived" - ], - "authors": [], - "start_line": 3, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/puff/Makefile", - "type": "file", - "name": "Makefile", - "base_name": "Makefile", - "extension": "", - "date": "2010-04-26", - "size": 1899, - "sha1": "6c9c12d0e19be923abf86e2584a23a781d81cb06", - "md5": "82987a599277217cedc2ff78b2c3a63d", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/puff/puff.c", - "type": "file", - "name": "puff.c", - "base_name": "puff", - "extension": ".c", - "date": "2016-10-30", - "size": 37883, - "sha1": "3c31e70c07929fabd5b3454ad8da39e8492633f6", - "md5": "b34af8b5903cf6dcd5c9e665cfed84e1", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "see-license", - "score": 20.0, - "short_name": "See License mention", - "category": "Unknown License", - "owner": "Unspecified", - "homepage_url": "", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:see-license", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 4, - "matched_rule": { - "identifier": "see-license_21.RULE", - "license_choice": false, - "licenses": [ - "see-license" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002-2013 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 2, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/puff/puff.h", - "type": "file", - "name": "puff.h", - "base_name": "puff", - "extension": ".h", - "date": "2013-01-21", - "size": 1415, - "sha1": "ce8b988a404446fc8558b198d3cfeabcad6d16c5", - "md5": "7ecbeeb67e09a843961187673974f86d", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 100.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 5, - "end_line": 19, - "matched_rule": { - "identifier": "zlib_variant.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002-2013 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/puff/pufftest.c", - "type": "file", - "name": "pufftest.c", - "base_name": "pufftest", - "extension": ".c", - "date": "2013-01-21", - "size": 4917, - "sha1": "e2318f2de8c7355385dca2c9d9422500f4927fc8", - "md5": "897a1a43df17f320444e8d386fecf1c0", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "see-license", - "score": 20.0, - "short_name": "See License mention", - "category": "Unknown License", - "owner": "Unspecified", - "homepage_url": "", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:see-license", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 4, - "matched_rule": { - "identifier": "see-license_21.RULE", - "license_choice": false, - "licenses": [ - "see-license" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2002-2013 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 2, - "end_line": 5 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/puff/README", - "type": "file", - "name": "README", - "base_name": "README", - "extension": "", - "date": "2003-03-04", - "size": 3076, - "sha1": "8f68ce02019463af0813a0db20c98bfc8e3c2ef7", - "md5": "948659135181da512e6c37dd759d142d", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/puff/zeros.raw", - "type": "file", - "name": "zeros.raw", - "base_name": "zeros", - "extension": ".raw", - "date": "2010-04-23", - "size": 2517, - "sha1": "2477f0a2d20cfc6272b91fa36d45c90dcda386ab", - "md5": "ae1471955182e98038420cdd6a4ad028", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/testzlib/testzlib.c", - "type": "file", - "name": "testzlib.c", - "base_name": "testzlib", - "extension": ".c", - "date": "2013-02-24", - "size": 7643, - "sha1": "6833222dcd2b5ee1c7241f00efa6edfde4991ffa", - "md5": "9e59472f7750d8d727a5cbdf94d8ce2b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/testzlib/testzlib.txt", - "type": "file", - "name": "testzlib.txt", - "base_name": "testzlib", - "extension": ".txt", - "date": "2005-02-06", - "size": 205, - "sha1": "89f8964acc535861273f1f156a24ed2ac4cfa37a", - "md5": "9fc09497cd386635010c5b665cac77b4", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/untgz/Makefile", - "type": "file", - "name": "Makefile", - "base_name": "Makefile", - "extension": "", - "date": "2003-07-27", - "size": 234, - "sha1": "b31cf680ad6e873da3c897c6b123a5fde4cd5151", - "md5": "45070687ecca4a8953f666b91a4b54f4", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/untgz/Makefile.msc", - "type": "file", - "name": "Makefile.msc", - "base_name": "Makefile", - "extension": ".msc", - "date": "2003-07-27", - "size": 281, - "sha1": "3d3a312c38dd7e3316ddb553e894734f42d28205", - "md5": "d3be2a78c4fd759d1578b6d91f8430c1", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/untgz/untgz.c", - "type": "file", - "name": "untgz.c", - "base_name": "untgz", - "extension": ".c", - "date": "2004-03-07", - "size": 16542, - "sha1": "260f16a4110f43071b376af97c4119f5ecf902af", - "md5": "1ff457742eb3588db60fd059d56a5dd5", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [], - "holders": [], - "authors": [ - "Pedro A. Aranda Gutierrez ", - "Jean-loup Gailly ", - "Cosmin Truta " - ], - "start_line": 4, - "end_line": 6 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/readme.txt", - "type": "file", - "name": "readme.txt", - "base_name": "readme", - "extension": ".txt", - "date": "2017-01-15", - "size": 3109, - "sha1": "066affe7fd1e8a9e54ef08d63abee644bb821c03", - "md5": "59ccc97a1d79963cdec10a7005f21133", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc10", - "type": "directory", - "name": "vc10", - "base_name": "vc10", - "extension": "", - "date": null, - "size": 181885, - "sha1": null, - "md5": null, - "files_count": 15, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc11", - "type": "directory", - "name": "vc11", - "base_name": "vc11", - "extension": "", - "date": null, - "size": 171316, - "sha1": null, - "md5": null, - "files_count": 9, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc12", - "type": "directory", - "name": "vc12", - "base_name": "vc12", - "extension": "", - "date": null, - "size": 169549, - "sha1": null, - "md5": null, - "files_count": 9, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc14", - "type": "directory", - "name": "vc14", - "base_name": "vc14", - "extension": "", - "date": null, - "size": 169547, - "sha1": null, - "md5": null, - "files_count": 9, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc9", - "type": "directory", - "name": "vc9", - "base_name": "vc9", - "extension": "", - "date": null, - "size": 123961, - "sha1": null, - "md5": null, - "files_count": 9, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc10/miniunz.vcxproj", - "type": "file", - "name": "miniunz.vcxproj", - "base_name": "miniunz", - "extension": ".vcxproj", - "date": "2010-02-16", - "size": 18969, - "sha1": "70048ae1ef9a404d49ae943878fd30ddee54c121", - "md5": "fa427177a54ab86e4b126116f34ecf8a", - "files_count": null, - "mime_type": "application/xml", - "file_type": "XML 1.0 document, UTF-8 Unicode (with BOM) text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc10/miniunz.vcxproj.filters", - "type": "file", - "name": "miniunz.vcxproj.filters", - "base_name": "miniunz.vcxproj", - "extension": ".filters", - "date": "2010-02-16", - "size": 921, - "sha1": "320d0a38475bbfe13314956d0ac7927cb7d1f975", - "md5": "048091db0ef98c95b4674d4d4a46c964", - "files_count": null, - "mime_type": "application/xml", - "file_type": "XML 1.0 document, UTF-8 Unicode (with BOM) text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc10/minizip.vcxproj", - "type": "file", - "name": "minizip.vcxproj", - "base_name": "minizip", - "extension": ".vcxproj", - "date": "2010-02-16", - "size": 18549, - "sha1": "530a1f4869bfa4cedf0f878fff4480535bd5b1bf", - "md5": "5b6ea18f33d45f32c7c52f9b63c56d73", - "files_count": null, - "mime_type": "application/xml", - "file_type": "XML 1.0 document, UTF-8 Unicode (with BOM) text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc10/minizip.vcxproj.filters", - "type": "file", - "name": "minizip.vcxproj.filters", - "base_name": "minizip.vcxproj", - "extension": ".filters", - "date": "2010-02-16", - "size": 921, - "sha1": "21845c87ed7730c73605e936de851eaa23222f30", - "md5": "72131998544b1d1ce5c35fff7ae69db0", - "files_count": null, - "mime_type": "application/xml", - "file_type": "XML 1.0 document, UTF-8 Unicode (with BOM) text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc10/testzlib.vcxproj", - "type": "file", - "name": "testzlib.vcxproj", - "base_name": "testzlib", - "extension": ".vcxproj", - "date": "2010-03-02", - "size": 27312, - "sha1": "da5c9e1922fa655c534811676563df7c31fb36a7", - "md5": "0879c03e97afa7051526dd972718b475", - "files_count": null, - "mime_type": "application/xml", - "file_type": "XML 1.0 document, UTF-8 Unicode (with BOM) text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc10/testzlib.vcxproj.filters", - "type": "file", - "name": "testzlib.vcxproj.filters", - "base_name": "testzlib.vcxproj", - "extension": ".filters", - "date": "2010-03-02", - "size": 2139, - "sha1": "76e2f85e212116be3a0142703c2d68b09b9b79d3", - "md5": "02632e0bdde13c80630d75ad130af599", - "files_count": null, - "mime_type": "application/xml", - "file_type": "XML 1.0 document, UTF-8 Unicode (with BOM) text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc10/testzlibdll.vcxproj", - "type": "file", - "name": "testzlibdll.vcxproj", - "base_name": "testzlibdll", - "extension": ".vcxproj", - "date": "2012-03-04", - "size": 19022, - "sha1": "d3a849fce0bca235516932604c5c9bcbd2fce125", - "md5": "e6abb2e275cb6d056b0b49ffca125fc4", - "files_count": null, - "mime_type": "application/xml", - "file_type": "XML 1.0 document, UTF-8 Unicode (with BOM) text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc10/testzlibdll.vcxproj.filters", - "type": "file", - "name": "testzlibdll.vcxproj.filters", - "base_name": "testzlibdll.vcxproj", - "extension": ".filters", - "date": "2010-02-16", - "size": 923, - "sha1": "d14872425639811364dc265fce04045bcdb11ead", - "md5": "35e42b8be068e38e6642a3bde8d20299", - "files_count": null, - "mime_type": "application/xml", - "file_type": "XML 1.0 document, UTF-8 Unicode (with BOM) text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc10/zlib.rc", - "type": "file", - "name": "zlib.rc", - "base_name": "zlib", - "extension": ".rc", - "date": "2017-01-15", - "size": 957, - "sha1": "e67b5d0e28bda140346388d087b2c13cf7680a1f", - "md5": "7e770b6d4d11f5a912458d5f5cd8e7b8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [ - "(c) 1995-2017 Jean-loup Gailly & Mark Adler" - ], - "holders": [ - "Jean-loup Gailly & Mark Adler" - ], - "authors": [], - "start_line": 23, - "end_line": 27 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc10/zlibstat.vcxproj", - "type": "file", - "name": "zlibstat.vcxproj", - "base_name": "zlibstat", - "extension": ".vcxproj", - "date": "2013-02-24", - "size": 28012, - "sha1": "2dfa4c3f4422c58c7e8d142c7fc9c4c11191f705", - "md5": "002fa9b3f7f92ca6c8558474d291df19", - "files_count": null, - "mime_type": "application/xml", - "file_type": "XML 1.0 document, UTF-8 Unicode (with BOM) text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc10/zlibstat.vcxproj.filters", - "type": "file", - "name": "zlibstat.vcxproj.filters", - "base_name": "zlibstat.vcxproj", - "extension": ".filters", - "date": "2010-03-02", - "size": 2514, - "sha1": "e9fa98820edf15ae1eedc2101f30c3cef2d935e8", - "md5": "fa684ecb9b7ddd26f01523bce078b18f", - "files_count": null, - "mime_type": "application/xml", - "file_type": "XML 1.0 document, UTF-8 Unicode (with BOM) text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc10/zlibvc.def", - "type": "file", - "name": "zlibvc.def", - "base_name": "zlibvc", - "extension": ".def", - "date": "2017-01-01", - "size": 7211, - "sha1": "e869e83b39cc26f7323352081f777b3e72a53c93", - "md5": "2271100b7757c4693b11cf0774e4db5e", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Modula-2", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc10/zlibvc.sln", - "type": "file", - "name": "zlibvc.sln", - "base_name": "zlibvc", - "extension": ".sln", - "date": "2010-02-24", - "size": 10153, - "sha1": "4f2ed833f8ff01bdfb27c65d88de1957aea598d3", - "md5": "0346af46dff2a59b22e51aaf67930201", - "files_count": null, - "mime_type": "text/plain", - "file_type": "UTF-8 Unicode (with BOM) text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc10/zlibvc.vcxproj", - "type": "file", - "name": "zlibvc.vcxproj", - "base_name": "zlibvc", - "extension": ".vcxproj", - "date": "2013-02-24", - "size": 40243, - "sha1": "ae00729a7c8f1041498b6fe354aff1713c7fe325", - "md5": "ca5ae9c4b8558f8c4d303b46e694a8f2", - "files_count": null, - "mime_type": "application/xml", - "file_type": "XML 1.0 document, UTF-8 Unicode (with BOM) text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc10/zlibvc.vcxproj.filters", - "type": "file", - "name": "zlibvc.vcxproj.filters", - "base_name": "zlibvc.vcxproj", - "extension": ".filters", - "date": "2010-03-02", - "size": 4039, - "sha1": "79d4ef79d8a67a831264e1542d13070619c6eade", - "md5": "16267b153514d3f39d1b7c48527372ee", - "files_count": null, - "mime_type": "application/xml", - "file_type": "XML 1.0 document, UTF-8 Unicode (with BOM) text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc11/miniunz.vcxproj", - "type": "file", - "name": "miniunz.vcxproj", - "base_name": "miniunz", - "extension": ".vcxproj", - "date": "2013-04-28", - "size": 19150, - "sha1": "1b465b8db5b2651282cc0da57a27f76801a05cbc", - "md5": "86f17e0090299a0470d5ee59073406db", - "files_count": null, - "mime_type": "application/xml", - "file_type": "XML 1.0 document, UTF-8 Unicode (with BOM) text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc11/minizip.vcxproj", - "type": "file", - "name": "minizip.vcxproj", - "base_name": "minizip", - "extension": ".vcxproj", - "date": "2013-04-28", - "size": 18730, - "sha1": "eafb9f2fa4f89d876f3819e756799b69cb9b2e1a", - "md5": "c4b2a63a1f59196dc1b105c89dcb4816", - "files_count": null, - "mime_type": "application/xml", - "file_type": "XML 1.0 document, UTF-8 Unicode (with BOM) text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc11/testzlib.vcxproj", - "type": "file", - "name": "testzlib.vcxproj", - "base_name": "testzlib", - "extension": ".vcxproj", - "date": "2013-04-28", - "size": 27583, - "sha1": "24acf8bef08c985c250f0eb555ad94f7e2f04846", - "md5": "33a7b27fe1d9aec556781db0c4ecb5bc", - "files_count": null, - "mime_type": "application/xml", - "file_type": "XML 1.0 document, UTF-8 Unicode (with BOM) text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc11/testzlibdll.vcxproj", - "type": "file", - "name": "testzlibdll.vcxproj", - "base_name": "testzlibdll", - "extension": ".vcxproj", - "date": "2013-04-28", - "size": 19203, - "sha1": "9c4618693842092678ae885ff0a44139c1f6a4ac", - "md5": "cd0082879b0e215569c605266a8afaa0", - "files_count": null, - "mime_type": "application/xml", - "file_type": "XML 1.0 document, UTF-8 Unicode (with BOM) text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc11/zlib.rc", - "type": "file", - "name": "zlib.rc", - "base_name": "zlib", - "extension": ".rc", - "date": "2017-01-15", - "size": 957, - "sha1": "e67b5d0e28bda140346388d087b2c13cf7680a1f", - "md5": "7e770b6d4d11f5a912458d5f5cd8e7b8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [ - "(c) 1995-2017 Jean-loup Gailly & Mark Adler" - ], - "holders": [ - "Jean-loup Gailly & Mark Adler" - ], - "authors": [], - "start_line": 23, - "end_line": 27 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc11/zlibstat.vcxproj", - "type": "file", - "name": "zlibstat.vcxproj", - "base_name": "zlibstat", - "extension": ".vcxproj", - "date": "2013-04-28", - "size": 27927, - "sha1": "223df1a7f2b79131c10230eb98d2112c93b9f977", - "md5": "68876762bd4a6a95a6caa2a9ea357de8", - "files_count": null, - "mime_type": "application/xml", - "file_type": "XML 1.0 document, UTF-8 Unicode (with BOM) text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc11/zlibvc.def", - "type": "file", - "name": "zlibvc.def", - "base_name": "zlibvc", - "extension": ".def", - "date": "2017-01-01", - "size": 7211, - "sha1": "e869e83b39cc26f7323352081f777b3e72a53c93", - "md5": "2271100b7757c4693b11cf0774e4db5e", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Modula-2", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc11/zlibvc.sln", - "type": "file", - "name": "zlibvc.sln", - "base_name": "zlibvc", - "extension": ".sln", - "date": "2013-04-28", - "size": 8539, - "sha1": "7fface057a73d5ad706203d3f6f1e37b59bce3b4", - "md5": "6f61e1b1973401a8d09a3883bc1d4ecd", - "files_count": null, - "mime_type": "text/plain", - "file_type": "UTF-8 Unicode (with BOM) text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc11/zlibvc.vcxproj", - "type": "file", - "name": "zlibvc.vcxproj", - "base_name": "zlibvc", - "extension": ".vcxproj", - "date": "2013-04-28", - "size": 42016, - "sha1": "947f29a61b08c158a960687a75b548769a5e1d32", - "md5": "67a8a72530d1797e2f4711115a19b3a2", - "files_count": null, - "mime_type": "application/xml", - "file_type": "XML 1.0 document, UTF-8 Unicode (with BOM) text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc12/miniunz.vcxproj", - "type": "file", - "name": "miniunz.vcxproj", - "base_name": "miniunz", - "extension": ".vcxproj", - "date": "2017-01-01", - "size": 18926, - "sha1": "78d7b8fa17322e2be5d6e36a6b09515e489ba97e", - "md5": "71cfe0a7366431ef50ac350f898e0a61", - "files_count": null, - "mime_type": "application/xml", - "file_type": "XML 1.0 document, 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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc12/minizip.vcxproj", - "type": "file", - "name": "minizip.vcxproj", - "base_name": "minizip", - "extension": ".vcxproj", - "date": "2017-01-01", - "size": 18509, - "sha1": "701b614bbab070519b0837758c69aa0443804eb7", - "md5": "61959b86fba2f58c84bc9a441ad0cbe0", - "files_count": null, - "mime_type": "application/xml", - "file_type": "XML 1.0 document, 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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc12/testzlib.vcxproj", - "type": "file", - "name": "testzlib.vcxproj", - "base_name": "testzlib", - "extension": ".vcxproj", - "date": "2017-01-01", - "size": 27366, - "sha1": "fec99dd6b063416ef0a48662adad3a421c1a049a", - "md5": "fa8301e3d625a36575542248d14c94e3", - "files_count": null, - "mime_type": "application/xml", - "file_type": "XML 1.0 document, 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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc12/testzlibdll.vcxproj", - "type": "file", - "name": "testzlibdll.vcxproj", - "base_name": "testzlibdll", - "extension": ".vcxproj", - "date": "2017-01-01", - "size": 18979, - "sha1": "0e1bb13edb71d4e1857aa02e1075742fa726490a", - "md5": "d3121fbcce2ad9726a34ab2992c02b18", - "files_count": null, - "mime_type": "application/xml", - "file_type": "XML 1.0 document, 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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc12/zlib.rc", - "type": "file", - "name": "zlib.rc", - "base_name": "zlib", - "extension": ".rc", - "date": "2017-01-15", - "size": 925, - "sha1": "2d3f0ee9f7cc18feff62eb78f064f4b4f45415d9", - "md5": "e3255b9ba8a2e6772034a7f2779547dd", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [ - "(c) 1995-2017 Jean-loup Gailly & Mark Adler" - ], - "holders": [ - "Jean-loup Gailly & Mark Adler" - ], - "authors": [], - "start_line": 23, - "end_line": 27 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc12/zlibstat.vcxproj", - "type": "file", - "name": "zlibstat.vcxproj", - "base_name": "zlibstat", - "extension": ".vcxproj", - "date": "2017-01-01", - "size": 27597, - "sha1": "38e7d39967856e2a95661f9b5758d93085178d3d", - "md5": "f34ae747f6d75f8417ffb70a71c102a3", - "files_count": null, - "mime_type": "application/xml", - "file_type": "XML 1.0 document, 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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc12/zlibvc.def", - "type": "file", - "name": "zlibvc.def", - "base_name": "zlibvc", - "extension": ".def", - "date": "2017-01-01", - "size": 7211, - "sha1": "e869e83b39cc26f7323352081f777b3e72a53c93", - "md5": "2271100b7757c4693b11cf0774e4db5e", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Modula-2", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc12/zlibvc.sln", - "type": "file", - "name": "zlibvc.sln", - "base_name": "zlibvc", - "extension": ".sln", - "date": "2017-01-01", - "size": 8499, - "sha1": "17e1c07bb0a9d02fc3b1a1ec9c4b1d6c5f2ac0a4", - "md5": "ab4ae9b904012b1566ee5a307613d2aa", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc12/zlibvc.vcxproj", - "type": "file", - "name": "zlibvc.vcxproj", - "base_name": "zlibvc", - "extension": ".vcxproj", - "date": "2017-01-01", - "size": 41537, - "sha1": "eca6032321210ba1df7f8743f9fc41c0ccaa1a02", - "md5": "5b779ef8ec6c75419d1fee9a6ebaa954", - "files_count": null, - "mime_type": "application/xml", - "file_type": "XML 1.0 document, 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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc14/miniunz.vcxproj", - "type": "file", - "name": "miniunz.vcxproj", - "base_name": "miniunz", - "extension": ".vcxproj", - "date": "2017-01-01", - "size": 18926, - "sha1": "453b68e1108b382b4d755c9b08a5af37f538d3ba", - "md5": "c1bf6aeed421962812df7bc8d9c42632", - "files_count": null, - "mime_type": "application/xml", - "file_type": "XML 1.0 document, 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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc14/minizip.vcxproj", - "type": "file", - "name": "minizip.vcxproj", - "base_name": "minizip", - "extension": ".vcxproj", - "date": "2017-01-01", - "size": 18509, - "sha1": "f55c663c7ecaea0aa8c53523f887f680388c2cd1", - "md5": "1f9392b57090712e57df751932b9cbe6", - "files_count": null, - "mime_type": "application/xml", - "file_type": "XML 1.0 document, 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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc14/testzlib.vcxproj", - "type": "file", - "name": "testzlib.vcxproj", - "base_name": "testzlib", - "extension": ".vcxproj", - "date": "2017-01-01", - "size": 27366, - "sha1": "3c61f30ff4ef922fd1c14484bb31c8e52e9b9305", - "md5": "b3fc89a41918b28d8757a1d25f0ce629", - "files_count": null, - "mime_type": "application/xml", - "file_type": "XML 1.0 document, 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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc14/testzlibdll.vcxproj", - "type": "file", - "name": "testzlibdll.vcxproj", - "base_name": "testzlibdll", - "extension": ".vcxproj", - "date": "2017-01-01", - "size": 18979, - "sha1": "63b622b44827ded02a631bec50e4d1f772f4b799", - "md5": "b0e3975c1939940c9566847afc003a9c", - "files_count": null, - "mime_type": "application/xml", - "file_type": "XML 1.0 document, 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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc14/zlib.rc", - "type": "file", - "name": "zlib.rc", - "base_name": "zlib", - "extension": ".rc", - "date": "2017-01-15", - "size": 925, - "sha1": "2d3f0ee9f7cc18feff62eb78f064f4b4f45415d9", - "md5": "e3255b9ba8a2e6772034a7f2779547dd", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [ - "(c) 1995-2017 Jean-loup Gailly & Mark Adler" - ], - "holders": [ - "Jean-loup Gailly & Mark Adler" - ], - "authors": [], - "start_line": 23, - "end_line": 27 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc14/zlibstat.vcxproj", - "type": "file", - "name": "zlibstat.vcxproj", - "base_name": "zlibstat", - "extension": ".vcxproj", - "date": "2017-01-01", - "size": 27597, - "sha1": "20ee6f367909b5b555c0d76476049b21ec46c2f5", - "md5": "efcc2393089500f1776f71fd5db5cc86", - "files_count": null, - "mime_type": "application/xml", - "file_type": "XML 1.0 document, 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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc14/zlibvc.def", - "type": "file", - "name": "zlibvc.def", - "base_name": "zlibvc", - "extension": ".def", - "date": "2017-01-01", - "size": 7211, - "sha1": "e869e83b39cc26f7323352081f777b3e72a53c93", - "md5": "2271100b7757c4693b11cf0774e4db5e", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Modula-2", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc14/zlibvc.sln", - "type": "file", - "name": "zlibvc.sln", - "base_name": "zlibvc", - "extension": ".sln", - "date": "2017-01-01", - "size": 8497, - "sha1": "5a492dc0bb0a953753f6cff5dd005b3f17f8ad95", - "md5": "5198a1fde5c1e369764dcba9a08ee102", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc14/zlibvc.vcxproj", - "type": "file", - "name": "zlibvc.vcxproj", - "base_name": "zlibvc", - "extension": ".vcxproj", - "date": "2017-01-01", - "size": 41537, - "sha1": "89afb166f7b1e1c5b1f97c495f27e2167b5cc0da", - "md5": "68f9d89ce57252e0a4d2975fd1cc862f", - "files_count": null, - "mime_type": "application/xml", - "file_type": "XML 1.0 document, 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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc9/miniunz.vcproj", - "type": "file", - "name": "miniunz.vcproj", - "base_name": "miniunz", - "extension": ".vcproj", - "date": "2010-02-16", - "size": 12939, - "sha1": "40de34c1a26fe1fa14efb992d217c84bacea7ef1", - "md5": "39acac8b09fad25c73403d812887cfc9", - "files_count": null, - "mime_type": "application/xml", - "file_type": "XML document text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc9/minizip.vcproj", - "type": "file", - "name": "minizip.vcproj", - "base_name": "minizip", - "extension": ".vcproj", - "date": "2010-02-16", - "size": 12753, - "sha1": "88d892514b4afba218dec574ea241904d263e29e", - "md5": "a70e977e002d0df86a123ba7b02bed4d", - "files_count": null, - "mime_type": "application/xml", - "file_type": "XML document text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc9/testzlib.vcproj", - "type": "file", - "name": "testzlib.vcproj", - "base_name": "testzlib", - "extension": ".vcproj", - "date": "2010-03-02", - "size": 18951, - "sha1": "42b4b89271adf184abb594d092bf4ae4c2431ac9", - "md5": "a2ab8c8ebdca681348ab0d721f4f0ea9", - "files_count": null, - "mime_type": "application/xml", - "file_type": "XML document text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc9/testzlibdll.vcproj", - "type": "file", - "name": "testzlibdll.vcproj", - "base_name": "testzlibdll", - "extension": ".vcproj", - "date": "2010-02-16", - "size": 12978, - "sha1": "086ea8214cfcb33f3512a847f3dfde6154a7137d", - "md5": "3bd3847ddb393360355d1012338c638e", - "files_count": null, - "mime_type": "application/xml", - "file_type": "XML document text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc9/zlib.rc", - "type": "file", - "name": "zlib.rc", - "base_name": "zlib", - "extension": ".rc", - "date": "2017-01-15", - "size": 957, - "sha1": "e67b5d0e28bda140346388d087b2c13cf7680a1f", - "md5": "7e770b6d4d11f5a912458d5f5cd8e7b8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [ - "(c) 1995-2017 Jean-loup Gailly & Mark Adler" - ], - "holders": [ - "Jean-loup Gailly & Mark Adler" - ], - "authors": [], - "start_line": 23, - "end_line": 27 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc9/zlibstat.vcproj", - "type": "file", - "name": "zlibstat.vcproj", - "base_name": "zlibstat", - "extension": ".vcproj", - "date": "2010-03-03", - "size": 19532, - "sha1": "235725a6f6285f12aa3ecc248b0afbcaeaa3367c", - "md5": "2324ada784731ab79fd384114d73c727", - "files_count": null, - "mime_type": "application/xml", - "file_type": "XML document text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc9/zlibvc.def", - "type": "file", - "name": "zlibvc.def", - "base_name": "zlibvc", - "extension": ".def", - "date": "2017-01-01", - "size": 7211, - "sha1": "e869e83b39cc26f7323352081f777b3e72a53c93", - "md5": "2271100b7757c4693b11cf0774e4db5e", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Modula-2", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc9/zlibvc.sln", - "type": "file", - "name": "zlibvc.sln", - "base_name": "zlibvc", - "extension": ".sln", - "date": "2010-02-24", - "size": 10612, - "sha1": "8b46b3778372dbb718fd0f00ff1ee55266b18892", - "md5": "b34a55b36004333a0bec3a5da1ff25a3", - "files_count": null, - "mime_type": "text/plain", - "file_type": "UTF-8 Unicode (with BOM) text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/contrib/vstudio/vc9/zlibvc.vcproj", - "type": "file", - "name": "zlibvc.vcproj", - "base_name": "zlibvc", - "extension": ".vcproj", - "date": "2010-03-03", - "size": 28028, - "sha1": "82379594550bf43deb4a5114d938ad8ca06fd763", - "md5": "f3fd4bfc77606539f961b0aee7e57c4f", - "files_count": null, - "mime_type": "application/xml", - "file_type": "XML document text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/doc/algorithm.txt", - "type": "file", - "name": "algorithm.txt", - "base_name": "algorithm", - "extension": ".txt", - "date": "2011-09-10", - "size": 9335, - "sha1": "8f58cd212772b622c71345ca5d7dd93648b8ab94", - "md5": "63be46f443f80cc9081ed765198d4b8a", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/doc/rfc1950.txt", - "type": "file", - "name": "rfc1950.txt", - "base_name": "rfc1950", - "extension": ".txt", - "date": "1996-05-21", - "size": 20502, - "sha1": "58f11c3e7778ca30e9c9330ab248107371429dd8", - "md5": "c9680de1a6b8939e16fd5e2a4f4785b8", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "peter-deutsch-document", - "score": 100.0, - "short_name": "Peter Deutsch Document License", - "category": "Permissive", - "owner": "Peter Deutsch", - "homepage_url": "http://www.ietf.org/rfc/rfc1952.txt", - "text_url": "http://www.ietf.org/rfc/rfc1952.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:peter-deutsch-document", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 31, - "end_line": 40, - "matched_rule": { - "identifier": "peter-deutsch-document.LICENSE", - "license_choice": false, - "licenses": [ - "peter-deutsch-document" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1996 L. Peter Deutsch and Jean-Loup Gailly" - ], - "holders": [ - "L. Peter Deutsch and Jean-Loup Gailly" - ], - "authors": [], - "start_line": 29, - "end_line": 29 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/doc/rfc1951.txt", - "type": "file", - "name": "rfc1951.txt", - "base_name": "rfc1951", - "extension": ".txt", - "date": "1996-05-21", - "size": 36944, - "sha1": "b13d37ad6b3855f3a2eaf6c325eddaa7815355b0", - "md5": "fe89c9b2d3b621452c4f868590635c5f", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "peter-deutsch-document", - "score": 100.0, - "short_name": "Peter Deutsch Document License", - "category": "Permissive", - "owner": "Peter Deutsch", - "homepage_url": "http://www.ietf.org/rfc/rfc1952.txt", - "text_url": "http://www.ietf.org/rfc/rfc1952.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:peter-deutsch-document", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 27, - "end_line": 38, - "matched_rule": { - "identifier": "peter-deutsch-document.LICENSE", - "license_choice": false, - "licenses": [ - "peter-deutsch-document" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1996 L. Peter Deutsch" - ], - "holders": [ - "L. Peter Deutsch" - ], - "authors": [], - "start_line": 27, - "end_line": 27 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/doc/rfc1952.txt", - "type": "file", - "name": "rfc1952.txt", - "base_name": "rfc1952", - "extension": ".txt", - "date": "1996-05-28", - "size": 25037, - "sha1": "b2346a9c1e9cd011370595a292154ca83eff4ddb", - "md5": "7c4ee539faa6c908c3860588df424be1", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "peter-deutsch-document", - "score": 100.0, - "short_name": "Peter Deutsch Document License", - "category": "Permissive", - "owner": "Peter Deutsch", - "homepage_url": "http://www.ietf.org/rfc/rfc1952.txt", - "text_url": "http://www.ietf.org/rfc/rfc1952.txt", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:peter-deutsch-document", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 27, - "end_line": 38, - "matched_rule": { - "identifier": "peter-deutsch-document.LICENSE", - "license_choice": false, - "licenses": [ - "peter-deutsch-document" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1996 L. Peter Deutsch" - ], - "holders": [ - "L. Peter Deutsch" - ], - "authors": [], - "start_line": 27, - "end_line": 27 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Jean-Loup Gailly " - ], - "start_line": 570, - "end_line": 573 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/doc/txtvsbin.txt", - "type": "file", - "name": "txtvsbin.txt", - "base_name": "txtvsbin", - "extension": ".txt", - "date": "2006-05-28", - "size": 5193, - "sha1": "0b5f765b6151da46d356493278fd873e4c99ce80", - "md5": "33a7749453d872da575e01c2c62fe877", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/examples/enough.c", - "type": "file", - "name": "enough.c", - "base_name": "enough", - "extension": ".c", - "date": "2012-08-19", - "size": 24338, - "sha1": "1bcc3f9743bcfdfb77fb6736ece06c666dd1787e", - "md5": "6ac79bd8913b81b91a5dfbbe372331dc", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2007, 2008, 2012 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 2, - "end_line": 4 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/examples/fitblk.c", - "type": "file", - "name": "fitblk.c", - "base_name": "fitblk", - "extension": ".c", - "date": "2005-06-13", - "size": 8594, - "sha1": "b69d9b6eeadd680fe37ab8ba54d781f46fe80420", - "md5": "4061e63cf68f479ebbd4bab90178a774", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "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": 2, - "end_line": 2, - "matched_rule": { - "identifier": "public-domain.LICENSE", - "license_choice": false, - "licenses": [ - "public-domain" - ] - } - } - ], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/examples/gun.c", - "type": "file", - "name": "gun.c", - "base_name": "gun", - "extension": ".c", - "date": "2016-10-30", - "size": 25943, - "sha1": "66c4ce6e2e4cc86dbe346a7cc1bc921002335929", - "md5": "3ae3e8df2161c8d00d586396fc419c2b", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2003, 2005, 2008, 2010, 2012 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 4 - }, - { - "statements": [ - "Copyright (c) 2003-2010 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 653, - "end_line": 657 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/examples/gzappend.c", - "type": "file", - "name": "gzappend.c", - "base_name": "gzappend", - "extension": ".c", - "date": "2012-10-11", - "size": 16977, - "sha1": "a22e75fe1bb392ce8516794d6e810fd0dfcf8dca", - "md5": "cba90a61087e9d9c6bbb45a005543468", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 70.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 6, - "end_line": 35, - "matched_rule": { - "identifier": "zlib_3.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2003, 2012 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 3, - "end_line": 3 - }, - { - "statements": [ - "Copyright (c) 2003, 2012 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 476, - "end_line": 477 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/examples/gzjoin.c", - "type": "file", - "name": "gzjoin.c", - "base_name": "gzjoin", - "extension": ".c", - "date": "2012-08-14", - "size": 14132, - "sha1": "9c34287cf18b05b761daf6457fc5efbf501358d2", - "md5": "d6c05757d17814110c93151ab5c1c910", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 100.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 6, - "end_line": 20, - "matched_rule": { - "identifier": "zlib_variant.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2004, 2005, 2012 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 3, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/examples/gzlog.c", - "type": "file", - "name": "gzlog.c", - "base_name": "gzlog", - "extension": ".c", - "date": "2017-01-01", - "size": 41479, - "sha1": "32d9e430fe8725def0a036f86a526e7b3214eaf0", - "md5": "2140627edcd840671f03eced0741c520", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "see-license", - "score": 20.0, - "short_name": "See License mention", - "category": "Unknown License", - "owner": "Unspecified", - "homepage_url": "", - "text_url": "", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:see-license", - "spdx_license_key": "", - "spdx_url": "", - "start_line": 4, - "end_line": 4, - "matched_rule": { - "identifier": "see-license_21.RULE", - "license_choice": false, - "licenses": [ - "see-license" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2004, 2008, 2012, 2016 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 2, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/examples/gzlog.h", - "type": "file", - "name": "gzlog.h", - "base_name": "gzlog", - "extension": ".h", - "date": "2012-08-19", - "size": 4557, - "sha1": "deab1fb6de11e3145dfea71254d0c363a3415e04", - "md5": "7d497747a90370d3b13320bbf97e65dc", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 100.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 5, - "end_line": 19, - "matched_rule": { - "identifier": "zlib_variant.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2004, 2008, 2012 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/examples/README.examples", - "type": "file", - "name": "README.examples", - "base_name": "README", - "extension": ".examples", - "date": "2010-01-17", - "size": 1817, - "sha1": "f793f7b378233d7e644754e603695966487576b5", - "md5": "7d040e322c50440b203bd70b3a448470", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/examples/zlib_how.html", - "type": "file", - "name": "zlib_how.html", - "base_name": "zlib_how", - "extension": ".html", - "date": "2005-12-11", - "size": 29824, - "sha1": "35f85759bc23add6a8507c76d05f73131823a9b3", - "md5": "f4912cf5a1ade2e862e193983c02b3ee", - "files_count": null, - "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, - "scan_errors": [], - "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": 23, - "end_line": 23, - "matched_rule": { - "identifier": "public-domain.LICENSE", - "license_choice": false, - "licenses": [ - "public-domain" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2004, 2005 Mark Adler." - ], - "holders": [ - "Mark Adler." - ], - "authors": [], - "start_line": 6, - "end_line": 9 - }, - { - "statements": [ - "Copyright (c) 2004, 2005 by Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 542, - "end_line": 545 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/examples/zpipe.c", - "type": "file", - "name": "zpipe.c", - "base_name": "zpipe", - "extension": ".c", - "date": "2005-12-11", - "size": 6323, - "sha1": "b59f2d5676cc135ac0af040d90c3e7b366fcce93", - "md5": "2baa24dfcde30e5378ebc823b9546fc5", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "CLIPPER instruction trace", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "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": 2, - "end_line": 2, - "matched_rule": { - "identifier": "public-domain.LICENSE", - "license_choice": false, - "licenses": [ - "public-domain" - ] - } - } - ], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/examples/zran.c", - "type": "file", - "name": "zran.c", - "base_name": "zran", - "extension": ".c", - "date": "2016-10-30", - "size": 15438, - "sha1": "db2e8f8daa77cf6536bf516f194c422f5db8310d", - "md5": "b21de2ad7c6a8dd26d58c831970e4efe", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2005, 2012 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 4 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/msdos/Makefile.bor", - "type": "file", - "name": "Makefile.bor", - "base_name": "Makefile", - "extension": ".bor", - "date": "2011-11-27", - "size": 3098, - "sha1": "85d42a140e556d3b659f7e26c834b5574ea51754", - "md5": "80adf0a73c836697ef02cd8cc19733cd", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/msdos/Makefile.dj2", - "type": "file", - "name": "Makefile.dj2", - "base_name": "Makefile", - "extension": ".dj2", - "date": "2015-07-29", - "size": 2620, - "sha1": "815d082068e07e22195e446ea8a880a1b03e425a", - "md5": "ddcc308923bda1742d6c6638367da0dd", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-1998 Jean-loup Gailly." - ], - "holders": [ - "Jean-loup Gailly." - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/msdos/Makefile.emx", - "type": "file", - "name": "Makefile.emx", - "base_name": "Makefile", - "extension": ".emx", - "date": "2015-07-29", - "size": 1447, - "sha1": "2cf0c4a2b98fc59c63bc5daee5d26e26dc15c81e", - "md5": "bcd5df6ee3272ea5a3a17feb90ad148d", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-1998 Jean-loup Gailly." - ], - "holders": [ - "Jean-loup Gailly." - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/msdos/Makefile.msc", - "type": "file", - "name": "Makefile.msc", - "base_name": "Makefile", - "extension": ".msc", - "date": "2011-11-27", - "size": 2924, - "sha1": "39f6df7982b02e1c8b72298c6cc58bf02d9d9f77", - "md5": "2a7a661ce2d463e3876704786fd8dfdd", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/msdos/Makefile.tc", - "type": "file", - "name": "Makefile.tc", - "base_name": "Makefile", - "extension": ".tc", - "date": "2011-11-27", - "size": 2657, - "sha1": "98e97dcbaf0e7da0531f7a0367b052adc382fb29", - "md5": "b8ec8ac0dac9fe62dd4934fb4b9f772c", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/nintendods/Makefile", - "type": "file", - "name": "Makefile", - "base_name": "Makefile", - "extension": "", - "date": "2009-12-21", - "size": 4741, - "sha1": "4b2d315c399a4db63f6380e9172d93ad0f500edf", - "md5": "7589c1379ed922ffe60a9963c50ffe64", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/nintendods/README", - "type": "file", - "name": "README", - "base_name": "README", - "extension": "", - "date": "2009-12-21", - "size": 209, - "sha1": "f585a53f8a8d0415cbd7166f8c44a11a802ee39c", - "md5": "486dd2758187aaeb071f6a0ad5094fda", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/old/descrip.mms", - "type": "file", - "name": "descrip.mms", - "base_name": "descrip", - "extension": ".mms", - "date": "1996-01-30", - "size": 1545, - "sha1": "940475beeeb76576feb22c2d8b7b97d493ab3d79", - "md5": "cbf38eb0d95e0f43faf627cf42a680a7", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [], - "holders": [], - "authors": [ - "Martin P.J. Zinser " - ], - "start_line": 1, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/old/Makefile.emx", - "type": "file", - "name": "Makefile.emx", - "base_name": "Makefile", - "extension": ".emx", - "date": "2015-07-29", - "size": 1456, - "sha1": "821cd8913362531cfd915b4c2bcb0777aa7d2f11", - "md5": "1aeeebbf2e64523db78f02c744dd425d", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-1998 Jean-loup Gailly." - ], - "holders": [ - "Jean-loup Gailly." - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/old/Makefile.riscos", - "type": "file", - "name": "Makefile.riscos", - "base_name": "Makefile", - "extension": ".riscos", - "date": "2005-07-12", - "size": 3767, - "sha1": "2a3285389419eb244671143cc8c6333c7cbfdd2c", - "md5": "281c9a86ce42a799859a5978bc732cc5", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/old/README", - "type": "file", - "name": "README", - "base_name": "README", - "extension": "", - "date": "2004-09-15", - "size": 133, - "sha1": "6967642b887ba82a9041bddce73254c42000d4d9", - "md5": "bbfa7b4766eb254d816bcd7faf48f0f5", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/old/visual-basic.txt", - "type": "file", - "name": "visual-basic.txt", - "base_name": "visual-basic", - "extension": ".txt", - "date": "2003-10-27", - "size": 6060, - "sha1": "1cf5886f7fcee4019ef529f8f19dd8000be01229", - "md5": "94928575e535e4057290970b885627f0", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/old/os2", - "type": "directory", - "name": "os2", - "base_name": "os2", - "extension": "", - "date": null, - "size": 4887, - "sha1": null, - "md5": null, - "files_count": 2, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/old/os2/Makefile.os2", - "type": "file", - "name": "Makefile.os2", - "base_name": "Makefile", - "extension": ".os2", - "date": "2015-07-29", - "size": 4109, - "sha1": "4127401d329a7e421112ae14ec4e7dd995ea6e30", - "md5": "52748c82e9464e36daec6caa3f50b7d9", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 2, - "end_line": 2, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/old/os2/zlib.def", - "type": "file", - "name": "zlib.def", - "base_name": "zlib", - "extension": ".def", - "date": "1998-03-01", - "size": 778, - "sha1": "108527bad780aecce1c75efa9210f4b1173f4139", - "md5": "b917eb81b8d4b72931282aeedc167f83", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": "Modula-2", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/os400/bndsrc", - "type": "file", - "name": "bndsrc", - "base_name": "bndsrc", - "extension": "", - "date": "2017-01-01", - "size": 3986, - "sha1": "8b47a80813ee6c9afcad0defe645efa3b5998aa0", - "md5": "a60b56782ba1f108b3c1fa232f95fd1a", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/os400/make.sh", - "type": "file", - "name": "make.sh", - "base_name": "make", - "extension": ".sh", - "date": "2017-01-15", - "size": 10727, - "sha1": "c5baf22e2de7d01ca1fea649e832f9d827cf6064", - "md5": "4d8dfda2096227d68f03499480c3740c", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2017 Jean-Loup Gailly, Mark Adler." - ], - "holders": [ - "Jean-Loup Gailly, Mark Adler." - ], - "authors": [], - "start_line": 262, - "end_line": 265 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/os400/README400", - "type": "file", - "name": "README400", - "base_name": "README400", - "extension": "", - "date": "2017-01-15", - "size": 1871, - "sha1": "51d77ab7eeaa1d92a57a2a405b6ff985373bdaaa", - "md5": "cd5db617d9a470452431ef50bcd2d07d", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/os400/zlib.inc", - "type": "file", - "name": "zlib.inc", - "base_name": "zlib", - "extension": ".inc", - "date": "2017-01-15", - "size": 32795, - "sha1": "a911b361a568f6d0e07024149eaa17e9815c8fef", - "md5": "88375497cf85550425cedb3f1a0a05e8", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": "POVRay", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/qnx/package.qpg", - "type": "file", - "name": "package.qpg", - "base_name": "package", - "extension": ".qpg", - "date": "2017-01-15", - "size": 6432, - "sha1": "3f3e8a85343976d3f6115797f7ac9e379a97bf67", - "md5": "041a9be530eca6d4b057404cf1cc9350", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/test/example.c", - "type": "file", - "name": "example.c", - "base_name": "example", - "extension": ".c", - "date": "2017-01-01", - "size": 16888, - "sha1": "bde9391a495a7b962cc63aaf8288b02159a5f68a", - "md5": "850825a7e5ddc45e520909406d25bdff", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2006, 2011, 2016 Jean-loup Gailly" - ], - "holders": [ - "Jean-loup Gailly" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/test/infcover.c", - "type": "file", - "name": "infcover.c", - "base_name": "infcover", - "extension": ".c", - "date": "2017-01-01", - "size": 24723, - "sha1": "e9ced1a5ecc8badd5bc14cd96ef859cc346ec3dd", - "md5": "629a048f0edd2a18c6c18a11679628d8", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 2011, 2016 Mark Adler" - ], - "holders": [ - "Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/test/minigzip.c", - "type": "file", - "name": "minigzip.c", - "base_name": "minigzip", - "extension": ".c", - "date": "2017-01-01", - "size": 15797, - "sha1": "2ff91a2d1d191233dea5741a1aee5095f577a93e", - "md5": "929d15e7fc86ced153a5b0feae168b4e", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2006, 2010, 2011, 2016 Jean-loup Gailly" - ], - "holders": [ - "Jean-loup Gailly" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/watcom/watcom_f.mak", - "type": "file", - "name": "watcom_f.mak", - "base_name": "watcom_f", - "extension": ".mak", - "date": "2010-02-14", - "size": 1439, - "sha1": "1a6af1350f3ffbbff44273a7b661563f095b3234", - "md5": "6f80451b702a08fa8d149161e1d75313", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/watcom/watcom_l.mak", - "type": "file", - "name": "watcom_l.mak", - "base_name": "watcom_l", - "extension": ".mak", - "date": "2010-02-14", - "size": 1407, - "sha1": "e1deb6874b6162d2607dff14c2fccb7a37ce97b0", - "md5": "f6a102e1a91215f0e249b266053e9956", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/win32/DLL_FAQ.txt", - "type": "file", - "name": "DLL_FAQ.txt", - "base_name": "DLL_FAQ", - "extension": ".txt", - "date": "2006-03-03", - "size": 17921, - "sha1": "743c9da800bb73a7a30e7c5ce76b5bafd1256ba8", - "md5": "1d9871d4ffd71645ac3d029d8de0e03a", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [], - "holders": [], - "authors": [ - "maintained by Cosmin Truta " - ], - "start_line": 396, - "end_line": 397 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/win32/Makefile.bor", - "type": "file", - "name": "Makefile.bor", - "base_name": "Makefile", - "extension": ".bor", - "date": "2011-11-27", - "size": 2587, - "sha1": "23262888e43719d398dea043e2bd09c23a9ba5da", - "md5": "fc5b8a38022995608b2a04fb7ebd17d7", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/win32/Makefile.gcc", - "type": "file", - "name": "Makefile.gcc", - "base_name": "Makefile", - "extension": ".gcc", - "date": "2015-07-29", - "size": 5122, - "sha1": "ea8204bc36bb1d25c28e0176eb777d1174965fc6", - "md5": "bc2d8d3fda87e41e7f3e2536ab6ae806", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 60.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 8, - "end_line": 8, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [ - "Copyright (c) 1995-2003 Jean-loup Gailly." - ], - "holders": [ - "Jean-loup Gailly." - ], - "authors": [], - "start_line": 7, - "end_line": 8 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/win32/Makefile.msc", - "type": "file", - "name": "Makefile.msc", - "base_name": "Makefile", - "extension": ".msc", - "date": "2017-01-15", - "size": 4937, - "sha1": "03ac9a052f553e99d5c122a9adb9cf61c1059cda", - "md5": "257272e4cea1c919fe86edcdf5c2dd57", - "files_count": null, - "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, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [ - "copyright (c) 1995-2017 Jean-loup Gailly and Mark Adler" - ], - "holders": [ - "Jean-loup Gailly and Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 2 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/win32/README-WIN32.txt", - "type": "file", - "name": "README-WIN32.txt", - "base_name": "README-WIN32", - "extension": ".txt", - "date": "2017-01-15", - "size": 4870, - "sha1": "7fec4ff7048956a2c556c199ac4989b9372250b7", - "md5": "0b80cb8a4ec18437ea653c67f466cb5b", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [ - { - "key": "zlib", - "score": 100.0, - "short_name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:zlib", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 77, - "end_line": 94, - "matched_rule": { - "identifier": "zlib_17.RULE", - "license_choice": false, - "licenses": [ - "zlib" - ] - } - } - ], - "copyrights": [ - { - "statements": [], - "holders": [], - "authors": [ - "L. Peter Deutsch. Thanks" - ], - "start_line": 67, - "end_line": 70 - }, - { - "statements": [ - "(c) 1995-2017 Jean-loup Gailly and Mark Adler" - ], - "holders": [ - "Jean-loup Gailly and Mark Adler" - ], - "authors": [], - "start_line": 75, - "end_line": 75 - }, - { - "statements": [], - "holders": [], - "authors": [ - "Jean-loup Gailly and Mark Adler" - ], - "start_line": 97, - "end_line": 99 - } - ], - "packages": [] - }, - { - "path": "zlib-1.2.11/win32/VisualC.txt", - "type": "file", - "name": "VisualC.txt", - "base_name": "VisualC", - "extension": ".txt", - "date": "2017-01-15", - "size": 124, - "sha1": "ba666fb015a257ab0182f10bc20409a2ec61169f", - "md5": "41825008c400d365b2a660175bec4ad1", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/win32/zlib.def", - "type": "file", - "name": "zlib.def", - "base_name": "zlib", - "extension": ".def", - "date": "2017-01-01", - "size": 1618, - "sha1": "756d27ffaa18b488fca960ff0797bcbc2ffc811f", - "md5": "9ea63abcc97a099dc00876ae13dee279", - "files_count": null, - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "Modula-2", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [], - "packages": [] - }, - { - "path": "zlib-1.2.11/win32/zlib1.rc", - "type": "file", - "name": "zlib1.rc", - "base_name": "zlib1", - "extension": ".rc", - "date": "2017-01-15", - "size": 1138, - "sha1": "c21721e51d162fcc8880290001d9e150d3511dd6", - "md5": "311d9cf5cbf7538b8b8120f13c6c1385", - "files_count": null, - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "scan_errors": [], - "licenses": [], - "copyrights": [ - { - "statements": [ - "(c) 1995-2017 Jean-loup Gailly & Mark Adler" - ], - "holders": [ - "Jean-loup Gailly & Mark Adler" - ], - "authors": [], - "start_line": 28, - "end_line": 31 - } - ], - "packages": [] - } - ] -} diff --git a/tests/test_deltacode.py b/tests/test_deltacode.py index 8ced61da..c90cfd21 100644 --- a/tests/test_deltacode.py +++ b/tests/test_deltacode.py @@ -35,7 +35,6 @@ from commoncode.testcase import FileBasedTesting import deltacode from deltacode import DeltaCode -from deltacode import models from deltacode import test_utils from deltacode import utils from deltacode.utils import collect_errors @@ -410,6 +409,7 @@ def test_Delta_to_dict_moved(self): assert delta.to_dict(deltacode) == expected + @pytest.mark.xfail(reason='Tests no longer required having None paths') def test_Delta_create_object_removed(self): new = None old = models.File({'path': 'path/removed.txt'}) @@ -422,6 +422,7 @@ def test_Delta_create_object_removed(self): assert 'removed' in delta.factors assert delta.score == 0 + @pytest.mark.xfail(reason='Tests no longer required having None paths') def test_Delta_create_object_added(self): new = models.File({'path': 'path/added.txt'}) old = None @@ -434,6 +435,7 @@ def test_Delta_create_object_added(self): assert 'added' in delta.factors assert delta.score == 100 + @pytest.mark.xfail(reason='Tests no longer required having None paths') def test_Delta_create_object_modified(self): new = models.File({'path': 'path/modified.txt', 'sha1': 'a'}) old = models.File({'path': 'path/modified.txt', 'sha1': 'b'}) @@ -448,6 +450,7 @@ def test_Delta_create_object_modified(self): assert 'modified' in delta.factors assert delta.score == 20 + @pytest.mark.xfail(reason='Tests no longer required having None paths') def test_Delta_create_object_unmodified(self): new = models.File({'path': 'path/unmodified.txt', 'sha1': 'a'}) old = models.File({'path': 'path/unmodified.txt', 'sha1': 'a'}) @@ -462,6 +465,7 @@ def test_Delta_create_object_unmodified(self): assert 'unmodified' in delta.factors assert delta.score == 0 + @pytest.mark.xfail(reason='Tests no longer required having None paths') def test_Delta_create_object_moved(self): new = models.File({'path': 'path_new/moved.txt', 'sha1': 'a'}) old = models.File({'path': 'path_old/moved.txt', 'sha1': 'a'}) @@ -1113,6 +1117,7 @@ def test_score_license_change_no_copyright_change(self): assert len([i for i in deltas_object if i.score == 25]) == 0 assert len([i for i in deltas_object if i.score == 20]) == 0 + @pytest.mark.xfail(reason='Tests no longer required having None paths') def test_Delta_update_added(self): new = models.File({ 'path': 'path/added.txt', @@ -1130,6 +1135,7 @@ def test_Delta_update_added(self): assert delta.score == 125 assert delta.factors == ['This is a test of an added file'] + @pytest.mark.xfail(reason='Tests no longer required having None paths') def test_Delta_update_modified(self): new = models.File({ 'path': 'path/modified.txt', diff --git a/tests/test_models.py b/tests/test_models.py deleted file mode 100644 index 857fadfd..00000000 --- a/tests/test_models.py +++ /dev/null @@ -1,1087 +0,0 @@ -# -# Copyright (c) 2017-2018 nexB Inc. and others. All rights reserved. -# http://nexb.com and https://github.com/nexB/deltacode/ -# The DeltaCode software is licensed under the Apache License version 2.0. -# Data generated with DeltaCode require an acknowledgment. -# DeltaCode is a trademark of nexB Inc. -# -# You may not use this software except in compliance with the License. -# You may obtain a copy of the License at: http://apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software distributed -# under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR -# CONDITIONS OF ANY KIND, either express or implied. See the License for the -# specific language governing permissions and limitations under the License. -# -# When you publish or redistribute any data created with DeltaCode or any DeltaCode -# derivative work, you must accompany this data with the following acknowledgment: -# -# Generated with DeltaCode and provided on an "AS IS" BASIS, WITHOUT WARRANTIES -# OR CONDITIONS OF ANY KIND, either express or implied. No content created from -# DeltaCode should be considered or used as legal advice. Consult an Attorney -# for any legal advice. -# DeltaCode is a free and open source software analysis tool from nexB Inc. and others. -# Visit https://github.com/nexB/deltacode/ for support and download. -# - -from __future__ import absolute_import, print_function, unicode_literals, division - -import json -import os - -import pytest - -from click.testing import CliRunner - -from commoncode.testcase import FileBasedTesting -from deltacode import DeltaCode -from deltacode import models - -class TestModels(FileBasedTesting): - - test_data_dir = os.path.join(os.path.dirname(__file__), 'data') - - def test_Scan_index_files_simple(self): - test_files = [models.File({'path': 'path1/a'}), models.File({'path': 'path1/b'})] - - scan = models.Scan() - scan.files = test_files - - index = scan.index_files() - - assert index.get('path1/a') == [test_files[0]] - assert index.get('path1/b') == [test_files[1]] - - def test_Scan_index_files_key_path(self): - test_files = [models.File({'path': 'path1/a'}), models.File({'path': 'path1/b'})] - - scan = models.Scan() - scan.files = test_files - - index = scan.index_files('path') - - assert index.get('path1/a') == [test_files[0]] - assert index.get('path1/b') == [test_files[1]] - - def test_Scan_index_files_key_missing(self): - test_files = [models.File({'path': 'path1/a'}), models.File({'path': 'path1/b'})] - - scan = models.Scan() - scan.files = test_files - - with pytest.raises(AttributeError): - index = scan.index_files('missing') - - def test_Scan_index_files_key_sha1_foo(self): - test_files = [models.File({'path': 'path1/a/foo', 'sha1': '3340d86b1da9323067db8022f86dc97cfccee1d0'}), - models.File({'path': 'path1/b/foo', 'sha1': '3340d86b1da9323067db8022f86dc97cfccee1d0'})] - - scan = models.Scan() - scan.files = test_files - - index = scan.index_files('sha1') - - result = test_files - - assert len(index.get('3340d86b1da9323067db8022f86dc97cfccee1d0')) == 2 - assert index.get('3340d86b1da9323067db8022f86dc97cfccee1d0') == result - - def test_Scan_index_files_key_sha1_multiple_copies(self): - test_file = self.get_test_loc('models/scan/multiple_copies_01-i_scan.json') - - scan = models.Scan(test_file) - - index = scan.index_files('sha1') - - assert len(index.get('84b647771481d39dd3a53f6dc210c26abac37748')) == 3 - assert len(index.get('310797523e47db8481aeb06f1634317285115091')) == 3 - assert len(index.get('fd5d3589c825f448546d7dcec36da3e567d35fe9')) == 3 - assert len(index.get('6f71666c46446c29d3f45feef5419ae76fb86a5b')) == 3 - - for each in index.get('84b647771481d39dd3a53f6dc210c26abac37748'): - assert each.sha1 == '84b647771481d39dd3a53f6dc210c26abac37748' - - for each in index.get('310797523e47db8481aeb06f1634317285115091'): - assert each.sha1 == '310797523e47db8481aeb06f1634317285115091' - - for each in index.get('fd5d3589c825f448546d7dcec36da3e567d35fe9'): - assert each.sha1 == 'fd5d3589c825f448546d7dcec36da3e567d35fe9' - - for each in index.get('6f71666c46446c29d3f45feef5419ae76fb86a5b'): - assert each.sha1 == '6f71666c46446c29d3f45feef5419ae76fb86a5b' - - def test_Scan_index_files_key_name_multiple_copies(self): - test_file = self.get_test_loc('models/scan/multiple_copies_01-i_scan.json') - - scan = models.Scan(test_file) - - index = scan.index_files('name') - - assert len(index.get('a1.py')) == 3 - assert len(index.get('a2.py')) == 3 - assert len(index.get('a3.py')) == 3 - assert len(index.get('a4.py')) == 3 - - for each in index.get('a1.py'): - assert each.name == 'a1.py' - - for each in index.get('a2.py'): - assert each.name == 'a2.py' - - for each in index.get('a3.py'): - assert each.name == 'a3.py' - - for each in index.get('a4.py'): - assert each.name == 'a4.py' - - def test_Scan_index_files_large_openssl_key_path(self): - test_file = self.get_test_loc('models/scan/openssl-1.1.0f-clip_scan.json') - - scan = models.Scan(test_file) - - index = scan.index_files('path') - assert len(index.get('openssl-1.1.0f/crypto/rc2')) == 1 - assert len(index.get('openssl-1.1.0f/crypto/include/internal/x509_int.h')) == 1 - assert len(index.get('openssl-1.1.0f/crypto/ec/asm/ecp_nistz256-armv4.pl')) == 1 - assert len(index.get('openssl-1.1.0f/test/testreq2.pem')) == 1 - - def test_Scan_index_files_large_openssl_key_sha1(self): - test_file = self.get_test_loc('models/scan/openssl-1.1.0f-clip_scan.json') - - scan = models.Scan(test_file) - - index = scan.index_files('sha1') - - assert len(index.get('478330af84ea74932db60e35533215de649a06c4')) == 2 - for each in index.get('478330af84ea74932db60e35533215de649a06c4'): - assert each.sha1 == '478330af84ea74932db60e35533215de649a06c4' - - assert len(index.get('cd5cb64b8c0d5654b5a768d820a2b1ec03ec365a')) == 2 - for each in index.get('cd5cb64b8c0d5654b5a768d820a2b1ec03ec365a'): - assert each.sha1 == 'cd5cb64b8c0d5654b5a768d820a2b1ec03ec365a' - - def test_Scan_index_files_large_openssl_key_name(self): - test_file = self.get_test_loc('models/scan/openssl-1.1.0f-clip_scan.json') - - scan = models.Scan(test_file) - - index = scan.index_files('name') - - assert len(index.get('dh1024.pem')) == 2 - for each in index.get('dh1024.pem'): - assert each.name == 'dh1024.pem' - - assert len(index.get('dh2048.pem')) == 2 - for each in index.get('dh2048.pem'): - assert each.name == 'dh2048.pem' - - def test_Scan_index_files_large_dropbear_key_path(self): - test_file = self.get_test_loc('models/scan/dropbear-2017.75-clip_scan.json') - - scan = models.Scan(test_file) - - index = scan.index_files('path') - - assert len(index.get('dropbear-2017.75/libtomcrypt/src/modes/cfb/cfb_encrypt.c')) == 1 - assert index.get('dropbear-2017.75/libtomcrypt/src/modes/cfb/cfb_encrypt.c')[0].path == 'dropbear-2017.75/libtomcrypt/src/modes/cfb/cfb_encrypt.c' - - assert len(index.get('dropbear-2017.75/dss.h')) == 1 - assert index.get('dropbear-2017.75/dss.h')[0].path == 'dropbear-2017.75/dss.h' - - def test_Scan_index_files_large_dropbear_key_sha1(self): - test_file = self.get_test_loc('models/scan/dropbear-2017.75-clip_scan.json') - - scan = models.Scan(test_file) - - index = scan.index_files('sha1') - - assert len(index.get(None)) == 78 - for each in index.get(None): - assert each.sha1 == None - - assert len(index.get('71cb8d2a576df3157730d5353eb81f6d6feb328c')) == 1 - for each in index.get('71cb8d2a576df3157730d5353eb81f6d6feb328c'): - assert each.sha1 == '71cb8d2a576df3157730d5353eb81f6d6feb328c' - - def test_Scan_index_files_large_dropbear_key_name(self): - test_file = self.get_test_loc('models/scan/dropbear-2017.75-clip_scan.json') - - scan = models.Scan(test_file) - - index = scan.index_files('name') - - assert len(index.get('TODO')) == 2 - for each in index.get('TODO'): - assert each.name == 'TODO' - - assert len(index.get('multi.c')) == 2 - for each in index.get('multi.c'): - assert each.name == 'multi.c' - - def test_Scan_index_files_large_zlib_key_path(self): - test_file = self.get_test_loc('models/scan/zlib-1.2.11-clip_scan.json') - - scan = models.Scan(test_file) - - index = scan.index_files('path') - - assert len(index.get('zlib-1.2.11/contrib/ada/readme.txt')) == 1 - for each in index.get('zlib-1.2.11/contrib/ada/readme.txt'): - assert each.path == 'zlib-1.2.11/contrib/ada/readme.txt' - - assert len(index.get('zlib-1.2.11/zutil.c')) == 1 - for each in index.get('zlib-1.2.11/zutil.c'): - assert each.path == 'zlib-1.2.11/zutil.c' - - def test_Scan_index_files_large_zlib_key_sha1(self): - test_file = self.get_test_loc('models/scan/zlib-1.2.11-clip_scan.json') - - scan = models.Scan(test_file) - - index = scan.index_files('sha1') - - assert len(index.get('0ef05b0d12bf2cfbbf1aa84cff0e8dcf4fc5b731')) == 2 - for each in index.get('0ef05b0d12bf2cfbbf1aa84cff0e8dcf4fc5b731'): - assert each.sha1 == '0ef05b0d12bf2cfbbf1aa84cff0e8dcf4fc5b731' - - assert len(index.get('ddf83b34d4c7d41ace39f96b5cb13fb390c8d2eb')) == 2 - for each in index.get('ddf83b34d4c7d41ace39f96b5cb13fb390c8d2eb'): - assert each.sha1 == 'ddf83b34d4c7d41ace39f96b5cb13fb390c8d2eb' - - def test_Scan_index_files_large_zlib_key_name(self): - test_file = self.get_test_loc('models/scan/zlib-1.2.11-clip_scan.json') - - scan = models.Scan(test_file) - - index = scan.index_files('name') - - assert len(index.get('zfstream.h')) == 2 - for each in index.get('zfstream.h'): - assert each.name == 'zfstream.h' - - assert len(index.get('make_vms.com')) == 2 - for each in index.get('make_vms.com'): - assert each.name == 'make_vms.com' - - def test_Scan_get_options_license_yes(self): - test_file = self.get_test_loc('models/scan/samples-clip-json-pp.json') - - scan = models.Scan(test_file) - - assert scan.options['--license'] == True - assert scan.options['--license-score'] == 0 - assert scan.options['--format'] == 'json-pp' - assert scan.options['--package'] == True - assert scan.options['--copyright'] == True - assert scan.options['--info'] == True - - def test_Scan_get_options_license_no(self): - test_file = self.get_test_loc('models/scan/samples-i-no-json-pp.json') - - scan = models.Scan(test_file) - - assert scan.options.get('--license', None) == None - assert scan.options['--license-score'] == 0 - assert scan.options['--format'] == 'json' - assert scan.options.get('--package', None) == None - assert scan.options.get('--copyright', None) == None - assert scan.options['--info'] == True - - def test_Scan_valid_scanfile_new_scancode_header_format(self): - test_file = self.get_test_loc('models/scan/new-scancode-header-format.json') - - result = models.Scan(test_file) - - assert result.files_count == 33 - - def test_Scan_valid_scanfile(self): - valid_paths = [ - self.get_test_loc('models/scan/well-formed-scan.json'), - self.get_test_loc('models/scan/this-is-json.txt') - ] - - valid_results = [models.Scan(f) for f in valid_paths] - - for result, path in zip(valid_results, valid_paths): - assert result.path == path - assert result.files != None - assert result.files_count != None and isinstance(result.files_count, int) - - def test_Scan_malformed_json(self): - invalid_path = self.get_test_loc('models/scan/malformed.json') - with pytest.raises(ValueError): - invalid_result = models.Scan(invalid_path) - - def test_Scan_empty_text(self): - invalid_path = self.get_test_loc('models/scan/empty.txt') - with pytest.raises(ValueError): - invalid_result = models.Scan(invalid_path) - - def test_Scan_empty_json(self): - invalid_path = self.get_test_loc('models/scan/empty.json') - - with pytest.raises(models.ScanException) as e: - invalid_result = models.Scan(invalid_path) - - normalized_path = os.path.abspath(invalid_path) - assert str(e.value) == 'JSON file: {} is missing the ScanCode version.'.format(normalized_path) - - def test_Scan_old_version(self): - invalid_path = self.get_test_loc('models/scan/old-version.json') - - with pytest.raises(models.ScanException) as e: - invalid_result = models.Scan(invalid_path) - - normalized_path = os.path.abspath(invalid_path) - assert str(e.value) == 'JSON file: {} was created with an old version of ScanCode.'.format(normalized_path) - - def test_Scan_info_not_selected(self): - invalid_path = self.get_test_loc('models/scan/info-not-selected.json') - - with pytest.raises(models.ScanException) as e: - invalid_result = models.Scan(invalid_path) - - normalized_path = os.path.abspath(invalid_path) - assert str(e.value) == 'JSON file: {} is missing the ScanCode --info attribute.'.format(normalized_path) - - def test_Scan_invalid_path(self): - test_path = '/some/invalid/path.json' - - result = models.Scan(test_path) - - assert result.path == '' - assert result.files_count == 0 - assert result.files == [] - assert result.options == {} - - def test_Scan_empty_path(self): - result = models.Scan('') - - assert result.path == '' - assert result.files_count == 0 - assert result.files == [] - assert result.options == {} - - def test_Scan_None_path(self): - result = models.Scan(None) - - assert result.path == '' - assert result.files_count == 0 - assert result.files == [] - assert result.options == {} - - def test_License_to_dict_simple(self): - data = { - "key": "apache-2.0", - "score": 80.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" - ] - } - } - - expected = { - 'key': 'apache-2.0', - 'score': 80.0, - 'short_name': 'Apache 2.0', - 'category': 'Permissive', - 'owner': 'Apache Software Foundation' - } - - result = models.License(data).to_dict() - - assert result == expected - with pytest.raises(AttributeError): - assert result.spdx_license_key == "Apache-2.0" - - def test_License_to_dict_empty(self): - result = models.License().to_dict() - - for k,v in result.items(): - assert v == None - - def test_License_object_simple(self): - data = { - "key": "apache-2.0", - "score": 80.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", - "dejacode_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" - ] - } - } - - result = models.License(data) - - assert result.key == 'apache-2.0' - assert result.score == 80 - assert result.category == 'Permissive' - with pytest.raises(AttributeError): - assert result.spdx_license_key == "Apache-2.0" - - def test_License_object_empty(self): - result = models.License() - - for attr, value in vars(result).items(): - assert value == None - - def test_File_to_dict_simple_w_license(self): - data = { - 'path': 'a/b/file1.txt', - 'type': 'file', - 'name': 'file1.txt', - 'size': 20, - 'sha1': '26d82f1931cbdbd83c2a6871b2cecd5cbcc8c26b', - 'fingerprint': 'e30cf09443e7878dfed3288886e97542', - 'licenses': [ - { - "key": "apache-2.0", - "score": 80.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" - ] - } - } - ], - } - - expected = { - 'path': 'a/b/file1.txt', - 'type': 'file', - 'name': 'file1.txt', - 'size': 20, - 'sha1': '26d82f1931cbdbd83c2a6871b2cecd5cbcc8c26b', - 'fingerprint': 'e30cf09443e7878dfed3288886e97542', - 'original_path': '', - 'licenses': [ - { - "key": "apache-2.0", - "score": 80.0, - "short_name": "Apache 2.0", - "category": "Permissive", - "owner": "Apache Software Foundation" - } - ], - 'copyrights': [] - } - - result = models.File(data).to_dict() - - assert result == expected - with pytest.raises(AttributeError): - assert result.spdx_license_key == "Apache-2.0" - - def test_File_to_dict_simple(self): - data = { - 'path': 'a/b/file1.txt', - 'type': 'file', - 'name': 'file1.txt', - 'size': 20, - 'sha1': '26d82f1931cbdbd83c2a6871b2cecd5cbcc8c26b', - 'fingerprint': 'e30cf09443e7878dfed3288886e97542', - } - - expected = { - 'path': 'a/b/file1.txt', - 'type': 'file', - 'name': 'file1.txt', - 'size': 20, - 'sha1': '26d82f1931cbdbd83c2a6871b2cecd5cbcc8c26b', - 'fingerprint': 'e30cf09443e7878dfed3288886e97542', - 'original_path': '', - 'licenses': [], - 'copyrights': [] - } - - result = models.File(data).to_dict() - - assert result == expected - - def test_File_to_dict_empty(self): - empty_file = models.File() - - expected = { - 'path': '', - 'type': '', - 'name': '', - 'size': '', - 'sha1': '', - 'fingerprint': '', - 'original_path': '', - 'licenses': [], - 'copyrights': [] - } - - result = empty_file.to_dict() - assert result == expected - - def test_File_create_object_license_one(self): - data = { - 'path': 'a/b/file1.txt', - 'type': 'file', - 'name': 'file1.txt', - 'size': 20, - 'sha1': '26d82f1931cbdbd83c2a6871b2cecd5cbcc8c26b', - 'licenses': [ - { - "key": "apache-2.0", - "score": 80.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" - ] - } - } - ], - } - - result = models.File(data) - - assert 'a/b/file1.txt' == result.path - assert 'file' == result.type - assert 'file1.txt' == result.name - assert 20 == result.size - assert '26d82f1931cbdbd83c2a6871b2cecd5cbcc8c26b' == result.sha1 - assert [] == result.copyrights - assert len(result.licenses) == 1 - assert result.licenses[0].key == 'apache-2.0' - with pytest.raises(AttributeError): - assert result.spdx_license_key == "Apache-2.0" - - def test_File_create_object_license_none(self): - data = { - 'path': 'a/b/file1.txt', - 'type': 'file', - 'name': 'file1.txt', - 'size': 20, - 'sha1': '26d82f1931cbdbd83c2a6871b2cecd5cbcc8c26b', - 'licenses': [], - } - - result = models.File(data) - - assert 'a/b/file1.txt' == result.path - assert 'file' == result.type - assert 'file1.txt' == result.name - assert 20 == result.size - assert '26d82f1931cbdbd83c2a6871b2cecd5cbcc8c26b' == result.sha1 - assert [] == result.licenses - assert [] == result.copyrights - - def test_File_create_object_license_missing(self): - data = { - 'path': 'a/b/file1.txt', - 'type': 'file', - 'name': 'file1.txt', - 'size': 20, - 'sha1': '26d82f1931cbdbd83c2a6871b2cecd5cbcc8c26b', - } - - result = models.File(data) - - assert [] == result.licenses - - def test_File_empty(self): - empty_file = models.File() - - assert empty_file.path == '' - assert empty_file.type == '' - assert empty_file.name == '' - assert empty_file.size == '' - assert empty_file.sha1 == '' - assert empty_file.licenses == [] - assert empty_file.copyrights == [] - - def test_File_create_object(self): - data = { - 'path': 'a/b/file1.txt', - 'type': 'file', - 'name': 'file1.txt', - 'size': 20, - 'sha1': '26d82f1931cbdbd83c2a6871b2cecd5cbcc8c26b', - } - - result = models.File(data) - - assert 'a/b/file1.txt' == result.path - assert 'file' == result.type - assert 'file1.txt' == result.name - assert 20 == result.size - assert '26d82f1931cbdbd83c2a6871b2cecd5cbcc8c26b' == result.sha1 - - def test_File_size_difference(self): - a = {'path': '', 'name': '', 'sha1':'', 'size': 4096} - b = {'path': '', 'name': '', 'sha1':'', 'size': 4096} - a_file = models.File(a) - b_file = models.File(b) - assert 0 == a_file.size_difference(b_file) - b['size'] = 2048 - b_file = models.File(b) - assert 2048 == a_file.size_difference(b_file) - b['size'] = 8192 - b_file = models.File(b) - assert -4096 == a_file.size_difference(b_file) - - def test_Copyright_to_dict_simple(self): - data = { - "statements": [ - "Copyright (c) 1995-2005, 2014, 2016 Jean-loup Gailly, Mark Adler" - ], - "holders": [ - "Jean-loup Gailly, Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - - expected = { - 'statements': [ - "Copyright (c) 1995-2005, 2014, 2016 Jean-loup Gailly, Mark Adler" - ], - 'holders': [ - "Jean-loup Gailly, Mark Adler" - ] - } - - result = models.Copyright(data).to_dict() - - assert result == expected - with pytest.raises(AttributeError): - assert result.made_up_key == "a_string" - - def test_Copyright_to_dict_empty(self): - result = models.Copyright().to_dict() - - for k,v in result.items(): - assert v == None - - def test_Copyright_object_simple(self): - data = { - "statements": [ - "Copyright (c) 1995-2005, 2014, 2016 Jean-loup Gailly, Mark Adler" - ], - "holders": [ - "Jean-loup Gailly, Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - - result = models.Copyright(data) - - assert result.statements == [ - "Copyright (c) 1995-2005, 2014, 2016 Jean-loup Gailly, Mark Adler" - ] - assert result.holders == [ - "Jean-loup Gailly, Mark Adler" - ] - with pytest.raises(AttributeError): - assert result.made_up_key == "a_string" - - def test_Copyright_object_empty(self): - result = models.Copyright() - - for attr, value in vars(result).items(): - assert value == None - - def test_File_to_dict_simple_w_copyright(self): - data = { - 'path': 'a/b/file1.txt', - 'type': 'file', - 'name': 'file1.txt', - 'size': 20, - 'sha1': '26d82f1931cbdbd83c2a6871b2cecd5cbcc8c26b', - 'fingerprint': 'e30cf09443e7878dfed3288886e97542', - 'licenses': [], - 'copyrights': [ - { - "statements": [ - "Copyright (c) 1995-2005, 2014, 2016 Jean-loup Gailly, Mark Adler" - ], - "holders": [ - "Jean-loup Gailly, Mark Adler" - ], - "authors": [], - "start_line": 1, - "end_line": 3 - } - ] - } - - expected = { - 'path': 'a/b/file1.txt', - 'type': 'file', - 'name': 'file1.txt', - 'size': 20, - 'sha1': '26d82f1931cbdbd83c2a6871b2cecd5cbcc8c26b', - 'fingerprint': 'e30cf09443e7878dfed3288886e97542', - 'original_path': '', - 'licenses': [], - 'copyrights': [ - { - "statements": [ - "Copyright (c) 1995-2005, 2014, 2016 Jean-loup Gailly, Mark Adler" - ], - "holders": [ - "Jean-loup Gailly, Mark Adler" - ] - } - ] - } - - result = models.File(data).to_dict() - - assert result == expected - with pytest.raises(AttributeError): - assert result.made_up_key == "a_string" - - def test_File_create_object_copyright_one(self): - data = { - 'path': 'a/b/file1.txt', - 'type': 'file', - 'name': 'file1.txt', - 'size': 20, - 'sha1': '26d82f1931cbdbd83c2a6871b2cecd5cbcc8c26b', - 'licenses': [], - 'copyrights': [ - { - "statements": [ - "Copyright (c) 1995-2005, 2014, 2016 Jean-loup Gailly, Mark Adler" - ], - "holders": [ - "Jean-loup Gailly, Mark Adler" - ], - "authors": [] - } - ] - } - - result = models.File(data) - - assert 'a/b/file1.txt' == result.path - assert 'file' == result.type - assert 'file1.txt' == result.name - assert 20 == result.size - assert '26d82f1931cbdbd83c2a6871b2cecd5cbcc8c26b' == result.sha1 - assert [] == result.licenses - assert len(result.copyrights) == 1 - assert result.copyrights[0].statements == [ - "Copyright (c) 1995-2005, 2014, 2016 Jean-loup Gailly, Mark Adler" - ] - with pytest.raises(AttributeError): - assert result.made_up_key == "a_string" - - def test_File_create_object_copyright_none(self): - data = { - 'path': 'a/b/file1.txt', - 'type': 'file', - 'name': 'file1.txt', - 'size': 20, - 'sha1': '26d82f1931cbdbd83c2a6871b2cecd5cbcc8c26b', - 'copyrights': [] - } - - result = models.File(data) - - assert 'a/b/file1.txt' == result.path - assert 'file' == result.type - assert 'file1.txt' == result.name - assert 20 == result.size - assert '26d82f1931cbdbd83c2a6871b2cecd5cbcc8c26b' == result.sha1 - assert [] == result.licenses - assert [] == result.copyrights - - def test_File_create_object_copyright_missing(self): - data = { - 'path': 'a/b/file1.txt', - 'type': 'file', - 'name': 'file1.txt', - 'size': 20, - 'sha1': '26d82f1931cbdbd83c2a6871b2cecd5cbcc8c26b', - } - - result = models.File(data) - - assert [] == result.copyrights - - def test_Copyright_multiple_statements_and_holders(self): - new = { - 'path': 'path/modified.txt', - 'type': 'file', - 'name': 'modified.txt', - 'size': 20, - 'sha1': 'a', - 'original_path': '', - 'licenses': [], - 'copyrights': [ - { - "statements": [ - "Copyright (c) 1995-2005, 2014, 2016 Jean-loup Gailly, Mark Adler", - "Copyright (c) 1998 by Andreas R. Kleinert", - "Copyright (c) 2002-2004 Dmitriy Anisimkov", - "Copyright (c) 1998, 2007 Brian Raiter", - "Copyright (c) 1997,99 Borland Corp.", - "(c) Copyright Henrik Ravn 2004", - "Copyright (c) 1995-2010 Jean-loup Gailly, Brian Raiter and Gilles Vollant.", - "Copyright (c) 2003 Chris Anderson", - "Copyright (c) 1997 Christian Michelsen Research as Advanced Computing", - "Copyright (c) 2009-2010 Mathias Svensson http://result42.com", - "Copyright (c) 1990-2000 Info-ZIP.", - "Copyright (c) 1995-2005, 2014, 2016 Jean-loup Gailly, Mark Adler", - "Copyright (c) 1998 by Andreas R. Kleinert", - "Copyright (c) 2002-2004 Dmitriy Anisimkov", - "Copyright (c) 1998, 2007 Brian Raiter", - "Copyright (c) 1997,99 Borland Corp.", - "(c) Copyright Henrik Ravn 2004", - "Copyright (c) 1995-2010 Jean-loup Gailly, Brian Raiter and Gilles Vollant.", - "Copyright (c) 2003 Chris Anderson", - "Copyright (c) 1997 Christian Michelsen Research as Advanced Computing", - "Copyright (c) 2009-2010 Mathias Svensson http://result42.com", - "Copyright (c) 1990-2000 Info-ZIP." - ], - "holders": [ - "Jean-loup Gailly, Mark Adler", - "Andreas R. Kleinert", - "Dmitriy Anisimkov", - "Brian Raiter", - "Borland Corp.", - "Henrik Ravn", - "Jean-loup Gailly, Brian Raiter, Gilles Vollant", - "Chris Anderson", - "Christian Michelsen Research as Advanced Computing", - "Mathias Svensson", - "Info-ZIP", - "Jean-loup Gailly, Mark Adler", - "Andreas R. Kleinert", - "Dmitriy Anisimkov", - "Brian Raiter", - "Borland Corp.", - "Henrik Ravn", - "Jean-loup Gailly, Brian Raiter, Gilles Vollant", - "Chris Anderson", - "Christian Michelsen Research as Advanced Computing", - "Mathias Svensson", - "Info-ZIP" - ], - "authors": [] - } - ] - } - - result_new = models.File(new) - new_copyrights = result_new.copyrights.pop() - - assert new_copyrights.statements == [ - "Copyright (c) 1995-2005, 2014, 2016 Jean-loup Gailly, Mark Adler", - "Copyright (c) 1998 by Andreas R. Kleinert", - "Copyright (c) 2002-2004 Dmitriy Anisimkov", - "Copyright (c) 1998, 2007 Brian Raiter", - "Copyright (c) 1997,99 Borland Corp.", - "(c) Copyright Henrik Ravn 2004", - "Copyright (c) 1995-2010 Jean-loup Gailly, Brian Raiter and Gilles Vollant.", - "Copyright (c) 2003 Chris Anderson", - "Copyright (c) 1997 Christian Michelsen Research as Advanced Computing", - "Copyright (c) 2009-2010 Mathias Svensson http://result42.com", - "Copyright (c) 1990-2000 Info-ZIP.", - "Copyright (c) 1995-2005, 2014, 2016 Jean-loup Gailly, Mark Adler", - "Copyright (c) 1998 by Andreas R. Kleinert", - "Copyright (c) 2002-2004 Dmitriy Anisimkov", - "Copyright (c) 1998, 2007 Brian Raiter", - "Copyright (c) 1997,99 Borland Corp.", - "(c) Copyright Henrik Ravn 2004", - "Copyright (c) 1995-2010 Jean-loup Gailly, Brian Raiter and Gilles Vollant.", - "Copyright (c) 2003 Chris Anderson", - "Copyright (c) 1997 Christian Michelsen Research as Advanced Computing", - "Copyright (c) 2009-2010 Mathias Svensson http://result42.com", - "Copyright (c) 1990-2000 Info-ZIP." - ] - - assert new_copyrights.holders == [ - "Jean-loup Gailly, Mark Adler", - "Andreas R. Kleinert", - "Dmitriy Anisimkov", - "Brian Raiter", - "Borland Corp.", - "Henrik Ravn", - "Jean-loup Gailly, Brian Raiter, Gilles Vollant", - "Chris Anderson", - "Christian Michelsen Research as Advanced Computing", - "Mathias Svensson", - "Info-ZIP", - "Jean-loup Gailly, Mark Adler", - "Andreas R. Kleinert", - "Dmitriy Anisimkov", - "Brian Raiter", - "Borland Corp.", - "Henrik Ravn", - "Jean-loup Gailly, Brian Raiter, Gilles Vollant", - "Chris Anderson", - "Christian Michelsen Research as Advanced Computing", - "Mathias Svensson", - "Info-ZIP" - ] - - def test_Copyright_unusual_characters(self): - new = { - 'path': 'path/modified.txt', - 'type': 'file', - 'name': 'modified.txt', - 'size': 20, - 'sha1': 'a', - 'original_path': '', - 'licenses': [], - 'copyrights': [ - { - "statements": [ - "~@ \n \r", - " ", - "\x80abc", - "\xc3", - "\xa0", - "\xaa", - "\xb9", - "\xa9", - "\xa8", - "\xb4", - "\xae", - "-", - "\xe2", - "\x80", - "\x99", - "\xa2", - "\xa7", - "\xbb", - "\xaf", - "U+00E9", - "\xc3\xa9" - - ], - "holders": [ - "~@ \n \r", - " ", - "\x80abc", - "\xc3", - "\xa0", - "\xaa", - "\xb9", - "\xa9", - "\xa8", - "\xb4", - "\xae", - "-", - "\xe2", - "\x80", - "\x99", - "\xa2", - "\xa7", - "\xbb", - "\xaf", - "U+00E9", - "\xc3\xa9" - ], - "authors": [] - } - ] - } - - result_new = models.File(new) - new_copyrights = result_new.copyrights.pop() - - assert new_copyrights.statements == [ - "~@ \n \r", - " ", - "\x80abc", - "\xc3", - "\xa0", - "\xaa", - "\xb9", - "\xa9", - "\xa8", - "\xb4", - "\xae", - "-", - "\xe2", - "\x80", - "\x99", - "\xa2", - "\xa7", - "\xbb", - "\xaf", - "U+00E9", - "\xc3\xa9" - ] - - assert new_copyrights.holders == [ - "~@ \n \r", - " ", - "\x80abc", - "\xc3", - "\xa0", - "\xaa", - "\xb9", - "\xa9", - "\xa8", - "\xb4", - "\xae", - "-", - "\xe2", - "\x80", - "\x99", - "\xa2", - "\xa7", - "\xbb", - "\xaf", - "U+00E9", - "\xc3\xa9" - ] diff --git a/tests/test_utils.py b/tests/test_utils.py index 75068800..a3231aa8 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -39,7 +39,6 @@ from commoncode.resource import VirtualCodebase import deltacode from deltacode import utils -from deltacode import models from deltacode import DeltaCode @@ -64,6 +63,7 @@ def test_update_from_license_info_empty(self): assert test_delta.score == 0 + @pytest.mark.xfail(reason='Tests no longer required having None paths') def test_update_from_license_info_non_modified(self): test_file = models.File({'path':'/test/path.txt', 'name': 'path.txt'}) test_delta = deltacode.Delta(old_file=test_file) From 5b8687b678e685b1d057acc8b0bac3f1bf01c0c7 Mon Sep 17 00:00:00 2001 From: Pratik Dey Date: Sat, 17 Jul 2021 19:46:20 +0530 Subject: [PATCH 2/4] refactoring the codebase Signed-off-by: Pratik Dey --- src/deltacode/__init__.py | 30 ++++++++++++++++-------------- src/deltacode/cli.py | 4 ++-- src/deltacode/utils.py | 10 ---------- tests/test_deltacode.py | 1 - 4 files changed, 18 insertions(+), 27 deletions(-) diff --git a/src/deltacode/__init__.py b/src/deltacode/__init__.py index 7f00bdda..4383e835 100644 --- a/src/deltacode/__init__.py +++ b/src/deltacode/__init__.py @@ -58,6 +58,22 @@ def __init__(self, new_path, old_path, options): self.deltas = [] self.errors = [] + self._populate(new_path, old_path) + + self.new_scan_options = [] + self.old_scan_options = [] + self.determine_delta() + self.options_diff() + self.license_diff() + self.copyright_diff() + self.stats.calculate_stats() + self.similarity() + # Sort deltas by score, descending, i.e., high > low, and then by + # factors, alphabetically. Run the least significant sort first. + self.deltas.sort(key=lambda Delta: Delta.factors, reverse=False) + self.deltas.sort(key=lambda Delta: Delta.score, reverse=True) + + def _populate(self, new_path, old_path): if os.path.isfile(new_path) and os.path.isfile(old_path): self.codebase1 = VirtualCodebase(new_path) self.codebase2 = VirtualCodebase(old_path) @@ -71,20 +87,6 @@ def __init__(self, new_path, old_path, options): self.stats = Stat( self.codebase1.compute_counts()[0], self.codebase2.compute_counts()[0] ) - self.new_scan_options = [] - self.old_scan_options = [] - self.new_files_errors = [] - self.old_files_errors = [] - self.determine_delta() - self.options_diff() - self.license_diff() - self.copyright_diff() - self.stats.calculate_stats() - self.similarity() - # Sort deltas by score, descending, i.e., high > low, and then by - # factors, alphabetically. Run the least significant sort first. - self.deltas.sort(key=lambda Delta: Delta.factors, reverse=False) - self.deltas.sort(key=lambda Delta: Delta.score, reverse=True) def similarity(self): """ diff --git a/src/deltacode/cli.py b/src/deltacode/cli.py index eed77e7b..68985e7f 100644 --- a/src/deltacode/cli.py +++ b/src/deltacode/cli.py @@ -32,7 +32,7 @@ from deltacode import DeltaCode from deltacode import __version__ -from deltacode.utils import deltas, get_notice, collect_errors +from deltacode.utils import deltas, get_notice def write_json(deltacode, outfile, all_delta_types=False): @@ -48,7 +48,7 @@ def write_json(deltacode, outfile, all_delta_types=False): # ('old_scan_options', deltacode.old_scan_options), ('deltacode_options', deltacode.options), ('deltacode_version', __version__), - ('deltacode_errors', collect_errors(deltacode)), + ('deltacode_errors', []), ('deltas_count', len([d for d in deltas(deltacode, all_delta_types)])), ('delta_stats', deltacode.stats.to_dict()), ('deltas', deltas(deltacode, all_delta_types)) diff --git a/src/deltacode/utils.py b/src/deltacode/utils.py index 2a9d7c63..876f6a97 100644 --- a/src/deltacode/utils.py +++ b/src/deltacode/utils.py @@ -183,16 +183,6 @@ def update_modified_from_copyright_info(delta): if new_holders != old_holders: delta.update(5, "copyright change") - -def collect_errors(deltacode): - errors = [] - errors.extend(deltacode.new_files_errors) - errors.extend(deltacode.old_files_errors) - errors.extend(deltacode.errors) - - return errors - - def deltas(deltacode, all_delta_types=False): """ Return a generator of Delta dictionaries for JSON serialized ouput. Omit diff --git a/tests/test_deltacode.py b/tests/test_deltacode.py index c90cfd21..eadcaccb 100644 --- a/tests/test_deltacode.py +++ b/tests/test_deltacode.py @@ -37,7 +37,6 @@ from deltacode import DeltaCode from deltacode import test_utils from deltacode import utils -from deltacode.utils import collect_errors from deltacode.test_utils import get_aligned_path from commoncode.resource import VirtualCodebase From 2e9d41694c56eb9aad56079e6ecfc25a77ad6169 Mon Sep 17 00:00:00 2001 From: Pratik Dey Date: Tue, 20 Jul 2021 18:11:55 +0530 Subject: [PATCH 3/4] removing errors flag Signed-off-by: Pratik Dey --- src/deltacode/cli.py | 1 - src/deltacode/test_utils.py | 1 - tests/data/deltacode/coala-expected-result.json | 1 - tests/data/deltacode/sugar-coala-expected.json | 1 - tests/data/deltacode/sugar-expected.json | 1 - tests/test_cli.py | 8 -------- 6 files changed, 13 deletions(-) diff --git a/src/deltacode/cli.py b/src/deltacode/cli.py index 68985e7f..3c1b2629 100644 --- a/src/deltacode/cli.py +++ b/src/deltacode/cli.py @@ -48,7 +48,6 @@ def write_json(deltacode, outfile, all_delta_types=False): # ('old_scan_options', deltacode.old_scan_options), ('deltacode_options', deltacode.options), ('deltacode_version', __version__), - ('deltacode_errors', []), ('deltas_count', len([d for d in deltas(deltacode, all_delta_types)])), ('delta_stats', deltacode.stats.to_dict()), ('deltas', deltas(deltacode, all_delta_types)) diff --git a/src/deltacode/test_utils.py b/src/deltacode/test_utils.py index 5d8917bd..ef86ca42 100644 --- a/src/deltacode/test_utils.py +++ b/src/deltacode/test_utils.py @@ -160,4 +160,3 @@ def streamline_headers(headers): """ headers.pop('deltacode_version', None) headers.pop('deltacode_options', None) - streamline_errors(headers['deltacode_errors']) diff --git a/tests/data/deltacode/coala-expected-result.json b/tests/data/deltacode/coala-expected-result.json index 7b34045e..b969c41b 100644 --- a/tests/data/deltacode/coala-expected-result.json +++ b/tests/data/deltacode/coala-expected-result.json @@ -6,7 +6,6 @@ "--all-delta-types": true }, "deltacode_version": "1.0.1.dev112+gde3c583.d20210613", - "deltacode_errors": [], "deltas_count": 141, "delta_stats": { "old_files_count": 115, diff --git a/tests/data/deltacode/sugar-coala-expected.json b/tests/data/deltacode/sugar-coala-expected.json index 9c44742b..1f0ad02f 100644 --- a/tests/data/deltacode/sugar-coala-expected.json +++ b/tests/data/deltacode/sugar-coala-expected.json @@ -1,6 +1,5 @@ { "deltacode_notice": "Generated with DeltaCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nDeltaCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nDeltaCode is a free software codebase-comparison tool from nexB Inc. and others.\nVisit https://github.com/nexB/deltacode/ for support and download.", - "deltacode_errors": [], "deltas_count": 250, "delta_stats": { "old_files_count": 115, diff --git a/tests/data/deltacode/sugar-expected.json b/tests/data/deltacode/sugar-expected.json index 630d4d13..ee88bbc1 100644 --- a/tests/data/deltacode/sugar-expected.json +++ b/tests/data/deltacode/sugar-expected.json @@ -1,6 +1,5 @@ { "deltacode_notice": "Generated with DeltaCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nDeltaCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nDeltaCode is a free software codebase-comparison tool from nexB Inc. and others.\nVisit https://github.com/nexB/deltacode/ for support and download.", - "deltacode_errors": [], "deltas_count": 136, "delta_stats": { "old_files_count": 132, diff --git a/tests/test_cli.py b/tests/test_cli.py index ddc3f372..5894346c 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -107,8 +107,6 @@ def test_json_output_option_selected_all_selected(self): assert json_result.get("deltacode_options") == options - assert json_result.get("deltacode_errors") == [] - assert json_result.get("deltas_count") == 8 moved_expected = { @@ -272,8 +270,6 @@ def test_json_output_option_selected_all_not_selected(self): assert json_result.get("deltacode_options") == options - assert json_result.get("deltacode_errors") == [] - assert json_result.get("deltas_count") == 1 moved_expected = { @@ -367,8 +363,6 @@ def test_no_output_option_selected_all_selected(self): assert "deltacode_options" in result.output assert '"--all-delta-types": true' in result.output - assert '"deltacode_errors": []' in result.output - assert '"factors"' in result.output assert '"score": 0' in result.output @@ -415,8 +409,6 @@ def test_no_output_option_selected_all_not_selected(self): assert "deltacode_options" in result.output assert '"--all-delta-types": false' in result.output - assert '"deltacode_errors": []' in result.output - assert '"factors":' in result.output assert '"score": 0' in result.output From 87cf9c89c432f971e0ad8c51bdfd30c69ad97ac8 Mon Sep 17 00:00:00 2001 From: Pratik Dey Date: Tue, 20 Jul 2021 18:16:30 +0530 Subject: [PATCH 4/4] remove unwanted tests Signed-off-by: Pratik Dey --- tests/test_deltacode.py | 210 ---------------------------------------- tests/test_utils.py | 88 ----------------- 2 files changed, 298 deletions(-) diff --git a/tests/test_deltacode.py b/tests/test_deltacode.py index eadcaccb..833358bb 100644 --- a/tests/test_deltacode.py +++ b/tests/test_deltacode.py @@ -99,101 +99,6 @@ def test_DeltaCode_align_scan_zlib_alignment_exception(self): assert f.rid != None assert not f.is_filtered - @pytest.mark.xfail(reason='Tests no longer required having None paths') - def test_DeltaCode_invalid_paths(self): - test_path_1 = '/some/invalid/path/1.json' - test_path_2 = '/some/invalid/path/2.json' - - options = OrderedDict([ - ('--all-delta-types', False) - ]) - - result = DeltaCode(test_path_1, test_path_2, options) - - assert result.codebase1 == None - assert result.codebase2 == None - assert len(result.errors) >= 1 - - @pytest.mark.xfail(reason='Tests no longer required having invalid paths') - def test_DeltaCode_empty_paths(self): - options = OrderedDict([ - ('--all-delta-types', False) - ]) - - result = DeltaCode('', '', options) - - assert result.codebase1 == None - - assert result.codebase2 == None - - assert result.deltas == [] - - assert result.errors - - @pytest.mark.xfail(reason='Tests no longer required having None paths') - def test_DeltaCode_None_paths(self): - options = OrderedDict([ - ('--all-delta-types', False) - ]) - - result = DeltaCode(None, None, options) - - assert result.errors - assert result.codebase1 == None - assert result.codebase2 == None - assert result.deltas == [] - - @pytest.mark.xfail(reason='Tests no longer required having None paths') - def test_Delta_one_None(self): - try: - file_obj = VirtualCodebase('fake/path.txt') - except IOError: - file_obj = None - pass - first_None = deltacode.Delta(10, None, file_obj) - second_None = deltacode.Delta(100, file_obj, None) - - assert first_None.score == 10 - assert second_None.score == 100 - - assert first_None.factors == [] - assert second_None.factors == [] - - expected_first = OrderedDict([ - ('status', ''), - ('factors', []), - ('score', 10), - ('new', None), - ('old', OrderedDict([ - ('path', 'fake/path.txt'), - ('type', ''), - ('name', ''), - ('size', ''), - ('sha1', ''), - ('fingerprint', ''), - ('original_path', ''), - ('licenses', []), - ('copyrights', []) - ])) - ]) - - expected_second = OrderedDict([ - ('status', ''), - ('factors', []), - ('score', 100), - ('new', OrderedDict([ - ('path', 'fake/path.txt'), - ('type', ''), - ('name', ''), - ('size', ''), - ('sha1', ''), - ('fingerprint', ''), - ('original_path', ''), - ('licenses', []), - ('copyrights', []) - ])), - ('old', None) - ]) def test_DeltaCode_license_modified(self): new_scan = self.get_test_loc('deltacode/scan_modified_new_license_added.json') @@ -408,77 +313,6 @@ def test_Delta_to_dict_moved(self): assert delta.to_dict(deltacode) == expected - @pytest.mark.xfail(reason='Tests no longer required having None paths') - def test_Delta_create_object_removed(self): - new = None - old = models.File({'path': 'path/removed.txt'}) - - delta = deltacode.Delta(0, new, old) - delta.factors.append('removed') - - assert type(delta.new_file) == type(None) - assert delta.old_file.path == 'path/removed.txt' - assert 'removed' in delta.factors - assert delta.score == 0 - - @pytest.mark.xfail(reason='Tests no longer required having None paths') - def test_Delta_create_object_added(self): - new = models.File({'path': 'path/added.txt'}) - old = None - - delta = deltacode.Delta(100, new, old) - delta.factors.append('added') - - assert delta.new_file.path == 'path/added.txt' - assert type(delta.old_file) == type(None) - assert 'added' in delta.factors - assert delta.score == 100 - - @pytest.mark.xfail(reason='Tests no longer required having None paths') - def test_Delta_create_object_modified(self): - new = models.File({'path': 'path/modified.txt', 'sha1': 'a'}) - old = models.File({'path': 'path/modified.txt', 'sha1': 'b'}) - - delta = deltacode.Delta(20, new, old) - delta.factors.append('modified') - - assert delta.new_file.path == 'path/modified.txt' - assert delta.new_file.sha1 == 'a' - assert delta.old_file.path == 'path/modified.txt' - assert delta.old_file.sha1 == 'b' - assert 'modified' in delta.factors - assert delta.score == 20 - - @pytest.mark.xfail(reason='Tests no longer required having None paths') - def test_Delta_create_object_unmodified(self): - new = models.File({'path': 'path/unmodified.txt', 'sha1': 'a'}) - old = models.File({'path': 'path/unmodified.txt', 'sha1': 'a'}) - - delta = deltacode.Delta(0, new, old) - delta.factors.append('unmodified') - - assert delta.new_file.path == 'path/unmodified.txt' - assert delta.new_file.sha1 == 'a' - assert delta.old_file.path == 'path/unmodified.txt' - assert delta.old_file.sha1 == 'a' - assert 'unmodified' in delta.factors - assert delta.score == 0 - - @pytest.mark.xfail(reason='Tests no longer required having None paths') - def test_Delta_create_object_moved(self): - new = models.File({'path': 'path_new/moved.txt', 'sha1': 'a'}) - old = models.File({'path': 'path_old/moved.txt', 'sha1': 'a'}) - - delta = deltacode.Delta(0, new, old) - delta.factors.append('moved') - - assert delta.new_file.path == 'path_new/moved.txt' - assert delta.new_file.sha1 == 'a' - assert delta.old_file.path == 'path_old/moved.txt' - assert delta.old_file.sha1 == 'a' - assert 'moved' in delta.factors - assert delta.score == 0 - def test_Delta_create_object_empty(self): delta = deltacode.Delta() @@ -1116,50 +950,6 @@ def test_score_license_change_no_copyright_change(self): assert len([i for i in deltas_object if i.score == 25]) == 0 assert len([i for i in deltas_object if i.score == 20]) == 0 - @pytest.mark.xfail(reason='Tests no longer required having None paths') - def test_Delta_update_added(self): - new = models.File({ - 'path': 'path/added.txt', - 'type': 'file', - 'name': 'added.txt', - 'size': 20, - 'sha1': 'a', - 'original_path': '' - }) - - delta = deltacode.Delta(100, new, None) - - delta.update(25, 'This is a test of an added file') - - assert delta.score == 125 - assert delta.factors == ['This is a test of an added file'] - - @pytest.mark.xfail(reason='Tests no longer required having None paths') - def test_Delta_update_modified(self): - new = models.File({ - 'path': 'path/modified.txt', - 'type': 'file', - 'name': 'modified.txt', - 'size': 20, - 'sha1': 'a', - 'original_path': '' - }) - old = models.File({ - 'path': 'path/modified.txt', - 'type': 'file', - 'name': 'modified.txt', - 'size': 21, - 'sha1': 'b', - 'original_path': '' - }) - - delta = deltacode.Delta(20, new, old) - - delta.update(25, 'This is a test of a modified file') - - assert delta.score == 45 - assert delta.factors == ['This is a test of a modified file'] - def test_Delta_update_license_change_no_copyright_change(self): new_scan = self.get_test_loc('deltacode/score_license_change_no_copyright_change_new.json') old_scan = self.get_test_loc('deltacode/score_license_change_no_copyright_change_old.json') diff --git a/tests/test_utils.py b/tests/test_utils.py index a3231aa8..d52b7d5d 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -63,16 +63,6 @@ def test_update_from_license_info_empty(self): assert test_delta.score == 0 - @pytest.mark.xfail(reason='Tests no longer required having None paths') - def test_update_from_license_info_non_modified(self): - test_file = models.File({'path':'/test/path.txt', 'name': 'path.txt'}) - test_delta = deltacode.Delta(old_file=test_file) - - utils.update_from_license_info(test_delta, set()) - - assert test_delta.score == 0 - assert len(test_delta.factors) == 0 - def test_update_from_license_info_no_license_key_value(self): test_file_new = self.get_test_loc('utils/update_from_license_info_no_license_key_value_new.json') test_file_old = self.get_test_loc('utils/update_from_license_info_no_license_key_value_old.json') @@ -277,84 +267,6 @@ def test_update_from_license_info_copyleft_to_copyleft_limited(self): assert 'license change' in deltas.factors assert 'copyleft limited added' in deltas.factors - @pytest.mark.xfail(reason='Tests no longer required having None paths') - def test_update_from_license_info_file_added_permissive_license(self): - test_file_new = models.File({ - 'path':'/test/path.txt', - 'name': 'path.txt', - 'sha1': 'a', - 'original_path': '', - "licenses": [ - { - "key": "mit", - "score": 80.0, - "short_name": "MIT License", - "category": "Permissive" - } - ] - }) - - test_delta = deltacode.Delta(100, test_file_new, None) - - utils.update_added_from_license_info(test_delta, unique_categories) - - assert test_delta.score == 120 - assert len(test_delta.factors) == 2 - - assert 'license info added' in test_delta.factors - assert 'permissive added' in test_delta.factors - - @pytest.mark.xfail(reason='Tests no longer required having None paths') - def test_update_from_license_info_file_added_commercial_and_copyleft_licenses(self): - test_file_new = models.File({ - 'path':'/test/path.txt', - 'name': 'path.txt', - 'sha1': 'a', - 'original_path': '', - "licenses": [ - { - "key": "commercial-license", - "score": 55.0, - "short_name": "Commercial License", - "category": "Commercial", - "owner": "Unspecified" - }, - { - "key": "adapt-1.0", - "score": 15.0, - "short_name": "APL 1.0", - "category": "Copyleft", - "owner": "OSI - Open Source Initiative" - } - ] - }) - - test_delta = deltacode.Delta(100, test_file_new, None) - - utils.update_added_from_license_info(test_delta, unique_categories) - - assert test_delta.score == 160 - assert len(test_delta.factors) == 3 - - assert 'license info added' in test_delta.factors - - expected_factors = [ - 'license info added', - 'commercial added', - 'copyleft added' - ] - - for factor in expected_factors: - assert factor in test_delta.factors - - @pytest.mark.xfail(reason='Tests no longer required having None paths') - def test_update_from_copyright_info_empty(self): - test_delta = deltacode.Delta() - - utils.update_from_copyright_info(test_delta) - - assert test_delta.score == 0 - def test_update_from_copyright_info_non_modified(self): test_file_new = self.get_test_loc('utils/update_from_copyright_info_non_modified_new.json') test_file_old = self.get_test_loc('utils/update_from_copyright_info_non_modified_old.json')