{"id":47444096,"url":"https://github.com/JuliaWeb/OpenSSL.jl","last_synced_at":"2026-04-06T13:00:57.149Z","repository":{"id":60244602,"uuid":"539707954","full_name":"JuliaWeb/OpenSSL.jl","owner":"JuliaWeb","description":null,"archived":false,"fork":false,"pushed_at":"2026-03-30T19:53:46.000Z","size":273,"stargazers_count":19,"open_issues_count":18,"forks_count":13,"subscribers_count":5,"default_branch":"main","last_synced_at":"2026-04-01T04:48:55.921Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Julia","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/JuliaWeb.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-09-21T22:32:17.000Z","updated_at":"2025-12-13T05:07:12.000Z","dependencies_parsed_at":"2024-03-04T13:55:01.477Z","dependency_job_id":"29a6f525-9f87-4d58-bb3d-23eb3fe95eea","html_url":"https://github.com/JuliaWeb/OpenSSL.jl","commit_stats":null,"previous_names":[],"tags_count":12,"template":false,"template_full_name":null,"purl":"pkg:github/JuliaWeb/OpenSSL.jl","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JuliaWeb%2FOpenSSL.jl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JuliaWeb%2FOpenSSL.jl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JuliaWeb%2FOpenSSL.jl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JuliaWeb%2FOpenSSL.jl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JuliaWeb","download_url":"https://codeload.github.com/JuliaWeb/OpenSSL.jl/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JuliaWeb%2FOpenSSL.jl/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31473271,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-06T08:36:52.050Z","status":"ssl_error","status_checked_at":"2026-04-06T08:36:51.267Z","response_time":112,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-03-23T06:00:59.902Z","updated_at":"2026-04-06T13:00:57.144Z","avatar_url":"https://github.com/JuliaWeb.png","language":"Julia","funding_links":[],"categories":["Network Security"],"sub_categories":["TLS and SSL"],"readme":"# OpenSSL.jl \n\n[OpenSSL](https://www.openssl.org/) Julia bindings.\n\n[![Build Status](https://github.com/JuliaWeb/OpenSSL.jl/workflows/CI/badge.svg)](https://github.com/JuliaWeb/OpenSSL.jl/actions?query=workflow%3ACI+branch%3Amain)\n[![codecov](https://codecov.io/gh/JuliaWeb/OpenSSL.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/JuliaWeb/OpenSSL.jl)\n\n## Installation\n\nThe package can be installed with Julia's package manager,\neither by using the Pkg REPL mode (press `]` to enter):\n```\npkg\u003e add OpenSSL\n```\nor by using Pkg functions\n```julia\njulia\u003e using Pkg; Pkg.add(\"OpenSSL\")\n```\n\n## Project Status\n\nThe package has matured and is used in many production systems.\nBut as with all open-source software, please try it out and report your experience.\n\nThe package is tested against current Julia LTS (1.6), latest release (1.8), and nightly on Linux, macOS, and Windows.\n\n## Contributing and Questions\n\nContributions are very welcome, as are feature requests and suggestions. Please open an\n[issue][issues-url] if you encounter any problems or would just like to ask a question.\n\n## Usage\n\nWhile various parts of the openssl API are wrapped and tested, the main user-facing API expected to work\nat the moment is for http TLS encryption/decryption, used like:\n\n```julia\nusing OpenSSL, Sockets\n# open a simple TCP connection to an https endpoint\ntcp = connect(\"www.nghttp2.org\", 443)\n# wrap tcp socket in OpenSSL.SSLStream\nssl = SSLStream(tcp)\n# inject host for cert verification\nOpenSSL.hostname!(ssl, \"www.nghttp2.org\")\n# perform TLS handshake\nOpenSSL.connect(ssl)\n# can now write/read from ssl\nrequest_str = \"GET / HTTP/1.1\\r\\nHost: www.nghttp2.org\\r\\nUser-Agent: curl\\r\\nAccept: */*\\r\\n\\r\\n\"\nwritten = write(ssl, request_str)\n@test !eof(ssl)\nio = IOBuffer()\nsleep(2)\nwrite(io, readavailable(ssl))\nresponse = String(take!(io))\n@test startswith(response, \"HTTP/1.1 200 OK\\r\\n\")\nclose(ssl)\n```\n\n\n[issues-url]: https://github.com/JuliaWeb/OpenSSL.jl/issues","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FJuliaWeb%2FOpenSSL.jl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FJuliaWeb%2FOpenSSL.jl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FJuliaWeb%2FOpenSSL.jl/lists"}