{"id":32116802,"url":"https://github.com/lsh123/xmlsec","last_synced_at":"2026-02-17T22:34:12.029Z","repository":{"id":37253078,"uuid":"50599822","full_name":"lsh123/xmlsec","owner":"lsh123","description":"XML Security Library","archived":false,"fork":false,"pushed_at":"2026-01-11T21:25:40.000Z","size":23189,"stargazers_count":156,"open_issues_count":10,"forks_count":109,"subscribers_count":17,"default_branch":"master","last_synced_at":"2026-01-12T01:12:17.216Z","etag":null,"topics":["security","xml"],"latest_commit_sha":null,"homepage":null,"language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lsh123.png","metadata":{"files":{"readme":"README.md","changelog":"ChangeLog","contributing":null,"funding":null,"license":"COPYING","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":"AUTHORS","dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":"MAINTAINERS","copyright":"Copyright","agents":null,"dco":null,"cla":null}},"created_at":"2016-01-28T17:21:23.000Z","updated_at":"2026-01-11T21:25:39.000Z","dependencies_parsed_at":"2022-07-12T16:14:51.188Z","dependency_job_id":"5f233f74-39ee-4573-9cdb-76b7f887c21e","html_url":"https://github.com/lsh123/xmlsec","commit_stats":{"total_commits":1839,"total_committers":46,"mean_commits":39.97826086956522,"dds":0.5437737901033171,"last_synced_commit":"243afff94c6eb468bec96e9637e0f1c6fe6da445"},"previous_names":[],"tags_count":108,"template":false,"template_full_name":null,"purl":"pkg:github/lsh123/xmlsec","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lsh123%2Fxmlsec","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lsh123%2Fxmlsec/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lsh123%2Fxmlsec/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lsh123%2Fxmlsec/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lsh123","download_url":"https://codeload.github.com/lsh123/xmlsec/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lsh123%2Fxmlsec/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29560950,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-17T21:50:49.831Z","status":"ssl_error","status_checked_at":"2026-02-17T21:46:15.313Z","response_time":100,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["security","xml"],"created_at":"2025-10-20T16:12:16.364Z","updated_at":"2026-02-17T22:34:12.013Z","avatar_url":"https://github.com/lsh123.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# XMLSec Library\n\nXMLSec library provides C based implementation for major XML Security\nstandards:\n- [XML Signature Syntax and Processing](https://www.w3.org/TR/xmldsig-core)\n- [XML Encryption Syntax and Processing](https://www.w3.org/TR/xmlenc-core/)\n\nDetailed information about supported features and algorithms can be found in \nthe [XMLDsig](https://www.aleksey.com/xmlsec/xmldsig.html) and \nthe [XMLEnc](https://www.aleksey.com/xmlsec/xmlenc.html) interoperability reports.\n\n## Documentation\nComplete XMLSec library documentation is published on [XMLSec website](https://www.aleksey.com/xmlsec/).\n\n## License\nXMLSec library is released under the MIT Licence (see the [Copyright file](Copyright)).\n\n## Building and installing XMLSec\n\n### Prerequisites\nXMLSec requires the following libraries:\n- [LibXML2](http://xmlsoft.org)\n- [LibXSLT](http://xmlsoft.org/XSLT/)\n\nAnd at least one of the following cryptographic libraries:\n- [OpenSSL](http://www.openssl.org)\n- [NSS](https://firefox-source-docs.mozilla.org/security/nss/index.html)\n- [GCrypt/GnuTLS](https://www.gnutls.org/)\n- MS Crypto API (Windows only)\n- MS Crypto API NG (Windows only)\n\nFor example, the following packages need to be installed on Ubuntu to build\nXMLSec library:\n```\n# common build tools\napt install automake autoconf libtool libtool-bin gcc\n\n# ltdl is required to support dynamic crypto libs loading\napt install libltdl7 libltdl-dev\n\n# core libxml2 and libxslt libraries\napt install libxml2 libxml2-dev libxslt1.1 libxslt1-dev\n\n# openssl libraries\napt install openssl libssl3 libssl-dev\n\n# nspr/nss libraries\napt install libnspr4 libnspr4-dev libnss3 libnss3-dev libnss3-tools\n\n# gnutls libraries\napt install libgnutls30\n\n# gnutls libraries\napt install libgcrypt20 libgcrypt20-dev\n\n# required for building man pages and docs\napt install help2man man2html gtk-doc-tools\n```\n\n### Building XMLSec on Linux, Unix, MacOSX, MinGW, Cygwin, etc\n\nTo build and install XMLSec library on Unix-like systems from a release tarball, run the following commands:\n\n```\ngunzip -c xmlsec1-\u003cversion\u003e.tar.gz | tar xvf -\ncd xmlsec1-\u003cversion\u003e\n./configure [possible configure options]\nmake\nmake check\nmake install\n```\n\nTo see the configuration options, run:\n\n```\n./configure --help\n```\n\nTo build from GitHub, run the following commands:\n\n```\ngit clone https://github.com/lsh123/xmlsec.git\ncd xmlsec\n./autogen.sh [possible configure options]\nmake\nmake check\nmake install\n```\n\n### Building XMLSec on Windows\n\nSee [win32/README.md](win32/README.md) for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flsh123%2Fxmlsec","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flsh123%2Fxmlsec","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flsh123%2Fxmlsec/lists"}