{"id":44430116,"url":"https://github.com/azuchi/secp256k1rb","last_synced_at":"2026-02-12T12:38:18.683Z","repository":{"id":262192776,"uuid":"797071168","full_name":"azuchi/secp256k1rb","owner":"azuchi","description":"Ruby binding for libsecp256k1.","archived":false,"fork":false,"pushed_at":"2025-12-30T05:29:20.000Z","size":1763,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2026-01-02T16:13:00.936Z","etag":null,"topics":["musig2","ruby","secp256k1"],"latest_commit_sha":null,"homepage":"","language":"Ruby","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/azuchi.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":"CODE_OF_CONDUCT.md","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},"funding":{"github":"azuchi"}},"created_at":"2024-05-07T06:27:20.000Z","updated_at":"2025-12-30T05:29:24.000Z","dependencies_parsed_at":"2024-12-27T08:17:53.842Z","dependency_job_id":"ce5d8db2-18b4-4231-8e36-d2d05b10cb27","html_url":"https://github.com/azuchi/secp256k1rb","commit_stats":null,"previous_names":["azuchi/secp256k1rb"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/azuchi/secp256k1rb","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azuchi%2Fsecp256k1rb","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azuchi%2Fsecp256k1rb/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azuchi%2Fsecp256k1rb/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azuchi%2Fsecp256k1rb/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/azuchi","download_url":"https://codeload.github.com/azuchi/secp256k1rb/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azuchi%2Fsecp256k1rb/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29366370,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-12T08:51:36.827Z","status":"ssl_error","status_checked_at":"2026-02-12T08:51:26.849Z","response_time":55,"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":["musig2","ruby","secp256k1"],"created_at":"2026-02-12T12:38:14.958Z","updated_at":"2026-02-12T12:38:18.675Z","avatar_url":"https://github.com/azuchi.png","language":"Ruby","funding_links":["https://github.com/sponsors/azuchi"],"categories":[],"sub_categories":[],"readme":"# secp256k1rb\n\nThis is a Ruby binding for Bitcoin Core's [secp256k1 library](https://github.com/bitcoin-core/secp256k1/).\n\n## Installation\n\nAdd this line to your application's Gemfile:\n\n```ruby\ngem 'secp256k1rb', require: 'secp256k1'\n```\n\nAnd then execute:\n\n    $ bundle install\n\nOr install it yourself as:\n\n    $ gem install secp256k1rb\n\n## Usage\n\nTo use this library, you need to specify the path of the secp256k1 shared library in environment variable\n`SECP256K1_LIB_PATH`, e.g: `$ export SECP256K1_LIB_PATH=/var/local/lib/libsecp256k1.so`.\n\nNote: This library also implements the recovery module, so you must have built the secp256k1 library with the\n`--enable-module-recovery` option.\n\nBy including the Secp256k1 module, you can use the features provided by the `libsepc256k1` library. For example:\n\n```ruby\nrequire 'secp256k1'\n\ninclude Secp256k1\n\ngenerate_key_pair\n=\u003e [\"e00c2ae99e59b5262be3d507d026081f0e6cf9972ffdd4f2d45a390f7a41b053\", \"027e0f70b540d627422cf7bb77d86ae1bb6829c80104dd48dc2539e6277ea25624\"]\n```\n\nSee [here](https://www.rubydoc.info/gems/secp256k1rb/Secp256k1) for available methods.\nIn addition, the following modules are also included, so you can use them as they are.\n\n* [Recover](https://www.rubydoc.info/gems/secp256k1rb/Secp256k1/Recover)\n* [SchnorrSig](https://www.rubydoc.info/gems/secp256k1rb/Secp256k1/SchnorrSig)\n* [MuSig](https://www.rubydoc.info/gems/secp256k1rb/Secp256k1/MuSig)\n* [EllSwift](https://www.rubydoc.info/gems/secp256k1rb/Secp256k1/EllSwift)\n\n### Compatibility\n\nsecp256k1 version | secp256k1rb version\n:---:|:---:\nv0.4.0 | v0.1.x\nv0.6.0 | v0.2.x\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fazuchi%2Fsecp256k1rb","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fazuchi%2Fsecp256k1rb","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fazuchi%2Fsecp256k1rb/lists"}