{"id":34534129,"url":"https://github.com/matt-raffel-kiva/didgen","last_synced_at":"2026-05-24T23:02:38.311Z","repository":{"id":161129544,"uuid":"321493678","full_name":"matt-raffel-kiva/didgen","owner":"matt-raffel-kiva","description":"Simple tool for generating DID and VERKEY pairs","archived":false,"fork":false,"pushed_at":"2025-05-16T17:07:55.000Z","size":16,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-25T17:39:27.950Z","etag":null,"topics":["aries-agents","aries-framework","cryptography","encryption-algorithms","hyperledger","hyperledger-aries","hyperledger-indy","indy-node","indy-sdk","rust","rust-lang"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/matt-raffel-kiva.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}},"created_at":"2020-12-14T22:55:59.000Z","updated_at":"2025-05-16T17:08:00.000Z","dependencies_parsed_at":null,"dependency_job_id":"972b7e30-bad6-4e2d-9f56-7e8ff85af8e3","html_url":"https://github.com/matt-raffel-kiva/didgen","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/matt-raffel-kiva/didgen","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matt-raffel-kiva%2Fdidgen","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matt-raffel-kiva%2Fdidgen/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matt-raffel-kiva%2Fdidgen/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matt-raffel-kiva%2Fdidgen/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/matt-raffel-kiva","download_url":"https://codeload.github.com/matt-raffel-kiva/didgen/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matt-raffel-kiva%2Fdidgen/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33453557,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-24T19:21:36.376Z","status":"ssl_error","status_checked_at":"2026-05-24T19:21:10.562Z","response_time":57,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["aries-agents","aries-framework","cryptography","encryption-algorithms","hyperledger","hyperledger-aries","hyperledger-indy","indy-node","indy-sdk","rust","rust-lang"],"created_at":"2025-12-24T05:56:47.757Z","updated_at":"2026-05-24T23:02:38.302Z","avatar_url":"https://github.com/matt-raffel-kiva.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# didgen\n\nCommand line tool to generate did, verkey pairs.  \n\nIntended to follow the [specification](https://www.w3.org/TR/did-1.0/) but probably needs work.\n\n## Building\nInstall rust. Built using `1.54.0`. Pull the code.    \n\nAt the root of project, `cargo build`.\n\n### Note\nYou need to have libsodium installed or built on your system. \n\n## Command Line arguments\n`--seed` (optional), specify the cryptographic seed for generating did and verkey. Must be 32 bytes  \n\n## Output\n\nnote: verkey is also public key.  Keeping name to match [indy](https://github.com/hyperledger/indy-sdk) naming.  TODO: change to public key.\n\n```\n\nWith no arguments used\n```\nmattraffel@kiva-mattr:~/src/mine/didgen/target/debug$ ./didgen\ndid          -\u003e SR2GQxr47phoUVwajdsuyS\nverkey       -\u003e ErPjftNvwrYVTjjYo7tD21uLxMhQR8udgz1QzR2WQsvj\npk           -\u003e xt19s1sp2UZCGhy9rNyb1FtxdKiDGZZX6hUkC4k8nWJKfZGbRrEG19tDjmCAKCaJLA26BN6gvZxikJFYGaqX95d\n```\n\nand with arguments, the output is the same\n```\nmattraffel@kiva-mattr:~/src/mine/didgen/target/debug$ ./didgen --seed=00000000000000000000000Squidward\ndid          -\u003e SR2GQxr47phoUVwajdsuyS\nverkey       -\u003e ErPjftNvwrYVTjjYo7tD21uLxMhQR8udgz1QzR2WQsvj\npk           -\u003e xt19s1sp2UZCGhy9rNyb1FtxdKiDGZZX6hUkC4k8nWJKfZGbRrEG19tDjmCAKCaJLA26BN6gvZxikJFYGaqX95d\n```\n\nand if you run using cargo, pass command line arguments like this\n```\nmattraffel@kiva-mattr:~/src/mine/didgen$ cargo run -- --seed=00000000000000000000000Squidward\n   Compiling didgen v0.1.0 (/Users/mattraffel/src/mine/didgen)\n    Finished dev [unoptimized + debuginfo] target(s) in 1.72s\n     Running `target/debug/didgen --seed=00000000000000000000000Squidward`\ndid          -\u003e SR2GQxr47phoUVwajdsuyS\nverkey       -\u003e ErPjftNvwrYVTjjYo7tD21uLxMhQR8udgz1QzR2WQsvj\npk           -\u003e xt19s1sp2UZCGhy9rNyb1FtxdKiDGZZX6hUkC4k8nWJKfZGbRrEG19tDjmCAKCaJLA26BN6gvZxikJFYGaqX95d\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatt-raffel-kiva%2Fdidgen","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmatt-raffel-kiva%2Fdidgen","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatt-raffel-kiva%2Fdidgen/lists"}