diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b67f8d1d..d97b62f0 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,39 @@ Changelog ========= +v0.5.0 +------- +- FetchCode now supports retrieving package info for following generic packages: + * pkg:generic/linux + * pkg:generic/mtd-utils + * pkg:generic/barebox + * pkg:generic/e2fsprogs + * pkg:generic/udhcp + * pkg:generic/miniupnpc + * pkg:generic/miniupnpd + * pkg:generic/minissdpd + * pkg:generic/erofs-utils + * pkg:openssl/openssl + +- FetchCode also supports retrieving package info for packages hosted on GitHub specifically. + * pkg:github/avahi/avahi + * pkg:github/bestouff/genext2fs + * pkg:github/dosfstools/dosfstools + * pkg:github/google/brotli + * pkg:github/hewlettpackard/wireless-tools + * pkg:github/inotify-tools/inotify-tools + * pkg:github/libbpf/bpftool + * pkg:github/llvm/llvm-project + * pkg:github/nixos/nix + * pkg:github/plougher/squashfs-tools + * pkg:github/pupnp/pupnp + * pkg:github/python/cpython + * pkg:github/rpm-software-management/rpm + * pkg:github/shadow-maint/shadow + * pkg:github/sqlite/sqlite + * pkg:github/u-boot/u-boot + + v0.4.0 ------- - FetchCode now supports retrieving package info for following generic packages: diff --git a/src/fetchcode/package.py b/src/fetchcode/package.py index 3664cfb0..eb81bff2 100644 --- a/src/fetchcode/package.py +++ b/src/fetchcode/package.py @@ -27,8 +27,11 @@ from fetchcode.package_util import GITHUB_SOURCE_BY_PACKAGE from fetchcode.package_util import IPKG_RELEASES +from fetchcode.package_util import UDHCP_RELEASES +from fetchcode.package_util import ErofsUtilsGitHubSource from fetchcode.package_util import GitHubSource from fetchcode.package_util import MiniupnpPackagesGitHubSource +from fetchcode.package_util import OpenSSLGitHubSource from fetchcode.packagedcode_models import Package from fetchcode.utils import get_response @@ -242,7 +245,25 @@ def get_github_data_for_miniupnp(purl): ) -@router.route("pkg:generic/erofs-utils.*",) +@router.route( + "pkg:openssl/openssl.*", +) +def get_github_data_for_openssl(purl): + """ + Yield `Package` object for OpenSSL package from GitHub. + """ + generic_purl = PackageURL.from_string(purl) + github_repo_purl = PackageURL( + type="github", + namespace="openssl", + name="openssl", + version=generic_purl.version, + ) + + return OpenSSLGitHubSource.get_package_info(github_repo_purl) + + +@router.route("pkg:generic/erofs-utils.*") def get_github_data_for_erofs_utils(purl): """ Yield `Package` object for erofs-utils package from GitHub. @@ -255,7 +276,7 @@ def get_github_data_for_erofs_utils(purl): version=generic_purl.version, ) - return GitHubSource.get_package_info(github_repo_purl) + return ErofsUtilsGitHubSource.get_package_info(github_repo_purl) @router.route("pkg:bitbucket/.*") @@ -384,6 +405,37 @@ def get_package_info(cls, package_url): ) +# The udhcp is no longer maintained as a standalone project. +# It has been fully integrated into busybox. +class UdhcpDirectoryListedSource(DirectoryListedSource): + source_url = ( + "https://web.archive.org/web/20021209021312/http://udhcp.busybox.net/source/" + ) + + @classmethod + def get_package_info(cls, package_url): + + version = package_url.version + if version and version in UDHCP_RELEASES: + archive = UDHCP_RELEASES[version] + yield Package( + homepage_url=cls.source_url, + download_url=archive["url"], + release_date=archive["date"], + **package_url.to_dict(), + ) + + else: + for version, data in UDHCP_RELEASES.items(): + purl = PackageURL(type="generic", name="udhcp", version=version) + yield Package( + homepage_url=cls.source_url, + download_url=data["url"], + release_date=data["date"], + **purl.to_dict(), + ) + + class IpkgDirectoryListedSource(DirectoryListedSource): source_url = "https://web.archive.org/web/20090326020239/http://handhelds.org/download/packages/ipkg/" is_nested = False @@ -612,6 +664,7 @@ class BareboxDirectoryListedSource(DirectoryListedSource): is_nested = False ignored_files_and_dir = [] + class LinuxDirectoryListedSource(DirectoryListedSource): source_url = "https://cdn.kernel.org/pub/linux/kernel/" # Source archive ex: linux-1.2.3.tar.gz @@ -631,8 +684,11 @@ class LinuxDirectoryListedSource(DirectoryListedSource): "uemacs/", ] + class E2fsprogsDirectoryListedSource(DirectoryListedSource): - source_url = "https://mirrors.edge.kernel.org/pub/linux/kernel/people/tytso/e2fsprogs/" + source_url = ( + "https://mirrors.edge.kernel.org/pub/linux/kernel/people/tytso/e2fsprogs/" + ) # Source archive ex: e2fsprogs-1.2.3.tar.gz source_archive_regex = re.compile(r"^(e2fsprogs-)(?P[\w.-]*)(.tar.gz)$") is_nested = True @@ -665,6 +721,7 @@ class E2fsprogsDirectoryListedSource(DirectoryListedSource): "pkg:generic/barebox.*", "pkg:generic/linux.*", "pkg:generic/e2fsprogs.*", + "pkg:generic/udhcp.*", ] DIR_LISTED_SOURCE_BY_PACKAGE_NAME = { @@ -692,6 +749,7 @@ class E2fsprogsDirectoryListedSource(DirectoryListedSource): "barebox": BareboxDirectoryListedSource, "linux": LinuxDirectoryListedSource, "e2fsprogs": E2fsprogsDirectoryListedSource, + "udhcp": UdhcpDirectoryListedSource, } diff --git a/src/fetchcode/package_util.py b/src/fetchcode/package_util.py index e8bb7cc6..f75d10d3 100644 --- a/src/fetchcode/package_util.py +++ b/src/fetchcode/package_util.py @@ -14,9 +14,6 @@ # CONDITIONS OF ANY KIND, either express or implied. See the License for the # specific language governing permissions and limitations under the License. -# Since there will be no new releases of ipkg, it's better to -# store them in a dictionary rather than fetching them every time. - import dataclasses import re @@ -211,6 +208,54 @@ class RpmGitHubSource(GitHubSource): } +class OpenSSLGitHubSource(GitHubSource): + version_regex = re.compile(r"(OpenSSL_|openssl-)(?P.+)") + ignored_tag_regex = None + + @classmethod + def get_package_info(cls, gh_purl): + + packages = get_github_packages( + gh_purl, + cls.version_regex, + cls.ignored_tag_regex, + cls.get_default_package(gh_purl), + ) + + for package in packages: + package_dict = package.to_dict() + package_dict["type"] = "openssl" + package_dict["namespace"] = None + package_dict["name"] = "openssl" + package_dict["version"] = package_dict["version"].replace("_", ".") + + yield package_from_dict(package_dict) + + +class ErofsUtilsGitHubSource(GitHubSource): + version_regex = None + ignored_tag_regex = None + + @classmethod + def get_package_info(cls, gh_purl): + + packages = get_github_packages( + gh_purl, + cls.version_regex, + cls.ignored_tag_regex, + cls.get_default_package(gh_purl), + ) + + for package in packages: + package_dict = package.to_dict() + package_dict["type"] = "generic" + package_dict["namespace"] = None + package_dict["name"] = "erofs-utils" + package_dict["version"] = package_dict["version"].replace("_", ".") + + yield package_from_dict(package_dict) + + class MiniupnpPackagesGitHubSource(GitHubSource): version_regex = None ignored_tag_regex = None @@ -231,14 +276,53 @@ def get_package_info(cls, gh_purl, package_name): for package in packages: package_dict = package.to_dict() + package_dict["type"] = "generic" package_dict["namespace"] = None package_dict["name"] = package_name - package_dict["type"] = "generic" package_dict["version"] = package_dict["version"].replace("_", ".") yield package_from_dict(package_dict) +# Archive source https://web.archive.org/web/20021209021312/http://udhcp.busybox.net/source/ +UDHCP_RELEASES = { + "0.9.1": { + "url": "https://web.archive.org/web/20021209021312/http://udhcp.busybox.net/source//udhcp-0.9.1.tar.gz", + "date": "2001-08-10T20:17:00", + }, + "0.9.2": { + "url": "https://web.archive.org/web/20021209021312/http://udhcp.busybox.net/source//udhcp-0.9.2.tar.gz", + "date": "2001-08-10T20:17:00", + }, + "0.9.3": { + "url": "https://web.archive.org/web/20021209021312/http://udhcp.busybox.net/source//udhcp-0.9.3.tar.gz", + "date": "2001-08-20T18:23:00", + }, + "0.9.4": { + "url": "https://web.archive.org/web/20021209021312/http://udhcp.busybox.net/source//udhcp-0.9.4.tar.gz", + "date": "2001-08-27T15:41:00", + }, + "0.9.5": { + "url": "https://web.archive.org/web/20021209021312/http://udhcp.busybox.net/source//udhcp-0.9.5.tar.gz", + "date": "2001-09-14T18:19:00", + }, + "0.9.6": { + "url": "https://web.archive.org/web/20021209021312/http://udhcp.busybox.net/source//udhcp-0.9.6.tar.gz", + "date": "2001-10-01T13:38:00", + }, + "0.9.7": { + "url": "https://web.archive.org/web/20021209021312/http://udhcp.busybox.net/source//udhcp-0.9.7.tar.gz", + "date": "2002-05-27T00:48:00", + }, + "0.9.8": { + "url": "https://web.archive.org/web/20021209021312/http://udhcp.busybox.net/source//udhcp-0.9.8.tar.gz", + "date": "2002-10-31T12:10:00", + }, +} + + +# Since there will be no new releases of ipkg, it's better to +# store them in a dictionary rather than fetching them every time. IPKG_RELEASES = { "0.99.88": { "url": "https://web.archive.org/web/20090326020239/http:/handhelds.org/download/packages/ipkg/ipkg-0.99.88.tar.gz", diff --git a/tests/data/package/dirlisting/generic/udhcp-expected.json b/tests/data/package/dirlisting/generic/udhcp-expected.json new file mode 100644 index 00000000..4f345b7b --- /dev/null +++ b/tests/data/package/dirlisting/generic/udhcp-expected.json @@ -0,0 +1,290 @@ +[ + { + "type": "generic", + "namespace": null, + "name": "udhcp", + "version": "0.9.1", + "qualifiers": {}, + "subpath": null, + "primary_language": null, + "description": null, + "release_date": "2001-08-10T20:17:00", + "parties": [], + "keywords": [], + "homepage_url": "https://web.archive.org/web/20021209021312/http://udhcp.busybox.net/source/", + "download_url": "https://web.archive.org/web/20021209021312/http://udhcp.busybox.net/source//udhcp-0.9.1.tar.gz", + "api_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": null, + "code_view_url": null, + "vcs_url": null, + "copyright": null, + "license_expression": null, + "declared_license": null, + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:generic/udhcp@0.9.1", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "generic", + "namespace": null, + "name": "udhcp", + "version": "0.9.2", + "qualifiers": {}, + "subpath": null, + "primary_language": null, + "description": null, + "release_date": "2001-08-10T20:17:00", + "parties": [], + "keywords": [], + "homepage_url": "https://web.archive.org/web/20021209021312/http://udhcp.busybox.net/source/", + "download_url": "https://web.archive.org/web/20021209021312/http://udhcp.busybox.net/source//udhcp-0.9.2.tar.gz", + "api_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": null, + "code_view_url": null, + "vcs_url": null, + "copyright": null, + "license_expression": null, + "declared_license": null, + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:generic/udhcp@0.9.2", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "generic", + "namespace": null, + "name": "udhcp", + "version": "0.9.3", + "qualifiers": {}, + "subpath": null, + "primary_language": null, + "description": null, + "release_date": "2001-08-20T18:23:00", + "parties": [], + "keywords": [], + "homepage_url": "https://web.archive.org/web/20021209021312/http://udhcp.busybox.net/source/", + "download_url": "https://web.archive.org/web/20021209021312/http://udhcp.busybox.net/source//udhcp-0.9.3.tar.gz", + "api_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": null, + "code_view_url": null, + "vcs_url": null, + "copyright": null, + "license_expression": null, + "declared_license": null, + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:generic/udhcp@0.9.3", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "generic", + "namespace": null, + "name": "udhcp", + "version": "0.9.4", + "qualifiers": {}, + "subpath": null, + "primary_language": null, + "description": null, + "release_date": "2001-08-27T15:41:00", + "parties": [], + "keywords": [], + "homepage_url": "https://web.archive.org/web/20021209021312/http://udhcp.busybox.net/source/", + "download_url": "https://web.archive.org/web/20021209021312/http://udhcp.busybox.net/source//udhcp-0.9.4.tar.gz", + "api_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": null, + "code_view_url": null, + "vcs_url": null, + "copyright": null, + "license_expression": null, + "declared_license": null, + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:generic/udhcp@0.9.4", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "generic", + "namespace": null, + "name": "udhcp", + "version": "0.9.5", + "qualifiers": {}, + "subpath": null, + "primary_language": null, + "description": null, + "release_date": "2001-09-14T18:19:00", + "parties": [], + "keywords": [], + "homepage_url": "https://web.archive.org/web/20021209021312/http://udhcp.busybox.net/source/", + "download_url": "https://web.archive.org/web/20021209021312/http://udhcp.busybox.net/source//udhcp-0.9.5.tar.gz", + "api_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": null, + "code_view_url": null, + "vcs_url": null, + "copyright": null, + "license_expression": null, + "declared_license": null, + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:generic/udhcp@0.9.5", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "generic", + "namespace": null, + "name": "udhcp", + "version": "0.9.6", + "qualifiers": {}, + "subpath": null, + "primary_language": null, + "description": null, + "release_date": "2001-10-01T13:38:00", + "parties": [], + "keywords": [], + "homepage_url": "https://web.archive.org/web/20021209021312/http://udhcp.busybox.net/source/", + "download_url": "https://web.archive.org/web/20021209021312/http://udhcp.busybox.net/source//udhcp-0.9.6.tar.gz", + "api_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": null, + "code_view_url": null, + "vcs_url": null, + "copyright": null, + "license_expression": null, + "declared_license": null, + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:generic/udhcp@0.9.6", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "generic", + "namespace": null, + "name": "udhcp", + "version": "0.9.7", + "qualifiers": {}, + "subpath": null, + "primary_language": null, + "description": null, + "release_date": "2002-05-27T00:48:00", + "parties": [], + "keywords": [], + "homepage_url": "https://web.archive.org/web/20021209021312/http://udhcp.busybox.net/source/", + "download_url": "https://web.archive.org/web/20021209021312/http://udhcp.busybox.net/source//udhcp-0.9.7.tar.gz", + "api_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": null, + "code_view_url": null, + "vcs_url": null, + "copyright": null, + "license_expression": null, + "declared_license": null, + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:generic/udhcp@0.9.7", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "generic", + "namespace": null, + "name": "udhcp", + "version": "0.9.8", + "qualifiers": {}, + "subpath": null, + "primary_language": null, + "description": null, + "release_date": "2002-10-31T12:10:00", + "parties": [], + "keywords": [], + "homepage_url": "https://web.archive.org/web/20021209021312/http://udhcp.busybox.net/source/", + "download_url": "https://web.archive.org/web/20021209021312/http://udhcp.busybox.net/source//udhcp-0.9.8.tar.gz", + "api_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": null, + "code_view_url": null, + "vcs_url": null, + "copyright": null, + "license_expression": null, + "declared_license": null, + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:generic/udhcp@0.9.8", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + } +] \ No newline at end of file diff --git a/tests/data/package/github/erofs-utils-expected.json b/tests/data/package/github/erofs-utils-expected.json index 30f23d76..71aa3c8d 100644 --- a/tests/data/package/github/erofs-utils-expected.json +++ b/tests/data/package/github/erofs-utils-expected.json @@ -1,7 +1,7 @@ [ { - "type": "github", - "namespace": "erofs", + "type": "generic", + "namespace": null, "name": "erofs-utils", "version": "1.1", "qualifiers": {}, @@ -30,14 +30,14 @@ "dependencies": [], "contains_source_code": null, "source_packages": [], - "purl": "pkg:github/erofs/erofs-utils@1.1", + "purl": "pkg:generic/erofs-utils@1.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null }, { - "type": "github", - "namespace": "erofs", + "type": "generic", + "namespace": null, "name": "erofs-utils", "version": "1.2", "qualifiers": {}, @@ -66,14 +66,14 @@ "dependencies": [], "contains_source_code": null, "source_packages": [], - "purl": "pkg:github/erofs/erofs-utils@1.2", + "purl": "pkg:generic/erofs-utils@1.2", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null }, { - "type": "github", - "namespace": "erofs", + "type": "generic", + "namespace": null, "name": "erofs-utils", "version": "1.2.1", "qualifiers": {}, @@ -102,14 +102,14 @@ "dependencies": [], "contains_source_code": null, "source_packages": [], - "purl": "pkg:github/erofs/erofs-utils@1.2.1", + "purl": "pkg:generic/erofs-utils@1.2.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null }, { - "type": "github", - "namespace": "erofs", + "type": "generic", + "namespace": null, "name": "erofs-utils", "version": "1.3", "qualifiers": {}, @@ -138,14 +138,14 @@ "dependencies": [], "contains_source_code": null, "source_packages": [], - "purl": "pkg:github/erofs/erofs-utils@1.3", + "purl": "pkg:generic/erofs-utils@1.3", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null }, { - "type": "github", - "namespace": "erofs", + "type": "generic", + "namespace": null, "name": "erofs-utils", "version": "1.4", "qualifiers": {}, @@ -174,14 +174,14 @@ "dependencies": [], "contains_source_code": null, "source_packages": [], - "purl": "pkg:github/erofs/erofs-utils@1.4", + "purl": "pkg:generic/erofs-utils@1.4", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null }, { - "type": "github", - "namespace": "erofs", + "type": "generic", + "namespace": null, "name": "erofs-utils", "version": "1.5", "qualifiers": {}, @@ -210,14 +210,14 @@ "dependencies": [], "contains_source_code": null, "source_packages": [], - "purl": "pkg:github/erofs/erofs-utils@1.5", + "purl": "pkg:generic/erofs-utils@1.5", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null }, { - "type": "github", - "namespace": "erofs", + "type": "generic", + "namespace": null, "name": "erofs-utils", "version": "1.6", "qualifiers": {}, @@ -246,14 +246,14 @@ "dependencies": [], "contains_source_code": null, "source_packages": [], - "purl": "pkg:github/erofs/erofs-utils@1.6", + "purl": "pkg:generic/erofs-utils@1.6", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null }, { - "type": "github", - "namespace": "erofs", + "type": "generic", + "namespace": null, "name": "erofs-utils", "version": "1.7", "qualifiers": {}, @@ -282,14 +282,14 @@ "dependencies": [], "contains_source_code": null, "source_packages": [], - "purl": "pkg:github/erofs/erofs-utils@1.7", + "purl": "pkg:generic/erofs-utils@1.7", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null }, { - "type": "github", - "namespace": "erofs", + "type": "generic", + "namespace": null, "name": "erofs-utils", "version": "1.7.1", "qualifiers": {}, @@ -318,7 +318,7 @@ "dependencies": [], "contains_source_code": null, "source_packages": [], - "purl": "pkg:github/erofs/erofs-utils@1.7.1", + "purl": "pkg:generic/erofs-utils@1.7.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null diff --git a/tests/data/package/github/openssl-expected.json b/tests/data/package/github/openssl-expected.json new file mode 100644 index 00000000..7f803412 --- /dev/null +++ b/tests/data/package/github/openssl-expected.json @@ -0,0 +1,10298 @@ +[ + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.1c", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "1998-12-23T12:09:47", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_1c.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.1c", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.2b", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "1999-03-22T16:27:02", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_2b.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.2b", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.3a", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "1999-05-29T14:14:56", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_3a.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.3a", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.3beta1", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "1999-05-20T19:33:47", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_3beta1.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.3beta1", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.3beta2", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "1999-05-23T16:35:29", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_3beta2.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.3beta2", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.3", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "1999-05-24T20:52:13", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_3.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.3", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.4", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "1999-08-09T10:40:38", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_4.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.4", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.5a", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2000-04-01T11:15:15", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_5a.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.5a", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.5a-beta1", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2000-03-20T07:36:22", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_5a-beta1.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.5a-beta1", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.5a-beta2", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2000-03-23T21:12:50", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_5a-beta2.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.5a-beta2", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.5beta1", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2000-02-24T02:22:15", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_5beta1.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.5beta1", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.5beta2", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2000-02-27T11:07:23", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_5beta2.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.5beta2", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.5", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2000-05-25T13:20:13", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_5.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.5", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.6-beta1", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2000-10-10T09:15:50", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_6-beta1.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.6-beta1", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.6-beta2", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2000-10-10T09:15:51", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_6-beta2.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.6-beta2", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.6-beta3", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2000-09-21T09:08:44", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_6-beta3.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.6-beta3", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.6a", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2001-04-05T21:08:34", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_6a.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.6a", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.6a-beta1", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2001-03-13T16:08:32", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_6a-beta1.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.6a-beta1", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.6a-beta2", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2001-03-21T20:37:47", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_6a-beta2.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.6a-beta2", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.6a-beta3", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2001-03-30T15:59:57", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_6a-beta3.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.6a-beta3", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.6b", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2001-07-09T14:36:30", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_6b.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.6b", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.6c", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2001-12-21T01:21:23", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_6c.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.6c", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.6d", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2002-05-09T22:40:31", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_6d.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.6d", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.6d-beta1", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2002-04-17T12:28:37", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_6d-beta1.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.6d-beta1", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.6e", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2002-07-30T10:34:35", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_6e.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.6e", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.6f", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2002-08-08T20:51:52", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_6f.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.6f", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.6g", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2002-08-09T11:37:15", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_6g.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.6g", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.6h", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2002-12-05T22:44:12", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_6h.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.6h", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.6i", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2003-02-19T12:34:21", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_6i.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.6i", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.6j", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2003-04-10T20:30:41", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_6j.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.6j", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.6k", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2003-09-30T12:09:13", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_6k.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.6k", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.6l", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2003-11-04T11:30:40", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_6l.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.6l", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.6m", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2004-03-17T11:40:44", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_6m.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.6m", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.6", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2000-10-10T09:15:49", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_6.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.6", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.7-beta1", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2002-06-01T15:21:55", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_7-beta1.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.7-beta1", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.7-beta2", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2002-06-16T11:27:44", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_7-beta2.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.7-beta2", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.7-beta3", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2002-07-30T11:30:03", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_7-beta3.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.7-beta3", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.7-beta4", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2002-11-19T09:34:38", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_7-beta4.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.7-beta4", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.7-beta5", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2002-12-06T00:37:21", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_7-beta5.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.7-beta5", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.7-beta6", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2002-12-17T14:24:51", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_7-beta6.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.7-beta6", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.7a", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2003-02-19T12:33:55", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_7a.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.7a", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.7b", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2003-04-10T20:37:53", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_7b.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.7b", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.7c", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2003-09-30T12:08:23", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_7c.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.7c", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.7d", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2004-03-17T12:01:20", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_7d.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.7d", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.7e", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2004-10-25T11:24:39", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_7e.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.7e", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.7f", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2005-03-22T19:15:55", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_7f.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.7f", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.7g", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2005-04-11T15:10:07", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_7g.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.7g", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.7h", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2005-10-11T10:10:05", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_7h.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.7h", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.7i", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2005-10-14T22:15:53", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_7i.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.7i", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.7j", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2006-05-04T12:52:59", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_7j.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.7j", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.7k", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2006-09-05T08:34:07", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_7k.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.7k", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.7l", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2006-09-28T11:56:57", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_7l.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.7l", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.7m", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2007-02-23T12:49:10", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_7m.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.7m", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.7", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2002-12-30T23:54:11", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_7.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.7", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.8-beta1", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2005-05-19T19:42:04", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_8-beta1.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.8-beta1", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.8-beta2", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2005-05-24T03:42:49", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_8-beta2.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.8-beta2", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.8-beta3", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2005-05-30T23:20:33", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_8-beta3.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.8-beta3", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.8-beta4", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2005-06-06T00:39:18", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_8-beta4.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.8-beta4", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.8-beta5", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2005-06-13T03:36:21", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_8-beta5.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.8-beta5", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.8-beta6", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2005-06-21T05:49:47", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_8-beta6.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.8-beta6", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.8-post-auto-reformat", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2015-01-22T09:53:02", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_8-post-auto-reformat.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.8-post-auto-reformat", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.8-post-reformat", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2015-01-22T09:53:07", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_8-post-reformat.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.8-post-reformat", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.8-pre-auto-reformat", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2015-01-22T09:52:49", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_8-pre-auto-reformat.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.8-pre-auto-reformat", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.8-pre-reformat", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2015-01-15T15:08:48", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_8-pre-reformat.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.8-pre-reformat", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.8a", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2005-10-11T10:16:21", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_8a.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.8a", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.8b", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2006-05-04T12:46:42", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_8b.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.8b", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.8c", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2006-09-05T08:45:37", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_8c.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.8c", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.8d", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2006-09-28T11:32:42", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_8d.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.8d", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.8e", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2007-02-23T12:38:11", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_8e.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.8e", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.8f", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2007-10-11T18:23:17", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_8f.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.8f", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.8g", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2007-10-19T08:25:15", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_8g.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.8g", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.8h", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2008-05-28T07:37:14", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_8h.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.8h", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.8i", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2008-09-15T14:26:34", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_8i.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.8i", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.8j", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2009-01-07T10:50:54", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_8j.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.8j", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.8k", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2009-03-25T12:08:15", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_8k.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.8k", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.8l", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2009-11-05T16:08:52", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_8l.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.8l", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.8m", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2010-02-25T17:18:23", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_8m.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.8m", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.8m-beta1", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2010-01-20T17:26:02", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_8m-beta1.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.8m-beta1", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.8n", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2010-03-24T13:16:55", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_8n.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.8n", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.8o", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2010-06-01T14:47:12", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_8o.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.8o", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.8p", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2010-11-16T14:56:17", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_8p.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.8p", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.8q", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2010-12-02T18:53:52", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_8q.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.8q", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.8r", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2011-02-08T17:10:47", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_8r.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.8r", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.8s", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2012-01-04T19:23:07", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_8s.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.8s", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.8t", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2012-01-18T13:15:37", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_8t.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.8t", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.8u", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2012-03-12T15:25:53", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_8u.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.8u", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.8", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2012-04-19T12:05:18", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_8v.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.8", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.8w", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2012-04-23T21:03:04", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_8w.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.8w", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.8x", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2012-05-10T14:38:52", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_8x.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.8x", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.8y", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2013-02-05T16:50:37", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_8y.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.8y", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.8za", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2014-06-05T09:38:57", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_8za.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.8za", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.8zb", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2014-08-06T21:29:20", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_8zb.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.8zb", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.8zc", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2014-10-15T12:48:52", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_8zc.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.8zc", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.8zd", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2015-01-08T14:33:47", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_8zd.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.8zd", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.8ze", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2015-01-15T15:05:59", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_8ze.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.8ze", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.8zf", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2015-03-19T13:47:27", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_8zf.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.8zf", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.8zg", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2015-06-11T14:20:22", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_8zg.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.8zg", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.8zh", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2015-12-03T15:00:17", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_8zh.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.8zh", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "0.9.8", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2005-07-05T18:49:43", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_0_9_8.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@0.9.8", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.0-beta1", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2009-04-01T08:57:37", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_0-beta1.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.0-beta1", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.0-beta2", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2009-04-21T15:42:01", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_0-beta2.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.0-beta2", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.0-beta3", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2009-07-15T11:37:45", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_0-beta3.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.0-beta3", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.0-beta4", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2009-11-10T13:23:04", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_0-beta4.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.0-beta4", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.0-beta5", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2010-01-20T15:05:52", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_0-beta5.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.0-beta5", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.0-post-auto-reformat", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2015-01-22T09:46:26", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_0-post-auto-reformat.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.0-post-auto-reformat", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.0-post-reformat", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2015-01-22T09:46:52", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_0-post-reformat.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.0-post-reformat", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.0-pre-auto-reformat", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2015-01-22T09:46:13", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_0-pre-auto-reformat.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.0-pre-auto-reformat", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.0-pre-reformat", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2015-01-15T15:01:09", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_0-pre-reformat.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.0-pre-reformat", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.0a", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2010-06-01T13:31:38", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_0a.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.0a", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.0b", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2010-11-16T13:35:09", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_0b.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.0b", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.0c", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2010-12-02T18:29:04", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_0c.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.0c", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.0d", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2011-02-08T17:10:53", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_0d.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.0d", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.0e", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2011-09-06T13:01:44", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_0e.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.0e", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.0f", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2012-01-04T17:01:33", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_0f.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.0f", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.0g", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2012-01-18T13:38:34", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_0g.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.0g", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.0h", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2012-03-12T15:26:48", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_0h.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.0h", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.0i", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2012-04-19T11:47:20", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_0i.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.0i", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.0j", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2012-05-10T14:48:54", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_0j.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.0j", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.0k", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2013-02-05T16:46:21", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_0k.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.0k", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.0l", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2014-01-06T15:02:02", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_0l.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.0l", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.0m", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2014-06-05T09:42:13", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_0m.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.0m", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.0n", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2014-08-06T21:24:50", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_0n.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.0n", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.0o", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2014-10-15T12:52:08", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_0o.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.0o", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.0p", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2015-01-08T14:21:42", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_0p.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.0p", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.0q", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2015-01-15T14:56:27", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_0q.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.0q", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.0r", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2015-03-19T13:43:00", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_0r.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.0r", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.0s", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2015-06-11T14:13:36", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_0s.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.0s", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.0t", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2015-12-03T14:56:22", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_0t.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.0t", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.0", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2010-03-29T13:11:54", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_0.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.0", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.1-beta1", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2012-01-03T13:30:28", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_1-beta1.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.1-beta1", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.1-beta2", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2012-01-19T15:46:43", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_1-beta2.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.1-beta2", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.1-beta3", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2012-02-23T22:13:59", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_1-beta3.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.1-beta3", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.1-post-auto-reformat", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2015-01-22T09:38:49", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_1-post-auto-reformat.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.1-post-auto-reformat", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.1-post-reformat", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2015-01-22T09:39:01", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_1-post-reformat.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.1-post-reformat", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.1-pre-auto-reformat", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2015-01-22T09:38:30", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_1-pre-auto-reformat.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.1-pre-auto-reformat", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.1-pre-reformat", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2015-01-15T14:49:54", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_1-pre-reformat.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.1-pre-reformat", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.1a", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2012-04-19T12:17:19", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_1a.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.1a", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.1b", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2012-04-26T10:42:20", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_1b.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.1b", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.1c", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2012-05-10T15:16:37", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_1c.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.1c", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.1d", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2013-02-04T23:12:58", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_1d.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.1d", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.1e", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2013-02-11T15:21:21", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_1e.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.1e", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.1f", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2014-01-06T14:36:07", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_1f.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.1f", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.1g", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2014-04-07T16:55:44", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_1g.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.1g", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.1h", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2014-06-05T09:45:00", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_1h.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.1h", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.1i", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2014-08-06T21:18:45", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_1i.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.1i", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.1j", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2014-10-15T12:54:46", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_1j.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.1j", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.1k", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2015-01-08T14:03:40", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_1k.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.1k", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.1l", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2015-01-15T14:45:15", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_1l.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.1l", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.1m", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2015-03-19T13:38:37", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_1m.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.1m", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.1n", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2015-06-11T14:05:11", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_1n.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.1n", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.1o", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2015-06-12T15:20:59", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_1o.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.1o", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.1p", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2015-07-09T12:22:23", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_1p.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.1p", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.1q", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2015-12-03T14:50:26", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_1q.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.1q", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.1r", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2016-01-28T17:06:38", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_1r.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.1r", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.1s", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2016-03-01T13:40:46", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_1s.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.1s", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.1t", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2016-05-03T13:49:52", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_1t.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.1t", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.1u", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2016-09-22T10:30:27", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_1u.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.1u", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.1", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2012-03-14T12:39:00", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_1.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.1", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.2-beta1", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2014-02-24T13:51:34", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_2-beta1.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.2-beta1", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.2-beta2", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2014-07-22T20:30:33", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_2-beta2.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.2-beta2", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.2-beta3", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2014-09-25T20:31:40", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_2-beta3.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.2-beta3", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.2-post-auto-reformat", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2015-01-22T09:31:48", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_2-post-auto-reformat.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.2-post-auto-reformat", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.2-post-reformat", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2015-01-22T09:31:48", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_2-post-reformat.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.2-post-reformat", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.2-pre-auto-reformat", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2015-01-22T09:29:11", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_2-pre-auto-reformat.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.2-pre-auto-reformat", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.2-pre-reformat", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2015-01-13T23:14:20", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_2-pre-reformat.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.2-pre-reformat", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.2a", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2015-03-19T13:31:16", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_2a.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.2a", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.2b", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2015-06-11T13:55:38", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_2b.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.2b", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.2c", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2015-06-12T15:10:40", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_2c.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.2c", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.2d", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2015-07-09T12:03:09", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_2d.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.2d", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.2e", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2015-12-03T14:44:31", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_2e.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.2e", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.2f", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2016-01-28T13:57:22", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_2f.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.2f", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.2g", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2016-03-01T13:36:54", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_2g.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.2g", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.2h", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2016-05-03T13:46:41", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_2h.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.2h", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.2i", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2016-09-22T10:24:53", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_2i.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.2i", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.2j", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2016-09-26T09:49:49", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_2j.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.2j", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.2k", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2017-01-26T13:22:36", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_2k.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.2k", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.2l", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2017-05-25T12:55:36", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_2l.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.2l", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.2m", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2017-11-02T14:33:44", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_2m.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.2m", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.2n", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2017-12-07T13:19:36", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_2n.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.2n", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.2o", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2018-03-27T13:55:22", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_2o.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.2o", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.2p", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2018-08-14T13:01:02", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_2p.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.2p", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.2q", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2018-11-20T13:45:20", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_2q.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.2q", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.2r", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2019-02-26T14:20:55", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_2r.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.2r", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.2s", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2019-05-28T12:56:29", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_2s.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.2s", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.2t", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2019-09-10T13:36:07", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_2t.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.2t", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.2u", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2019-12-20T13:09:21", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_2u.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.2u", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.0.2", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2015-01-22T16:12:26", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_2.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.0.2", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.0-pre1", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2015-12-10T14:23:10", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_0-pre1.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.0-pre1", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.0-pre2", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2016-01-14T14:26:56", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_0-pre2.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.0-pre2", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.0-pre3", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2016-02-15T18:37:20", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_0-pre3.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.0-pre3", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.0-pre4", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2016-03-16T17:21:17", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_0-pre4.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.0-pre4", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.0-pre5", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2016-04-19T14:57:51", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_0-pre5.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.0-pre5", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.0-pre6", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2016-08-04T14:00:44", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_0-pre6.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.0-pre6", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.0a", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2016-09-22T10:14:50", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_0a.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.0a", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.0b", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2016-09-26T09:46:03", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_0b.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.0b", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.0c", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2016-11-10T14:03:42", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_0c.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.0c", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.0d", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2017-01-26T13:10:20", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_0d.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.0d", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.0e", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2017-02-16T11:58:19", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_0e.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.0e", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.0f", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2017-05-25T12:46:16", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_0f.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.0f", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.0g", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2017-11-02T14:29:01", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_0g.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.0g", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.0h", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2018-03-27T13:50:36", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_0h.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.0h", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.0i", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2018-08-14T12:45:05", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_0i.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.0i", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.0j", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2018-11-20T13:41:22", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_0j.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.0j", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.0k", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2019-05-28T12:59:16", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_0k.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.0k", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.0l", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2019-09-10T13:16:54", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_0l.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.0l", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.0", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2016-08-25T15:29:18", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_0.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.0", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.1-pre1", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2018-02-13T13:59:25", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_1-pre1.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.1-pre1", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.1-pre2", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2018-02-27T13:59:50", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_1-pre2.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.1-pre2", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.1-pre3", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2018-03-20T13:13:56", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_1-pre3.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.1-pre3", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.1-pre4", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2018-04-03T13:24:18", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_1-pre4.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.1-pre4", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.1-pre5", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2018-04-17T13:32:02", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_1-pre5.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.1-pre5", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.1-pre6", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2018-05-01T12:46:05", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_1-pre6.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.1-pre6", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.1-pre7", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2018-05-29T12:20:01", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_1-pre7.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.1-pre7", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.1-pre8", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2018-06-20T14:48:08", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_1-pre8.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.1-pre8", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.1-pre9", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2018-08-21T12:14:10", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_1-pre9.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.1-pre9", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.1a", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2018-11-20T13:35:35", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_1a.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.1a", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.1b", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2019-02-26T14:15:30", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_1b.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.1b", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.1c", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2019-05-28T13:12:21", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_1c.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.1c", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.1d", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2019-09-10T13:13:07", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_1d.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.1d", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.1e", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2020-03-17T14:31:17", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_1e.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.1e", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.1f", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2020-03-31T12:17:45", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_1f.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.1f", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.1g", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2020-04-21T12:22:39", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_1g.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.1g", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.1h", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2020-09-22T12:55:07", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_1h.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.1h", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.1i", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2020-12-08T13:20:59", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_1i.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.1i", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.1j", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2021-02-16T15:24:01", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_1j.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.1j", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.1k", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2021-03-25T13:28:38", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_1k.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.1k", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.1l", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2021-08-24T13:38:47", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_1l.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.1l", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.1m", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2021-12-14T15:45:01", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_1m.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.1m", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.1n", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2022-03-15T14:37:47", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_1n.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.1n", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.1o", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2022-05-03T13:41:15", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_1o.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.1o", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.1p", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2022-06-21T13:39:39", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_1p.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.1p", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.1q", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2022-07-05T09:08:33", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_1q.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.1q", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.1r", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2022-10-11T12:45:58", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_1r.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.1r", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.1s", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2022-11-01T12:36:10", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_1s.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.1s", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.1t", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2023-02-07T13:37:05", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_1t.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.1t", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.1u", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2023-05-30T12:42:39", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_1u.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.1u", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.1", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2023-08-01T13:51:35", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_1v.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.1", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.1w", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2023-09-11T14:08:11", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_1w.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.1w", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "1.1.1", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2018-09-11T12:48:18", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_1_1.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@1.1.1", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "3.0.0-alpha1", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2020-04-23T13:08:36", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/openssl-3.0.0-alpha1.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@3.0.0-alpha1", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "3.0.0-alpha2", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2020-05-15T13:33:29", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/openssl-3.0.0-alpha2.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@3.0.0-alpha2", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "3.0.0-alpha3", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2020-06-04T13:56:40", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/openssl-3.0.0-alpha3.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@3.0.0-alpha3", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "3.0.0-alpha4", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2020-06-25T13:58:16", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/openssl-3.0.0-alpha4.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@3.0.0-alpha4", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "3.0.0-alpha5", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2020-07-16T13:22:29", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/openssl-3.0.0-alpha5.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@3.0.0-alpha5", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "3.0.0-alpha6", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2020-08-06T13:00:13", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/openssl-3.0.0-alpha6.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@3.0.0-alpha6", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "3.0.0-alpha7", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2020-10-15T13:15:55", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/openssl-3.0.0-alpha7.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@3.0.0-alpha7", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "3.0.0-alpha8", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2020-11-05T14:03:50", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/openssl-3.0.0-alpha8.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@3.0.0-alpha8", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "3.0.0-alpha9", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2020-11-26T14:53:04", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/openssl-3.0.0-alpha9.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@3.0.0-alpha9", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "3.0.0-alpha10", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2021-01-07T13:48:10", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/openssl-3.0.0-alpha10.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@3.0.0-alpha10", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "3.0.0-alpha11", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2021-01-28T13:07:51", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/openssl-3.0.0-alpha11.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@3.0.0-alpha11", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "3.0.0-alpha12", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2021-02-18T15:08:53", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/openssl-3.0.0-alpha12.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@3.0.0-alpha12", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "3.0.0-alpha13", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2021-03-11T13:47:12", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/openssl-3.0.0-alpha13.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@3.0.0-alpha13", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "3.0.0-alpha14", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2021-04-08T12:15:48", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/openssl-3.0.0-alpha14.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@3.0.0-alpha14", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "3.0.0-alpha15", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2021-04-22T13:44:12", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/openssl-3.0.0-alpha15.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@3.0.0-alpha15", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "3.0.0-alpha16", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2021-05-06T12:15:03", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/openssl-3.0.0-alpha16.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@3.0.0-alpha16", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "3.0.0-alpha17", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2021-05-20T13:30:20", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/openssl-3.0.0-alpha17.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@3.0.0-alpha17", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "3.0.0-beta1", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2021-06-17T13:03:42", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/openssl-3.0.0-beta1.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@3.0.0-beta1", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "3.0.0-beta2", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2021-07-29T14:50:29", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/openssl-3.0.0-beta2.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@3.0.0-beta2", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "3.0.0", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2021-09-07T11:46:32", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/openssl-3.0.0.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@3.0.0", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "3.0.1", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2021-12-14T16:16:25", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/openssl-3.0.1.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@3.0.1", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "3.0.2", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2022-03-15T14:30:24", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/openssl-3.0.2.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@3.0.2", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "3.0.3", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2022-05-03T13:32:01", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/openssl-3.0.3.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@3.0.3", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "3.0.4", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2022-06-21T13:30:58", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/openssl-3.0.4.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@3.0.4", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "3.0.5", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2022-07-05T08:57:04", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/openssl-3.0.5.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@3.0.5", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "3.0.6", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2022-10-11T12:39:09", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/openssl-3.0.6.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@3.0.6", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "3.0.7", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2022-11-01T14:14:36", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/openssl-3.0.7.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@3.0.7", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "3.0.8", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2023-02-07T13:43:33", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/openssl-3.0.8.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@3.0.8", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "3.0.9", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2023-05-30T12:31:57", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/openssl-3.0.9.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@3.0.9", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "3.0.10", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2023-08-01T13:47:24", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/openssl-3.0.10.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@3.0.10", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "3.0.11", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2023-09-19T13:02:31", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/openssl-3.0.11.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@3.0.11", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "3.0.12", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2023-10-24T13:48:41", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/openssl-3.0.12.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@3.0.12", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "3.0.13", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2024-01-30T13:28:16", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/openssl-3.0.13.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@3.0.13", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "3.1.0-alpha1", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2022-12-01T13:21:40", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/openssl-3.1.0-alpha1.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@3.1.0-alpha1", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "3.1.0-beta1", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2022-12-21T10:23:21", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/openssl-3.1.0-beta1.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@3.1.0-beta1", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "3.1.0", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2023-03-14T12:59:07", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/openssl-3.1.0.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@3.1.0", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "3.1.1", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2023-05-30T12:13:24", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/openssl-3.1.1.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@3.1.1", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "3.1.2", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2023-08-01T13:36:55", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/openssl-3.1.2.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@3.1.2", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "3.1.3", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2023-09-19T13:01:49", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/openssl-3.1.3.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@3.1.3", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "3.1.4", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2023-10-24T13:41:51", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/openssl-3.1.4.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@3.1.4", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "3.1.5", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2024-01-30T13:22:11", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/openssl-3.1.5.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@3.1.5", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "3.2.0-alpha1", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2023-09-07T09:00:22", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/openssl-3.2.0-alpha1.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@3.2.0-alpha1", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "3.2.0-alpha2", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2023-09-28T13:24:32", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/openssl-3.2.0-alpha2.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@3.2.0-alpha2", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "3.2.0-beta1", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2023-10-26T13:22:51", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/openssl-3.2.0-beta1.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@3.2.0-beta1", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "3.2.0", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2023-11-23T13:20:19", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/openssl-3.2.0.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@3.2.0", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "3.2.1", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2024-01-30T13:14:56", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/openssl-3.2.1.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@3.2.1", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "openssl", + "namespace": null, + "name": "openssl", + "version": "3.3.0-alpha1", + "qualifiers": {}, + "subpath": null, + "primary_language": "C", + "description": null, + "release_date": "2024-03-20T12:09:34", + "parties": [], + "keywords": [], + "homepage_url": "https://www.openssl.org", + "download_url": "https://github.com/openssl/openssl/archive/refs/tags/openssl-3.3.0-alpha1.tar.gz", + "api_url": "https://api.github.com/repos/openssl/openssl", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/openssl/openssl/issues", + "code_view_url": "https://github.com/openssl/openssl", + "vcs_url": "git://github.com/openssl/openssl.git", + "copyright": null, + "license_expression": null, + "declared_license": "Apache-2.0", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:openssl/openssl@3.3.0-alpha1", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + } +] \ No newline at end of file diff --git a/tests/data/package/github/openssl/github_mock_data_0.json b/tests/data/package/github/openssl/github_mock_data_0.json new file mode 100644 index 00000000..36fa8c96 --- /dev/null +++ b/tests/data/package/github/openssl/github_mock_data_0.json @@ -0,0 +1,137 @@ +{ + "id": 7634677, + "node_id": "MDEwOlJlcG9zaXRvcnk3NjM0Njc3", + "name": "openssl", + "full_name": "openssl/openssl", + "private": false, + "owner": { + "login": "openssl", + "id": 3279138, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMyNzkxMzg=", + "avatar_url": "https://avatars.githubusercontent.com/u/3279138?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/openssl", + "html_url": "https://github.com/openssl", + "followers_url": "https://api.github.com/users/openssl/followers", + "following_url": "https://api.github.com/users/openssl/following{/other_user}", + "gists_url": "https://api.github.com/users/openssl/gists{/gist_id}", + "starred_url": "https://api.github.com/users/openssl/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/openssl/subscriptions", + "organizations_url": "https://api.github.com/users/openssl/orgs", + "repos_url": "https://api.github.com/users/openssl/repos", + "events_url": "https://api.github.com/users/openssl/events{/privacy}", + "received_events_url": "https://api.github.com/users/openssl/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/openssl/openssl", + "description": "TLS/SSL and crypto library", + "fork": false, + "url": "https://api.github.com/repos/openssl/openssl", + "forks_url": "https://api.github.com/repos/openssl/openssl/forks", + "keys_url": "https://api.github.com/repos/openssl/openssl/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/openssl/openssl/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/openssl/openssl/teams", + "hooks_url": "https://api.github.com/repos/openssl/openssl/hooks", + "issue_events_url": "https://api.github.com/repos/openssl/openssl/issues/events{/number}", + "events_url": "https://api.github.com/repos/openssl/openssl/events", + "assignees_url": "https://api.github.com/repos/openssl/openssl/assignees{/user}", + "branches_url": "https://api.github.com/repos/openssl/openssl/branches{/branch}", + "tags_url": "https://api.github.com/repos/openssl/openssl/tags", + "blobs_url": "https://api.github.com/repos/openssl/openssl/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/openssl/openssl/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/openssl/openssl/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/openssl/openssl/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/openssl/openssl/statuses/{sha}", + "languages_url": "https://api.github.com/repos/openssl/openssl/languages", + "stargazers_url": "https://api.github.com/repos/openssl/openssl/stargazers", + "contributors_url": "https://api.github.com/repos/openssl/openssl/contributors", + "subscribers_url": "https://api.github.com/repos/openssl/openssl/subscribers", + "subscription_url": "https://api.github.com/repos/openssl/openssl/subscription", + "commits_url": "https://api.github.com/repos/openssl/openssl/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/openssl/openssl/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/openssl/openssl/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/openssl/openssl/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/openssl/openssl/contents/{+path}", + "compare_url": "https://api.github.com/repos/openssl/openssl/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/openssl/openssl/merges", + "archive_url": "https://api.github.com/repos/openssl/openssl/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/openssl/openssl/downloads", + "issues_url": "https://api.github.com/repos/openssl/openssl/issues{/number}", + "pulls_url": "https://api.github.com/repos/openssl/openssl/pulls{/number}", + "milestones_url": "https://api.github.com/repos/openssl/openssl/milestones{/number}", + "notifications_url": "https://api.github.com/repos/openssl/openssl/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/openssl/openssl/labels{/name}", + "releases_url": "https://api.github.com/repos/openssl/openssl/releases{/id}", + "deployments_url": "https://api.github.com/repos/openssl/openssl/deployments", + "created_at": "2013-01-15T22:34:48Z", + "updated_at": "2024-03-29T07:57:46Z", + "pushed_at": "2024-03-29T06:24:18Z", + "git_url": "git://github.com/openssl/openssl.git", + "ssh_url": "git@github.com:openssl/openssl.git", + "clone_url": "https://github.com/openssl/openssl.git", + "svn_url": "https://github.com/openssl/openssl", + "homepage": "https://www.openssl.org", + "size": 230305, + "stargazers_count": 23988, + "watchers_count": 23988, + "language": "C", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": true, + "forks_count": 9685, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2308, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "cryptography", + "decryption", + "encryption", + "openssl", + "ssl", + "tls" + ], + "visibility": "public", + "forks": 9685, + "open_issues": 2308, + "watchers": 23988, + "default_branch": "master", + "temp_clone_token": null, + "custom_properties": {}, + "organization": { + "login": "openssl", + "id": 3279138, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMyNzkxMzg=", + "avatar_url": "https://avatars.githubusercontent.com/u/3279138?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/openssl", + "html_url": "https://github.com/openssl", + "followers_url": "https://api.github.com/users/openssl/followers", + "following_url": "https://api.github.com/users/openssl/following{/other_user}", + "gists_url": "https://api.github.com/users/openssl/gists{/gist_id}", + "starred_url": "https://api.github.com/users/openssl/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/openssl/subscriptions", + "organizations_url": "https://api.github.com/users/openssl/orgs", + "repos_url": "https://api.github.com/users/openssl/repos", + "events_url": "https://api.github.com/users/openssl/events{/privacy}", + "received_events_url": "https://api.github.com/users/openssl/received_events", + "type": "Organization", + "site_admin": false + }, + "network_count": 9685, + "subscribers_count": 1007 +} \ No newline at end of file diff --git a/tests/data/package/github/openssl/github_mock_data_1.json b/tests/data/package/github/openssl/github_mock_data_1.json new file mode 100644 index 00000000..aa260965 --- /dev/null +++ b/tests/data/package/github/openssl/github_mock_data_1.json @@ -0,0 +1,623 @@ +{ + "data": { + "repository": { + "refs": { + "totalCount": 372, + "pageInfo": { + "endCursor": "MTAw", + "hasNextPage": true + }, + "nodes": [ + { + "name": "AFTER_COMPAQ_PATCH", + "target": { + "committedDate": "2002-05-22T11:27:43Z" + } + }, + { + "name": "BEFORE_COMPAQ_PATCH", + "target": { + "committedDate": "2002-05-21T08:59:59Z" + } + }, + { + "name": "BEFORE_engine", + "target": { + "committedDate": "2000-10-26T20:02:33Z" + } + }, + { + "name": "BEN_FIPS_TEST_1", + "target": { + "committedDate": "2003-10-08T13:12:50Z" + } + }, + { + "name": "BEN_FIPS_TEST_2", + "target": { + "committedDate": "2003-10-22T11:28:25Z" + } + }, + { + "name": "BEN_FIPS_TEST_3", + "target": { + "committedDate": "2003-10-28T14:56:14Z" + } + }, + { + "name": "BEN_FIPS_TEST_4", + "target": { + "committedDate": "2004-01-06T18:02:33Z" + } + }, + { + "name": "BEN_FIPS_TEST_5", + "target": { + "committedDate": "2004-02-02T15:25:30Z" + } + }, + { + "name": "BEN_FIPS_TEST_6", + "target": { + "committedDate": "2004-12-13T22:48:02Z" + } + }, + { + "name": "BEN_FIPS_TEST_7", + "target": { + "committedDate": "2004-12-20T13:21:25Z" + } + }, + { + "name": "BEN_FIPS_TEST_8", + "target": { + "committedDate": "2005-05-24T03:50:47Z" + } + }, + { + "name": "FIPS_TEST_9", + "target": { + "committedDate": "2005-06-07T14:08:54Z" + } + }, + { + "name": "FIPS_TEST_10", + "target": { + "committedDate": "2005-06-27T22:08:58Z" + } + }, + { + "name": "FIPS_098_TEST_1", + "target": { + "committedDate": "2007-07-02T12:10:06Z" + } + }, + { + "name": "FIPS_098_TEST_2", + "target": { + "committedDate": "2007-07-19T21:44:25Z" + } + }, + { + "name": "FIPS_098_TEST_3", + "target": { + "committedDate": "2007-08-19T12:49:07Z" + } + }, + { + "name": "FIPS_098_TEST_4", + "target": { + "committedDate": "2007-08-21T15:26:51Z" + } + }, + { + "name": "FIPS_098_TEST_5", + "target": { + "committedDate": "2007-08-29T18:51:14Z" + } + }, + { + "name": "FIPS_098_TEST_6", + "target": { + "committedDate": "2007-09-07T11:24:25Z" + } + }, + { + "name": "FIPS_098_TEST_7", + "target": { + "committedDate": "2007-09-22T12:43:13Z" + } + }, + { + "name": "FIPS_098_TEST_8", + "target": { + "committedDate": "2007-10-05T17:35:26Z" + } + }, + { + "name": "LEVITTE_after_const", + "target": { + "committedDate": "2004-03-15T23:15:27Z" + } + }, + { + "name": "LEVITTE_before_const", + "target": { + "committedDate": "2004-03-15T23:02:56Z" + } + }, + { + "name": "OpenSSL_FIPS_1_0", + "target": { + "committedDate": "2006-02-07T17:14:04Z" + } + }, + { + "name": "OpenSSL_0_9_1c", + "target": { + "committedDate": "1998-12-23T12:09:47Z" + } + }, + { + "name": "OpenSSL_0_9_2b", + "target": { + "committedDate": "1999-03-22T16:27:02Z" + } + }, + { + "name": "OpenSSL_0_9_3a", + "target": { + "committedDate": "1999-05-29T14:14:56Z" + } + }, + { + "name": "OpenSSL_0_9_3beta1", + "target": { + "committedDate": "1999-05-20T19:33:47Z" + } + }, + { + "name": "OpenSSL_0_9_3beta2", + "target": { + "committedDate": "1999-05-23T16:35:29Z" + } + }, + { + "name": "OpenSSL_0_9_3", + "target": { + "committedDate": "1999-05-24T20:52:13Z" + } + }, + { + "name": "OpenSSL_0_9_4", + "target": { + "committedDate": "1999-08-09T10:40:38Z" + } + }, + { + "name": "OpenSSL_0_9_5a", + "target": { + "committedDate": "2000-04-01T11:15:15Z" + } + }, + { + "name": "OpenSSL_0_9_5a-beta1", + "target": { + "committedDate": "2000-03-20T07:36:22Z" + } + }, + { + "name": "OpenSSL_0_9_5a-beta2", + "target": { + "committedDate": "2000-03-23T21:12:50Z" + } + }, + { + "name": "OpenSSL_0_9_5beta1", + "target": { + "committedDate": "2000-02-24T02:22:15Z" + } + }, + { + "name": "OpenSSL_0_9_5beta2", + "target": { + "committedDate": "2000-02-27T11:07:23Z" + } + }, + { + "name": "OpenSSL_0_9_5", + "target": { + "committedDate": "2000-05-25T13:20:13Z" + } + }, + { + "name": "OpenSSL_0_9_6-beta1", + "target": { + "committedDate": "2000-10-10T09:15:50Z" + } + }, + { + "name": "OpenSSL_0_9_6-beta2", + "target": { + "committedDate": "2000-10-10T09:15:51Z" + } + }, + { + "name": "OpenSSL_0_9_6-beta3", + "target": { + "committedDate": "2000-09-21T09:08:44Z" + } + }, + { + "name": "OpenSSL_0_9_6a", + "target": { + "committedDate": "2001-04-05T21:08:34Z" + } + }, + { + "name": "OpenSSL_0_9_6a-beta1", + "target": { + "committedDate": "2001-03-13T16:08:32Z" + } + }, + { + "name": "OpenSSL_0_9_6a-beta2", + "target": { + "committedDate": "2001-03-21T20:37:47Z" + } + }, + { + "name": "OpenSSL_0_9_6a-beta3", + "target": { + "committedDate": "2001-03-30T15:59:57Z" + } + }, + { + "name": "OpenSSL_0_9_6b", + "target": { + "committedDate": "2001-07-09T14:36:30Z" + } + }, + { + "name": "OpenSSL_0_9_6c", + "target": { + "committedDate": "2001-12-21T01:21:23Z" + } + }, + { + "name": "OpenSSL_0_9_6d", + "target": { + "committedDate": "2002-05-09T22:40:31Z" + } + }, + { + "name": "OpenSSL_0_9_6d-beta1", + "target": { + "committedDate": "2002-04-17T12:28:37Z" + } + }, + { + "name": "OpenSSL_0_9_6e", + "target": { + "committedDate": "2002-07-30T10:34:35Z" + } + }, + { + "name": "OpenSSL_0_9_6f", + "target": { + "committedDate": "2002-08-08T20:51:52Z" + } + }, + { + "name": "OpenSSL_0_9_6g", + "target": { + "committedDate": "2002-08-09T11:37:15Z" + } + }, + { + "name": "OpenSSL_0_9_6h", + "target": { + "committedDate": "2002-12-05T22:44:12Z" + } + }, + { + "name": "OpenSSL_0_9_6i", + "target": { + "committedDate": "2003-02-19T12:34:21Z" + } + }, + { + "name": "OpenSSL_0_9_6j", + "target": { + "committedDate": "2003-04-10T20:30:41Z" + } + }, + { + "name": "OpenSSL_0_9_6k", + "target": { + "committedDate": "2003-09-30T12:09:13Z" + } + }, + { + "name": "OpenSSL_0_9_6l", + "target": { + "committedDate": "2003-11-04T11:30:40Z" + } + }, + { + "name": "OpenSSL_0_9_6m", + "target": { + "committedDate": "2004-03-17T11:40:44Z" + } + }, + { + "name": "OpenSSL_0_9_6", + "target": { + "committedDate": "2000-10-10T09:15:49Z" + } + }, + { + "name": "OpenSSL_0_9_7-beta1", + "target": { + "committedDate": "2002-06-01T15:21:55Z" + } + }, + { + "name": "OpenSSL_0_9_7-beta2", + "target": { + "committedDate": "2002-06-16T11:27:44Z" + } + }, + { + "name": "OpenSSL_0_9_7-beta3", + "target": { + "committedDate": "2002-07-30T11:30:03Z" + } + }, + { + "name": "OpenSSL_0_9_7-beta4", + "target": { + "committedDate": "2002-11-19T09:34:38Z" + } + }, + { + "name": "OpenSSL_0_9_7-beta5", + "target": { + "committedDate": "2002-12-06T00:37:21Z" + } + }, + { + "name": "OpenSSL_0_9_7-beta6", + "target": { + "committedDate": "2002-12-17T14:24:51Z" + } + }, + { + "name": "OpenSSL_0_9_7a", + "target": { + "committedDate": "2003-02-19T12:33:55Z" + } + }, + { + "name": "OpenSSL_0_9_7b", + "target": { + "committedDate": "2003-04-10T20:37:53Z" + } + }, + { + "name": "OpenSSL_0_9_7c", + "target": { + "committedDate": "2003-09-30T12:08:23Z" + } + }, + { + "name": "OpenSSL_0_9_7d", + "target": { + "committedDate": "2004-03-17T12:01:20Z" + } + }, + { + "name": "OpenSSL_0_9_7e", + "target": { + "committedDate": "2004-10-25T11:24:39Z" + } + }, + { + "name": "OpenSSL_0_9_7f", + "target": { + "committedDate": "2005-03-22T19:15:55Z" + } + }, + { + "name": "OpenSSL_0_9_7g", + "target": { + "committedDate": "2005-04-11T15:10:07Z" + } + }, + { + "name": "OpenSSL_0_9_7h", + "target": { + "committedDate": "2005-10-11T10:10:05Z" + } + }, + { + "name": "OpenSSL_0_9_7i", + "target": { + "committedDate": "2005-10-14T22:15:53Z" + } + }, + { + "name": "OpenSSL_0_9_7j", + "target": { + "committedDate": "2006-05-04T12:52:59Z" + } + }, + { + "name": "OpenSSL_0_9_7k", + "target": { + "committedDate": "2006-09-05T08:34:07Z" + } + }, + { + "name": "OpenSSL_0_9_7l", + "target": { + "committedDate": "2006-09-28T11:56:57Z" + } + }, + { + "name": "OpenSSL_0_9_7m", + "target": { + "committedDate": "2007-02-23T12:49:10Z" + } + }, + { + "name": "OpenSSL_0_9_7", + "target": { + "committedDate": "2002-12-30T23:54:11Z" + } + }, + { + "name": "OpenSSL_0_9_8-beta1", + "target": { + "committedDate": "2005-05-19T19:42:04Z" + } + }, + { + "name": "OpenSSL_0_9_8-beta2", + "target": { + "committedDate": "2005-05-24T03:42:49Z" + } + }, + { + "name": "OpenSSL_0_9_8-beta3", + "target": { + "committedDate": "2005-05-30T23:20:33Z" + } + }, + { + "name": "OpenSSL_0_9_8-beta4", + "target": { + "committedDate": "2005-06-06T00:39:18Z" + } + }, + { + "name": "OpenSSL_0_9_8-beta5", + "target": { + "committedDate": "2005-06-13T03:36:21Z" + } + }, + { + "name": "OpenSSL_0_9_8-beta6", + "target": { + "committedDate": "2005-06-21T05:49:47Z" + } + }, + { + "name": "OpenSSL_0_9_8-post-auto-reformat", + "target": { + "target": { + "committedDate": "2015-01-22T09:53:02Z" + } + } + }, + { + "name": "OpenSSL_0_9_8-post-reformat", + "target": { + "target": { + "committedDate": "2015-01-22T09:53:07Z" + } + } + }, + { + "name": "OpenSSL_0_9_8-pre-auto-reformat", + "target": { + "target": { + "committedDate": "2015-01-22T09:52:49Z" + } + } + }, + { + "name": "OpenSSL_0_9_8-pre-reformat", + "target": { + "target": { + "committedDate": "2015-01-15T15:08:48Z" + } + } + }, + { + "name": "OpenSSL_0_9_8a", + "target": { + "committedDate": "2005-10-11T10:16:21Z" + } + }, + { + "name": "OpenSSL_0_9_8b", + "target": { + "committedDate": "2006-05-04T12:46:42Z" + } + }, + { + "name": "OpenSSL_0_9_8c", + "target": { + "committedDate": "2006-09-05T08:45:37Z" + } + }, + { + "name": "OpenSSL_0_9_8d", + "target": { + "committedDate": "2006-09-28T11:32:42Z" + } + }, + { + "name": "OpenSSL_0_9_8e", + "target": { + "committedDate": "2007-02-23T12:38:11Z" + } + }, + { + "name": "OpenSSL_0_9_8f", + "target": { + "committedDate": "2007-10-11T18:23:17Z" + } + }, + { + "name": "OpenSSL_0_9_8g", + "target": { + "committedDate": "2007-10-19T08:25:15Z" + } + }, + { + "name": "OpenSSL_0_9_8h", + "target": { + "committedDate": "2008-05-28T07:37:14Z" + } + }, + { + "name": "OpenSSL_0_9_8i", + "target": { + "committedDate": "2008-09-15T14:26:34Z" + } + }, + { + "name": "OpenSSL_0_9_8j", + "target": { + "committedDate": "2009-01-07T10:50:54Z" + } + }, + { + "name": "OpenSSL_0_9_8k", + "target": { + "committedDate": "2009-03-25T12:08:15Z" + } + }, + { + "name": "OpenSSL_0_9_8l", + "target": { + "committedDate": "2009-11-05T16:08:52Z" + } + } + ] + } + } + } +} \ No newline at end of file diff --git a/tests/data/package/github/openssl/github_mock_data_2.json b/tests/data/package/github/openssl/github_mock_data_2.json new file mode 100644 index 00000000..7e075c36 --- /dev/null +++ b/tests/data/package/github/openssl/github_mock_data_2.json @@ -0,0 +1,741 @@ +{ + "data": { + "repository": { + "refs": { + "totalCount": 372, + "pageInfo": { + "endCursor": "MjAw", + "hasNextPage": true + }, + "nodes": [ + { + "name": "OpenSSL_0_9_8m", + "target": { + "committedDate": "2010-02-25T17:18:23Z" + } + }, + { + "name": "OpenSSL_0_9_8m-beta1", + "target": { + "committedDate": "2010-01-20T17:26:02Z" + } + }, + { + "name": "OpenSSL_0_9_8n", + "target": { + "committedDate": "2010-03-24T13:16:55Z" + } + }, + { + "name": "OpenSSL_0_9_8o", + "target": { + "committedDate": "2010-06-01T14:47:12Z" + } + }, + { + "name": "OpenSSL_0_9_8p", + "target": { + "committedDate": "2010-11-16T14:56:17Z" + } + }, + { + "name": "OpenSSL_0_9_8q", + "target": { + "committedDate": "2010-12-02T18:53:52Z" + } + }, + { + "name": "OpenSSL_0_9_8r", + "target": { + "committedDate": "2011-02-08T17:10:47Z" + } + }, + { + "name": "OpenSSL_0_9_8s", + "target": { + "committedDate": "2012-01-04T19:23:07Z" + } + }, + { + "name": "OpenSSL_0_9_8t", + "target": { + "committedDate": "2012-01-18T13:15:37Z" + } + }, + { + "name": "OpenSSL_0_9_8u", + "target": { + "committedDate": "2012-03-12T15:25:53Z" + } + }, + { + "name": "OpenSSL_0_9_8v", + "target": { + "committedDate": "2012-04-19T12:05:18Z" + } + }, + { + "name": "OpenSSL_0_9_8w", + "target": { + "committedDate": "2012-04-23T21:03:04Z" + } + }, + { + "name": "OpenSSL_0_9_8x", + "target": { + "committedDate": "2012-05-10T14:38:52Z" + } + }, + { + "name": "OpenSSL_0_9_8y", + "target": { + "target": { + "committedDate": "2013-02-05T16:50:37Z" + } + } + }, + { + "name": "OpenSSL_0_9_8za", + "target": { + "target": { + "committedDate": "2014-06-05T09:38:57Z" + } + } + }, + { + "name": "OpenSSL_0_9_8zb", + "target": { + "target": { + "committedDate": "2014-08-06T21:29:20Z" + } + } + }, + { + "name": "OpenSSL_0_9_8zc", + "target": { + "target": { + "committedDate": "2014-10-15T12:48:52Z" + } + } + }, + { + "name": "OpenSSL_0_9_8zd", + "target": { + "target": { + "committedDate": "2015-01-08T14:33:47Z" + } + } + }, + { + "name": "OpenSSL_0_9_8ze", + "target": { + "target": { + "committedDate": "2015-01-15T15:05:59Z" + } + } + }, + { + "name": "OpenSSL_0_9_8zf", + "target": { + "target": { + "committedDate": "2015-03-19T13:47:27Z" + } + } + }, + { + "name": "OpenSSL_0_9_8zg", + "target": { + "target": { + "committedDate": "2015-06-11T14:20:22Z" + } + } + }, + { + "name": "OpenSSL_0_9_8zh", + "target": { + "target": { + "committedDate": "2015-12-03T15:00:17Z" + } + } + }, + { + "name": "OpenSSL_0_9_8", + "target": { + "committedDate": "2005-07-05T18:49:43Z" + } + }, + { + "name": "OpenSSL_1_0_0-beta1", + "target": { + "committedDate": "2009-04-01T08:57:37Z" + } + }, + { + "name": "OpenSSL_1_0_0-beta2", + "target": { + "committedDate": "2009-04-21T15:42:01Z" + } + }, + { + "name": "OpenSSL_1_0_0-beta3", + "target": { + "committedDate": "2009-07-15T11:37:45Z" + } + }, + { + "name": "OpenSSL_1_0_0-beta4", + "target": { + "committedDate": "2009-11-10T13:23:04Z" + } + }, + { + "name": "OpenSSL_1_0_0-beta5", + "target": { + "committedDate": "2010-01-20T15:05:52Z" + } + }, + { + "name": "OpenSSL_1_0_0-post-auto-reformat", + "target": { + "target": { + "committedDate": "2015-01-22T09:46:26Z" + } + } + }, + { + "name": "OpenSSL_1_0_0-post-reformat", + "target": { + "target": { + "committedDate": "2015-01-22T09:46:52Z" + } + } + }, + { + "name": "OpenSSL_1_0_0-pre-auto-reformat", + "target": { + "target": { + "committedDate": "2015-01-22T09:46:13Z" + } + } + }, + { + "name": "OpenSSL_1_0_0-pre-reformat", + "target": { + "target": { + "committedDate": "2015-01-15T15:01:09Z" + } + } + }, + { + "name": "OpenSSL_1_0_0a", + "target": { + "committedDate": "2010-06-01T13:31:38Z" + } + }, + { + "name": "OpenSSL_1_0_0b", + "target": { + "committedDate": "2010-11-16T13:35:09Z" + } + }, + { + "name": "OpenSSL_1_0_0c", + "target": { + "committedDate": "2010-12-02T18:29:04Z" + } + }, + { + "name": "OpenSSL_1_0_0d", + "target": { + "committedDate": "2011-02-08T17:10:53Z" + } + }, + { + "name": "OpenSSL_1_0_0e", + "target": { + "committedDate": "2011-09-06T13:01:44Z" + } + }, + { + "name": "OpenSSL_1_0_0f", + "target": { + "committedDate": "2012-01-04T17:01:33Z" + } + }, + { + "name": "OpenSSL_1_0_0g", + "target": { + "committedDate": "2012-01-18T13:38:34Z" + } + }, + { + "name": "OpenSSL_1_0_0h", + "target": { + "committedDate": "2012-03-12T15:26:48Z" + } + }, + { + "name": "OpenSSL_1_0_0i", + "target": { + "committedDate": "2012-04-19T11:47:20Z" + } + }, + { + "name": "OpenSSL_1_0_0j", + "target": { + "committedDate": "2012-05-10T14:48:54Z" + } + }, + { + "name": "OpenSSL_1_0_0k", + "target": { + "target": { + "committedDate": "2013-02-05T16:46:21Z" + } + } + }, + { + "name": "OpenSSL_1_0_0l", + "target": { + "target": { + "committedDate": "2014-01-06T15:02:02Z" + } + } + }, + { + "name": "OpenSSL_1_0_0m", + "target": { + "target": { + "committedDate": "2014-06-05T09:42:13Z" + } + } + }, + { + "name": "OpenSSL_1_0_0n", + "target": { + "target": { + "committedDate": "2014-08-06T21:24:50Z" + } + } + }, + { + "name": "OpenSSL_1_0_0o", + "target": { + "target": { + "committedDate": "2014-10-15T12:52:08Z" + } + } + }, + { + "name": "OpenSSL_1_0_0p", + "target": { + "target": { + "committedDate": "2015-01-08T14:21:42Z" + } + } + }, + { + "name": "OpenSSL_1_0_0q", + "target": { + "target": { + "committedDate": "2015-01-15T14:56:27Z" + } + } + }, + { + "name": "OpenSSL_1_0_0r", + "target": { + "target": { + "committedDate": "2015-03-19T13:43:00Z" + } + } + }, + { + "name": "OpenSSL_1_0_0s", + "target": { + "target": { + "committedDate": "2015-06-11T14:13:36Z" + } + } + }, + { + "name": "OpenSSL_1_0_0t", + "target": { + "target": { + "committedDate": "2015-12-03T14:56:22Z" + } + } + }, + { + "name": "OpenSSL_1_0_0", + "target": { + "committedDate": "2010-03-29T13:11:54Z" + } + }, + { + "name": "OpenSSL_1_0_1-beta1", + "target": { + "committedDate": "2012-01-03T13:30:28Z" + } + }, + { + "name": "OpenSSL_1_0_1-beta2", + "target": { + "committedDate": "2012-01-19T15:46:43Z" + } + }, + { + "name": "OpenSSL_1_0_1-beta3", + "target": { + "committedDate": "2012-02-23T22:13:59Z" + } + }, + { + "name": "OpenSSL_1_0_1-post-auto-reformat", + "target": { + "target": { + "committedDate": "2015-01-22T09:38:49Z" + } + } + }, + { + "name": "OpenSSL_1_0_1-post-reformat", + "target": { + "target": { + "committedDate": "2015-01-22T09:39:01Z" + } + } + }, + { + "name": "OpenSSL_1_0_1-pre-auto-reformat", + "target": { + "target": { + "committedDate": "2015-01-22T09:38:30Z" + } + } + }, + { + "name": "OpenSSL_1_0_1-pre-reformat", + "target": { + "target": { + "committedDate": "2015-01-15T14:49:54Z" + } + } + }, + { + "name": "OpenSSL_1_0_1a", + "target": { + "committedDate": "2012-04-19T12:17:19Z" + } + }, + { + "name": "OpenSSL_1_0_1b", + "target": { + "committedDate": "2012-04-26T10:42:20Z" + } + }, + { + "name": "OpenSSL_1_0_1c", + "target": { + "committedDate": "2012-05-10T15:16:37Z" + } + }, + { + "name": "OpenSSL_1_0_1d", + "target": { + "target": { + "committedDate": "2013-02-04T23:12:58Z" + } + } + }, + { + "name": "OpenSSL_1_0_1e", + "target": { + "target": { + "committedDate": "2013-02-11T15:21:21Z" + } + } + }, + { + "name": "OpenSSL_1_0_1f", + "target": { + "target": { + "committedDate": "2014-01-06T14:36:07Z" + } + } + }, + { + "name": "OpenSSL_1_0_1g", + "target": { + "target": { + "committedDate": "2014-04-07T16:55:44Z" + } + } + }, + { + "name": "OpenSSL_1_0_1h", + "target": { + "target": { + "committedDate": "2014-06-05T09:45:00Z" + } + } + }, + { + "name": "OpenSSL_1_0_1i", + "target": { + "target": { + "committedDate": "2014-08-06T21:18:45Z" + } + } + }, + { + "name": "OpenSSL_1_0_1j", + "target": { + "target": { + "committedDate": "2014-10-15T12:54:46Z" + } + } + }, + { + "name": "OpenSSL_1_0_1k", + "target": { + "target": { + "committedDate": "2015-01-08T14:03:40Z" + } + } + }, + { + "name": "OpenSSL_1_0_1l", + "target": { + "target": { + "committedDate": "2015-01-15T14:45:15Z" + } + } + }, + { + "name": "OpenSSL_1_0_1m", + "target": { + "target": { + "committedDate": "2015-03-19T13:38:37Z" + } + } + }, + { + "name": "OpenSSL_1_0_1n", + "target": { + "target": { + "committedDate": "2015-06-11T14:05:11Z" + } + } + }, + { + "name": "OpenSSL_1_0_1o", + "target": { + "target": { + "committedDate": "2015-06-12T15:20:59Z" + } + } + }, + { + "name": "OpenSSL_1_0_1p", + "target": { + "target": { + "committedDate": "2015-07-09T12:22:23Z" + } + } + }, + { + "name": "OpenSSL_1_0_1q", + "target": { + "target": { + "committedDate": "2015-12-03T14:50:26Z" + } + } + }, + { + "name": "OpenSSL_1_0_1r", + "target": { + "target": { + "committedDate": "2016-01-28T17:06:38Z" + } + } + }, + { + "name": "OpenSSL_1_0_1s", + "target": { + "target": { + "committedDate": "2016-03-01T13:40:46Z" + } + } + }, + { + "name": "OpenSSL_1_0_1t", + "target": { + "target": { + "committedDate": "2016-05-03T13:49:52Z" + } + } + }, + { + "name": "OpenSSL_1_0_1u", + "target": { + "target": { + "committedDate": "2016-09-22T10:30:27Z" + } + } + }, + { + "name": "OpenSSL_1_0_1", + "target": { + "committedDate": "2012-03-14T12:39:00Z" + } + }, + { + "name": "OpenSSL_1_0_2-beta1", + "target": { + "target": { + "committedDate": "2014-02-24T13:51:34Z" + } + } + }, + { + "name": "OpenSSL_1_0_2-beta2", + "target": { + "target": { + "committedDate": "2014-07-22T20:30:33Z" + } + } + }, + { + "name": "OpenSSL_1_0_2-beta3", + "target": { + "target": { + "committedDate": "2014-09-25T20:31:40Z" + } + } + }, + { + "name": "OpenSSL_1_0_2-post-auto-reformat", + "target": { + "target": { + "committedDate": "2015-01-22T09:31:48Z" + } + } + }, + { + "name": "OpenSSL_1_0_2-post-reformat", + "target": { + "target": { + "committedDate": "2015-01-22T09:31:48Z" + } + } + }, + { + "name": "OpenSSL_1_0_2-pre-auto-reformat", + "target": { + "target": { + "committedDate": "2015-01-22T09:29:11Z" + } + } + }, + { + "name": "OpenSSL_1_0_2-pre-reformat", + "target": { + "target": { + "committedDate": "2015-01-13T23:14:20Z" + } + } + }, + { + "name": "OpenSSL_1_0_2a", + "target": { + "target": { + "committedDate": "2015-03-19T13:31:16Z" + } + } + }, + { + "name": "OpenSSL_1_0_2b", + "target": { + "target": { + "committedDate": "2015-06-11T13:55:38Z" + } + } + }, + { + "name": "OpenSSL_1_0_2c", + "target": { + "target": { + "committedDate": "2015-06-12T15:10:40Z" + } + } + }, + { + "name": "OpenSSL_1_0_2d", + "target": { + "target": { + "committedDate": "2015-07-09T12:03:09Z" + } + } + }, + { + "name": "OpenSSL_1_0_2e", + "target": { + "target": { + "committedDate": "2015-12-03T14:44:31Z" + } + } + }, + { + "name": "OpenSSL_1_0_2f", + "target": { + "target": { + "committedDate": "2016-01-28T13:57:22Z" + } + } + }, + { + "name": "OpenSSL_1_0_2g", + "target": { + "target": { + "committedDate": "2016-03-01T13:36:54Z" + } + } + }, + { + "name": "OpenSSL_1_0_2h", + "target": { + "target": { + "committedDate": "2016-05-03T13:46:41Z" + } + } + }, + { + "name": "OpenSSL_1_0_2i", + "target": { + "target": { + "committedDate": "2016-09-22T10:24:53Z" + } + } + }, + { + "name": "OpenSSL_1_0_2j", + "target": { + "target": { + "committedDate": "2016-09-26T09:49:49Z" + } + } + }, + { + "name": "OpenSSL_1_0_2k", + "target": { + "target": { + "committedDate": "2017-01-26T13:22:36Z" + } + } + } + ] + } + } + } +} \ No newline at end of file diff --git a/tests/data/package/github/openssl/github_mock_data_3.json b/tests/data/package/github/openssl/github_mock_data_3.json new file mode 100644 index 00000000..c13b27b8 --- /dev/null +++ b/tests/data/package/github/openssl/github_mock_data_3.json @@ -0,0 +1,741 @@ +{ + "data": { + "repository": { + "refs": { + "totalCount": 372, + "pageInfo": { + "endCursor": "MzAw", + "hasNextPage": true + }, + "nodes": [ + { + "name": "OpenSSL_1_0_2l", + "target": { + "target": { + "committedDate": "2017-05-25T12:55:36Z" + } + } + }, + { + "name": "OpenSSL_1_0_2m", + "target": { + "target": { + "committedDate": "2017-11-02T14:33:44Z" + } + } + }, + { + "name": "OpenSSL_1_0_2n", + "target": { + "target": { + "committedDate": "2017-12-07T13:19:36Z" + } + } + }, + { + "name": "OpenSSL_1_0_2o", + "target": { + "target": { + "committedDate": "2018-03-27T13:55:22Z" + } + } + }, + { + "name": "OpenSSL_1_0_2p", + "target": { + "target": { + "committedDate": "2018-08-14T13:01:02Z" + } + } + }, + { + "name": "OpenSSL_1_0_2q", + "target": { + "target": { + "committedDate": "2018-11-20T13:45:20Z" + } + } + }, + { + "name": "OpenSSL_1_0_2r", + "target": { + "target": { + "committedDate": "2019-02-26T14:20:55Z" + } + } + }, + { + "name": "OpenSSL_1_0_2s", + "target": { + "target": { + "committedDate": "2019-05-28T12:56:29Z" + } + } + }, + { + "name": "OpenSSL_1_0_2t", + "target": { + "target": { + "committedDate": "2019-09-10T13:36:07Z" + } + } + }, + { + "name": "OpenSSL_1_0_2u", + "target": { + "target": { + "committedDate": "2019-12-20T13:09:21Z" + } + } + }, + { + "name": "OpenSSL_1_0_2", + "target": { + "target": { + "committedDate": "2015-01-22T16:12:26Z" + } + } + }, + { + "name": "OpenSSL_1_1_0-pre1", + "target": { + "target": { + "committedDate": "2015-12-10T14:23:10Z" + } + } + }, + { + "name": "OpenSSL_1_1_0-pre2", + "target": { + "target": { + "committedDate": "2016-01-14T14:26:56Z" + } + } + }, + { + "name": "OpenSSL_1_1_0-pre3", + "target": { + "target": { + "committedDate": "2016-02-15T18:37:20Z" + } + } + }, + { + "name": "OpenSSL_1_1_0-pre4", + "target": { + "target": { + "committedDate": "2016-03-16T17:21:17Z" + } + } + }, + { + "name": "OpenSSL_1_1_0-pre5", + "target": { + "target": { + "committedDate": "2016-04-19T14:57:51Z" + } + } + }, + { + "name": "OpenSSL_1_1_0-pre6", + "target": { + "target": { + "committedDate": "2016-08-04T14:00:44Z" + } + } + }, + { + "name": "OpenSSL_1_1_0a", + "target": { + "target": { + "committedDate": "2016-09-22T10:14:50Z" + } + } + }, + { + "name": "OpenSSL_1_1_0b", + "target": { + "target": { + "committedDate": "2016-09-26T09:46:03Z" + } + } + }, + { + "name": "OpenSSL_1_1_0c", + "target": { + "target": { + "committedDate": "2016-11-10T14:03:42Z" + } + } + }, + { + "name": "OpenSSL_1_1_0d", + "target": { + "target": { + "committedDate": "2017-01-26T13:10:20Z" + } + } + }, + { + "name": "OpenSSL_1_1_0e", + "target": { + "target": { + "committedDate": "2017-02-16T11:58:19Z" + } + } + }, + { + "name": "OpenSSL_1_1_0f", + "target": { + "target": { + "committedDate": "2017-05-25T12:46:16Z" + } + } + }, + { + "name": "OpenSSL_1_1_0g", + "target": { + "target": { + "committedDate": "2017-11-02T14:29:01Z" + } + } + }, + { + "name": "OpenSSL_1_1_0h", + "target": { + "target": { + "committedDate": "2018-03-27T13:50:36Z" + } + } + }, + { + "name": "OpenSSL_1_1_0i", + "target": { + "target": { + "committedDate": "2018-08-14T12:45:05Z" + } + } + }, + { + "name": "OpenSSL_1_1_0j", + "target": { + "target": { + "committedDate": "2018-11-20T13:41:22Z" + } + } + }, + { + "name": "OpenSSL_1_1_0k", + "target": { + "target": { + "committedDate": "2019-05-28T12:59:16Z" + } + } + }, + { + "name": "OpenSSL_1_1_0l", + "target": { + "target": { + "committedDate": "2019-09-10T13:16:54Z" + } + } + }, + { + "name": "OpenSSL_1_1_0", + "target": { + "target": { + "committedDate": "2016-08-25T15:29:18Z" + } + } + }, + { + "name": "OpenSSL_1_1_1-pre1", + "target": { + "target": { + "committedDate": "2018-02-13T13:59:25Z" + } + } + }, + { + "name": "OpenSSL_1_1_1-pre2", + "target": { + "target": { + "committedDate": "2018-02-27T13:59:50Z" + } + } + }, + { + "name": "OpenSSL_1_1_1-pre3", + "target": { + "target": { + "committedDate": "2018-03-20T13:13:56Z" + } + } + }, + { + "name": "OpenSSL_1_1_1-pre4", + "target": { + "target": { + "committedDate": "2018-04-03T13:24:18Z" + } + } + }, + { + "name": "OpenSSL_1_1_1-pre5", + "target": { + "target": { + "committedDate": "2018-04-17T13:32:02Z" + } + } + }, + { + "name": "OpenSSL_1_1_1-pre6", + "target": { + "target": { + "committedDate": "2018-05-01T12:46:05Z" + } + } + }, + { + "name": "OpenSSL_1_1_1-pre7", + "target": { + "target": { + "committedDate": "2018-05-29T12:20:01Z" + } + } + }, + { + "name": "OpenSSL_1_1_1-pre8", + "target": { + "target": { + "committedDate": "2018-06-20T14:48:08Z" + } + } + }, + { + "name": "OpenSSL_1_1_1-pre9", + "target": { + "target": { + "committedDate": "2018-08-21T12:14:10Z" + } + } + }, + { + "name": "OpenSSL_1_1_1a", + "target": { + "target": { + "committedDate": "2018-11-20T13:35:35Z" + } + } + }, + { + "name": "OpenSSL_1_1_1b", + "target": { + "target": { + "committedDate": "2019-02-26T14:15:30Z" + } + } + }, + { + "name": "OpenSSL_1_1_1c", + "target": { + "target": { + "committedDate": "2019-05-28T13:12:21Z" + } + } + }, + { + "name": "OpenSSL_1_1_1d", + "target": { + "target": { + "committedDate": "2019-09-10T13:13:07Z" + } + } + }, + { + "name": "OpenSSL_1_1_1e", + "target": { + "target": { + "committedDate": "2020-03-17T14:31:17Z" + } + } + }, + { + "name": "OpenSSL_1_1_1f", + "target": { + "target": { + "committedDate": "2020-03-31T12:17:45Z" + } + } + }, + { + "name": "OpenSSL_1_1_1g", + "target": { + "target": { + "committedDate": "2020-04-21T12:22:39Z" + } + } + }, + { + "name": "OpenSSL_1_1_1h", + "target": { + "target": { + "committedDate": "2020-09-22T12:55:07Z" + } + } + }, + { + "name": "OpenSSL_1_1_1i", + "target": { + "target": { + "committedDate": "2020-12-08T13:20:59Z" + } + } + }, + { + "name": "OpenSSL_1_1_1j", + "target": { + "target": { + "committedDate": "2021-02-16T15:24:01Z" + } + } + }, + { + "name": "OpenSSL_1_1_1k", + "target": { + "target": { + "committedDate": "2021-03-25T13:28:38Z" + } + } + }, + { + "name": "OpenSSL_1_1_1l", + "target": { + "target": { + "committedDate": "2021-08-24T13:38:47Z" + } + } + }, + { + "name": "OpenSSL_1_1_1m", + "target": { + "target": { + "committedDate": "2021-12-14T15:45:01Z" + } + } + }, + { + "name": "OpenSSL_1_1_1n", + "target": { + "target": { + "committedDate": "2022-03-15T14:37:47Z" + } + } + }, + { + "name": "OpenSSL_1_1_1o", + "target": { + "target": { + "committedDate": "2022-05-03T13:41:15Z" + } + } + }, + { + "name": "OpenSSL_1_1_1p", + "target": { + "target": { + "committedDate": "2022-06-21T13:39:39Z" + } + } + }, + { + "name": "OpenSSL_1_1_1q", + "target": { + "target": { + "committedDate": "2022-07-05T09:08:33Z" + } + } + }, + { + "name": "OpenSSL_1_1_1r", + "target": { + "target": { + "committedDate": "2022-10-11T12:45:58Z" + } + } + }, + { + "name": "OpenSSL_1_1_1s", + "target": { + "target": { + "committedDate": "2022-11-01T12:36:10Z" + } + } + }, + { + "name": "OpenSSL_1_1_1t", + "target": { + "target": { + "committedDate": "2023-02-07T13:37:05Z" + } + } + }, + { + "name": "OpenSSL_1_1_1u", + "target": { + "target": { + "committedDate": "2023-05-30T12:42:39Z" + } + } + }, + { + "name": "OpenSSL_1_1_1v", + "target": { + "target": { + "committedDate": "2023-08-01T13:51:35Z" + } + } + }, + { + "name": "OpenSSL_1_1_1w", + "target": { + "target": { + "committedDate": "2023-09-11T14:08:11Z" + } + } + }, + { + "name": "OpenSSL_1_1_1", + "target": { + "target": { + "committedDate": "2018-09-11T12:48:18Z" + } + } + }, + { + "name": "OpenSSL-engine-0_9_6-beta1", + "target": { + "committedDate": "2000-09-11T13:28:35Z" + } + }, + { + "name": "OpenSSL-engine-0_9_6-beta2", + "target": { + "committedDate": "2000-09-17T20:37:33Z" + } + }, + { + "name": "OpenSSL-engine-0_9_6-beta3", + "target": { + "committedDate": "2000-09-21T09:27:54Z" + } + }, + { + "name": "OpenSSL-engine-0_9_6a", + "target": { + "committedDate": "2001-04-05T17:48:04Z" + } + }, + { + "name": "OpenSSL-engine-0_9_6a-beta1", + "target": { + "committedDate": "2001-03-13T16:39:22Z" + } + }, + { + "name": "OpenSSL-engine-0_9_6a-beta2", + "target": { + "committedDate": "2001-03-21T21:26:59Z" + } + }, + { + "name": "OpenSSL-engine-0_9_6a-beta3", + "target": { + "committedDate": "2001-03-30T16:02:44Z" + } + }, + { + "name": "OpenSSL-engine-0_9_6b", + "target": { + "committedDate": "2001-07-09T14:39:46Z" + } + }, + { + "name": "OpenSSL-engine-0_9_6c", + "target": { + "committedDate": "2002-02-15T07:41:44Z" + } + }, + { + "name": "OpenSSL-engine-0_9_6d", + "target": { + "committedDate": "2002-05-09T23:12:12Z" + } + }, + { + "name": "OpenSSL-engine-0_9_6d-beta1", + "target": { + "committedDate": "2002-04-17T12:52:33Z" + } + }, + { + "name": "OpenSSL-engine-0_9_6e", + "target": { + "committedDate": "2002-07-30T10:39:36Z" + } + }, + { + "name": "OpenSSL-engine-0_9_6f", + "target": { + "committedDate": "2002-08-08T21:44:13Z" + } + }, + { + "name": "OpenSSL-engine-0_9_6g", + "target": { + "committedDate": "2002-08-09T11:49:15Z" + } + }, + { + "name": "OpenSSL-engine-0_9_6h", + "target": { + "committedDate": "2002-12-05T22:50:32Z" + } + }, + { + "name": "OpenSSL-engine-0_9_6i", + "target": { + "committedDate": "2003-02-19T12:45:18Z" + } + }, + { + "name": "OpenSSL-engine-0_9_6j", + "target": { + "committedDate": "2003-04-10T20:43:00Z" + } + }, + { + "name": "OpenSSL-engine-0_9_6k", + "target": { + "committedDate": "2003-09-30T12:10:07Z" + } + }, + { + "name": "OpenSSL-engine-0_9_6l", + "target": { + "committedDate": "2003-11-04T11:33:12Z" + } + }, + { + "name": "OpenSSL-engine-0_9_6m", + "target": { + "committedDate": "2004-03-17T11:45:35Z" + } + }, + { + "name": "OpenSSL-engine-0_9_6", + "target": { + "committedDate": "2000-09-24T16:04:36Z" + } + }, + { + "name": "OpenSSL-fips-1_2_0", + "target": { + "committedDate": "2007-10-05T17:35:26Z" + } + }, + { + "name": "OpenSSL-fips-1_2_1", + "target": { + "committedDate": "2011-09-25T15:51:57Z" + } + }, + { + "name": "OpenSSL-fips-1_2_2", + "target": { + "committedDate": "2011-09-25T16:49:41Z" + } + }, + { + "name": "OpenSSL-fips-1_2_3", + "target": { + "committedDate": "2011-09-25T18:11:42Z" + } + }, + { + "name": "OpenSSL-fips-2_0-pl1", + "target": { + "committedDate": "2012-10-19T20:53:35Z" + } + }, + { + "name": "OpenSSL-fips-2_0-rc1", + "target": { + "committedDate": "2011-10-26T16:46:21Z" + } + }, + { + "name": "OpenSSL-fips-2_0-rc2", + "target": { + "committedDate": "2011-11-09T14:23:17Z" + } + }, + { + "name": "OpenSSL-fips-2_0-rc3", + "target": { + "committedDate": "2011-11-18T18:50:57Z" + } + }, + { + "name": "OpenSSL-fips-2_0-rc4", + "target": { + "committedDate": "2011-11-19T17:04:28Z" + } + }, + { + "name": "OpenSSL-fips-2_0-rc5", + "target": { + "committedDate": "2011-11-25T16:27:19Z" + } + }, + { + "name": "OpenSSL-fips-2_0-rc6", + "target": { + "committedDate": "2011-12-04T21:29:08Z" + } + }, + { + "name": "OpenSSL-fips-2_0-rc7", + "target": { + "committedDate": "2011-12-12T13:44:05Z" + } + }, + { + "name": "OpenSSL-fips-2_0-rc8", + "target": { + "committedDate": "2012-01-03T19:43:06Z" + } + }, + { + "name": "OpenSSL-fips-2_0-rc9", + "target": { + "committedDate": "2012-01-18T15:07:11Z" + } + }, + { + "name": "OpenSSL-fips-2_0", + "target": { + "committedDate": "2012-01-18T15:07:11Z" + } + }, + { + "name": "OpenSSL-fips-2_0_1", + "target": { + "committedDate": "2012-10-04T14:10:12Z" + } + } + ] + } + } + } +} \ No newline at end of file diff --git a/tests/data/package/github/openssl/github_mock_data_4.json b/tests/data/package/github/openssl/github_mock_data_4.json new file mode 100644 index 00000000..da64558a --- /dev/null +++ b/tests/data/package/github/openssl/github_mock_data_4.json @@ -0,0 +1,579 @@ +{ + "data": { + "repository": { + "refs": { + "totalCount": 372, + "pageInfo": { + "endCursor": "Mzcy", + "hasNextPage": false + }, + "nodes": [ + { + "name": "OpenSSL-fips-2_0_2", + "target": { + "target": { + "committedDate": "2012-10-14T12:02:53Z" + } + } + }, + { + "name": "OpenSSL-fips-2_0_3", + "target": { + "target": { + "committedDate": "2013-04-10T14:38:24Z" + } + } + }, + { + "name": "OpenSSL-fips-2_0_4", + "target": { + "target": { + "committedDate": "2013-12-16T14:07:18Z" + } + } + }, + { + "name": "OpenSSL-fips-2_0_5", + "target": { + "target": { + "committedDate": "2013-12-16T14:29:20Z" + } + } + }, + { + "name": "OpenSSL-fips-2_0_6", + "target": { + "target": { + "committedDate": "2013-12-16T21:41:07Z" + } + } + }, + { + "name": "OpenSSL-fips-2_0_7", + "target": { + "target": { + "committedDate": "2014-05-12T17:38:41Z" + } + } + }, + { + "name": "OpenSSL-fips-2_0_8", + "target": { + "target": { + "committedDate": "2014-07-11T18:14:15Z" + } + } + }, + { + "name": "OpenSSL-fips-2_0_9", + "target": { + "target": { + "committedDate": "2014-10-24T19:41:49Z" + } + } + }, + { + "name": "OpenSSL-fips-2_0_10", + "target": { + "target": { + "committedDate": "2015-05-13T14:48:08Z" + } + } + }, + { + "name": "OpenSSL-fips-2_0_11", + "target": { + "target": { + "committedDate": "2015-07-04T19:18:46Z" + } + } + }, + { + "name": "OpenSSL-fips-2_0_12", + "target": { + "target": { + "committedDate": "2016-02-15T15:26:20Z" + } + } + }, + { + "name": "OpenSSL-fips-2_0_13", + "target": { + "target": { + "committedDate": "2016-06-21T21:44:54Z" + } + } + }, + { + "name": "OpenSSL-fips-2_0_14", + "target": { + "target": { + "committedDate": "2016-11-14T22:00:41Z" + } + } + }, + { + "name": "OpenSSL-fips-2_0_15", + "target": { + "target": { + "committedDate": "2017-08-30T20:27:46Z" + } + } + }, + { + "name": "OpenSSL-fips-2_0_16", + "target": { + "target": { + "committedDate": "2017-08-30T20:45:26Z" + } + } + }, + { + "name": "SSLeay_0_8_1b", + "target": { + "committedDate": "1998-12-21T10:52:48Z" + } + }, + { + "name": "SSLeay_0_9_0b", + "target": { + "committedDate": "1998-12-21T10:56:40Z" + } + }, + { + "name": "SSLeay_0_9_1b", + "target": { + "committedDate": "1998-12-21T11:00:57Z" + } + }, + { + "name": "STATE_after_zlib", + "target": { + "committedDate": "2002-12-08T09:31:42Z" + } + }, + { + "name": "STATE_before_zlib", + "target": { + "committedDate": "2002-12-07T20:03:43Z" + } + }, + { + "name": "master-post-auto-reformat", + "target": { + "target": { + "committedDate": "2015-01-22T09:20:10Z" + } + } + }, + { + "name": "master-post-reformat", + "target": { + "target": { + "committedDate": "2015-01-22T09:20:10Z" + } + } + }, + { + "name": "master-pre-auto-reformat", + "target": { + "target": { + "committedDate": "2015-01-22T09:20:09Z" + } + } + }, + { + "name": "master-pre-reformat", + "target": { + "target": { + "committedDate": "2015-01-14T20:57:28Z" + } + } + }, + { + "name": "openssl-3.0.0-alpha1", + "target": { + "target": { + "committedDate": "2020-04-23T13:08:36Z" + } + } + }, + { + "name": "openssl-3.0.0-alpha2", + "target": { + "target": { + "committedDate": "2020-05-15T13:33:29Z" + } + } + }, + { + "name": "openssl-3.0.0-alpha3", + "target": { + "target": { + "committedDate": "2020-06-04T13:56:40Z" + } + } + }, + { + "name": "openssl-3.0.0-alpha4", + "target": { + "target": { + "committedDate": "2020-06-25T13:58:16Z" + } + } + }, + { + "name": "openssl-3.0.0-alpha5", + "target": { + "target": { + "committedDate": "2020-07-16T13:22:29Z" + } + } + }, + { + "name": "openssl-3.0.0-alpha6", + "target": { + "target": { + "committedDate": "2020-08-06T13:00:13Z" + } + } + }, + { + "name": "openssl-3.0.0-alpha7", + "target": { + "target": { + "committedDate": "2020-10-15T13:15:55Z" + } + } + }, + { + "name": "openssl-3.0.0-alpha8", + "target": { + "target": { + "committedDate": "2020-11-05T14:03:50Z" + } + } + }, + { + "name": "openssl-3.0.0-alpha9", + "target": { + "target": { + "committedDate": "2020-11-26T14:53:04Z" + } + } + }, + { + "name": "openssl-3.0.0-alpha10", + "target": { + "target": { + "committedDate": "2021-01-07T13:48:10Z" + } + } + }, + { + "name": "openssl-3.0.0-alpha11", + "target": { + "target": { + "committedDate": "2021-01-28T13:07:51Z" + } + } + }, + { + "name": "openssl-3.0.0-alpha12", + "target": { + "target": { + "committedDate": "2021-02-18T15:08:53Z" + } + } + }, + { + "name": "openssl-3.0.0-alpha13", + "target": { + "target": { + "committedDate": "2021-03-11T13:47:12Z" + } + } + }, + { + "name": "openssl-3.0.0-alpha14", + "target": { + "target": { + "committedDate": "2021-04-08T12:15:48Z" + } + } + }, + { + "name": "openssl-3.0.0-alpha15", + "target": { + "target": { + "committedDate": "2021-04-22T13:44:12Z" + } + } + }, + { + "name": "openssl-3.0.0-alpha16", + "target": { + "target": { + "committedDate": "2021-05-06T12:15:03Z" + } + } + }, + { + "name": "openssl-3.0.0-alpha17", + "target": { + "target": { + "committedDate": "2021-05-20T13:30:20Z" + } + } + }, + { + "name": "openssl-3.0.0-beta1", + "target": { + "target": { + "committedDate": "2021-06-17T13:03:42Z" + } + } + }, + { + "name": "openssl-3.0.0-beta2", + "target": { + "target": { + "committedDate": "2021-07-29T14:50:29Z" + } + } + }, + { + "name": "openssl-3.0.0", + "target": { + "target": { + "committedDate": "2021-09-07T11:46:32Z" + } + } + }, + { + "name": "openssl-3.0.1", + "target": { + "target": { + "committedDate": "2021-12-14T16:16:25Z" + } + } + }, + { + "name": "openssl-3.0.2", + "target": { + "target": { + "committedDate": "2022-03-15T14:30:24Z" + } + } + }, + { + "name": "openssl-3.0.3", + "target": { + "target": { + "committedDate": "2022-05-03T13:32:01Z" + } + } + }, + { + "name": "openssl-3.0.4", + "target": { + "target": { + "committedDate": "2022-06-21T13:30:58Z" + } + } + }, + { + "name": "openssl-3.0.5", + "target": { + "target": { + "committedDate": "2022-07-05T08:57:04Z" + } + } + }, + { + "name": "openssl-3.0.6", + "target": { + "target": { + "committedDate": "2022-10-11T12:39:09Z" + } + } + }, + { + "name": "openssl-3.0.7", + "target": { + "target": { + "committedDate": "2022-11-01T14:14:36Z" + } + } + }, + { + "name": "openssl-3.0.8", + "target": { + "target": { + "committedDate": "2023-02-07T13:43:33Z" + } + } + }, + { + "name": "openssl-3.0.9", + "target": { + "target": { + "committedDate": "2023-05-30T12:31:57Z" + } + } + }, + { + "name": "openssl-3.0.10", + "target": { + "target": { + "committedDate": "2023-08-01T13:47:24Z" + } + } + }, + { + "name": "openssl-3.0.11", + "target": { + "target": { + "committedDate": "2023-09-19T13:02:31Z" + } + } + }, + { + "name": "openssl-3.0.12", + "target": { + "target": { + "committedDate": "2023-10-24T13:48:41Z" + } + } + }, + { + "name": "openssl-3.0.13", + "target": { + "target": { + "committedDate": "2024-01-30T13:28:16Z" + } + } + }, + { + "name": "openssl-3.1.0-alpha1", + "target": { + "target": { + "committedDate": "2022-12-01T13:21:40Z" + } + } + }, + { + "name": "openssl-3.1.0-beta1", + "target": { + "target": { + "committedDate": "2022-12-21T10:23:21Z" + } + } + }, + { + "name": "openssl-3.1.0", + "target": { + "target": { + "committedDate": "2023-03-14T12:59:07Z" + } + } + }, + { + "name": "openssl-3.1.1", + "target": { + "target": { + "committedDate": "2023-05-30T12:13:24Z" + } + } + }, + { + "name": "openssl-3.1.2", + "target": { + "target": { + "committedDate": "2023-08-01T13:36:55Z" + } + } + }, + { + "name": "openssl-3.1.3", + "target": { + "target": { + "committedDate": "2023-09-19T13:01:49Z" + } + } + }, + { + "name": "openssl-3.1.4", + "target": { + "target": { + "committedDate": "2023-10-24T13:41:51Z" + } + } + }, + { + "name": "openssl-3.1.5", + "target": { + "target": { + "committedDate": "2024-01-30T13:22:11Z" + } + } + }, + { + "name": "openssl-3.2.0-alpha1", + "target": { + "target": { + "committedDate": "2023-09-07T09:00:22Z" + } + } + }, + { + "name": "openssl-3.2.0-alpha2", + "target": { + "target": { + "committedDate": "2023-09-28T13:24:32Z" + } + } + }, + { + "name": "openssl-3.2.0-beta1", + "target": { + "target": { + "committedDate": "2023-10-26T13:22:51Z" + } + } + }, + { + "name": "openssl-3.2.0", + "target": { + "target": { + "committedDate": "2023-11-23T13:20:19Z" + } + } + }, + { + "name": "openssl-3.2.1", + "target": { + "target": { + "committedDate": "2024-01-30T13:14:56Z" + } + } + }, + { + "name": "openssl-3.3.0-alpha1", + "target": { + "target": { + "committedDate": "2024-03-20T12:09:34Z" + } + } + }, + { + "name": "rsaref", + "target": { + "committedDate": "2000-11-07T13:49:47Z" + } + } + ] + } + } + } +} \ No newline at end of file diff --git a/tests/data/package/github/regenerate_mock_data.py b/tests/data/package/github/regenerate_mock_data.py index a28a33d1..41467300 100644 --- a/tests/data/package/github/regenerate_mock_data.py +++ b/tests/data/package/github/regenerate_mock_data.py @@ -72,6 +72,7 @@ def fetch_github_mock_data(owner, name, subdir): ("rpm-software-management", "rpm", "rpm"), ("python", "cpython", "cpython"), ("erofs", "erofs-utils", "erofs-utils"), + ("openssl", "openssl", "openssl"), ] diff --git a/tests/test_package.py b/tests/test_package.py index 4fe568a8..803b8755 100644 --- a/tests/test_package.py +++ b/tests/test_package.py @@ -500,6 +500,27 @@ def test_packages_github_source_erofs_utils( self.check_result(expected_file, result) + @mock.patch("fetchcode.utils.get_response") + @mock.patch("fetchcode.utils.github_response") + def test_packages_github_source_openssl( + self, mock_github_response, mock_get_response + ): + test_data = [ + "tests/data/package/github/openssl/github_mock_data_1.json", + "tests/data/package/github/openssl/github_mock_data_2.json", + "tests/data/package/github/openssl/github_mock_data_3.json", + "tests/data/package/github/openssl/github_mock_data_4.json", + ] + mock_github_response.side_effect = [file_json(file) for file in test_data] + mock_get_response.return_value = file_json( + "tests/data/package/github/openssl/github_mock_data_0.json" + ) + + expected_file = "tests/data/package/github/openssl-expected.json" + result = info("pkg:openssl/openssl") + + self.check_result(expected_file, result) + class DirListedTestCase(TestCase): def check_result(self, filename, packages, regen=False): @@ -1059,6 +1080,12 @@ def test_packages_ipkg(self): self.check_result(expected_file, result) + def test_packages_udhcp(self): + expected_file = "tests/data/package/dirlisting/generic/udhcp-expected.json" + result = info("pkg:generic/udhcp") + + self.check_result(expected_file, result) + @mock.patch("requests.get") def test_packages_util_linux(self, mock_get): test_data = [ @@ -1143,7 +1170,7 @@ def test_packages_barebox(self, mock_get): result = info("pkg:generic/barebox") self.check_result(expected_file, result) - + @mock.patch("requests.get") def test_packages_e2fsprogs(self, mock_get): test_data = [