{"id":28617529,"url":"https://github.com/wolfssl/gnutls-wolfssl","last_synced_at":"2026-01-20T16:25:07.176Z","repository":{"id":288138695,"uuid":"950189991","full_name":"wolfSSL/gnutls-wolfssl","owner":"wolfSSL","description":"Port of wolfSSL into gnutls","archived":false,"fork":false,"pushed_at":"2025-10-16T22:24:51.000Z","size":409,"stargazers_count":0,"open_issues_count":0,"forks_count":3,"subscribers_count":17,"default_branch":"main","last_synced_at":"2025-10-18T01:53:55.428Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wolfSSL.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2025-03-17T19:13:27.000Z","updated_at":"2025-10-16T22:24:56.000Z","dependencies_parsed_at":"2025-05-21T09:30:21.619Z","dependency_job_id":"144c9f67-3440-4e7e-a63f-8ce4ba5955d7","html_url":"https://github.com/wolfSSL/gnutls-wolfssl","commit_stats":null,"previous_names":["wolfssl/gnutls-wolfssl"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/wolfSSL/gnutls-wolfssl","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wolfSSL%2Fgnutls-wolfssl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wolfSSL%2Fgnutls-wolfssl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wolfSSL%2Fgnutls-wolfssl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wolfSSL%2Fgnutls-wolfssl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wolfSSL","download_url":"https://codeload.github.com/wolfSSL/gnutls-wolfssl/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wolfSSL%2Fgnutls-wolfssl/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28606989,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T16:10:39.856Z","status":"ssl_error","status_checked_at":"2026-01-20T16:10:39.493Z","response_time":117,"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":"2025-06-12T03:19:11.520Z","updated_at":"2026-01-20T16:25:07.171Z","avatar_url":"https://github.com/wolfSSL.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# gnutls-wolfssl\n\nExperimental port of wolfSSL into GnuTLS. One script builds everything and drops the bits under /opt.\n\n## Quick start\n```\ngit clone https://github.com/wolfssl/gnutls-wolfssl.git\ncd gnutls-wolfssl\n# regular build (uses default GnuTLS 3.8.9)\n./setup.sh\n\n# build with FIPS 140 support\n./setup.sh fips\n\n# build specific GnuTLS version\n./setup.sh 3.8.11\n\n# build specific version with FIPS 140 support\n./setup.sh fips 3.8.11\n\n# show help and all options\n./setup.sh --help\n```\nOn success you get:\n```\n/opt/wolfssl                  wolfSSL\n/opt/gnutls                   GnuTLS built on wolfSSL\n/opt/wolfssl-gnutls-wrapper   runtime shim\n```\nIf the loader can’t find the libs, add the path to LD_LIBRARY_PATH (Linux) or DYLD_LIBRARY_PATH (macOS).\n\n## Environment variables\n| var | default | note |\n|-----|---------|------|\n| WOLFSSL_INSTALL | /opt/wolfssl | install prefix |\n| GNUTLS_INSTALL  | /opt/gnutls  | install prefix |\n| PROVIDER_PATH | /opt/wolfssl-gnutls-wrapper/ | install prefix|\n| WOLFSSL_FIPS_BUNDLE | - | path to pre-downloaded wolfSSL FIPS bundle (optional, FIPS mode only) |\n| GNUTLS_FORCE_FIPS_MODE | 0 | set to 1 at runtime to enforce FIPS |\n| WGW_LOGGING | 1 |By default wolfssl-gnutls-wrapper will show logging information. Set to 0 to turn off logging |\n| WGW_LOGFILE | - | By default wolfssl-gnutls-wrapper will log to stderr. This can be changed to stdout or a filename |\n\n\n## Directory layout (after setup.sh has been run)\n```\nsetup.sh                       do‑it‑all build script\nrebuild-gnutls.sh              rebuild GnuTLS only\nwolfssl/                       upstream clone\ngnutls/                        upstream clone + branch gnutls-wolfssl-VERSION\nwolfssl-gnutls-wrapper/        thin shim + tests\n```\n\n## Version support\nThe setup script supports building different GnuTLS versions by specifying the version number as an argument. The script will checkout the corresponding branch (e.g., `gnutls-wolfssl (3.8.9)`, `gnutls-wolfssl-3.8.11 (3.8.11)`).\n\n**Note:** When building GnuTLS 3.8.11 on Linux, the script automatically downloads and builds nettle 3.10, as this version requires nettle \u003e= 3.10.\n\n## Tests\n```\ncd wolfssl-gnutls-wrapper\n\n# build wrapper\nmake\n\n# full suite\nmake test\n\n# fast run of the test suite\nmake test_fast\n\n# test fips (only if ./setup.sh was run in fips mode)\nmake test_fips\n```\nEach test prints ✔️/❌ and a summary.\n\n## Using in your project\n```\ncc app.c \\\n  -I/opt/gnutls/include -I/opt/wolfssl/include \\\n  -L/opt/gnutls/lib -lgnutls \\\n  -L/opt/wolfssl/lib -lwolfssl \\\n  -L/opt/wolfssl-gnutls-wrapper/lib -lgnutls-wolfssl-wrapper\n```\nMake sure the wrapper comes after gnutls on the linker line.\n\n## Clean up\n```\nsudo rm -rf /opt/wolfssl /opt/gnutls /opt/wolfssl-gnutls-wrapper\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwolfssl%2Fgnutls-wolfssl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwolfssl%2Fgnutls-wolfssl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwolfssl%2Fgnutls-wolfssl/lists"}