{"id":19031396,"url":"https://github.com/gitjournal/openssh_ed25519","last_synced_at":"2025-06-26T23:17:22.530Z","repository":{"id":40641280,"uuid":"507830031","full_name":"GitJournal/openssh_ed25519","owner":"GitJournal","description":"Serialize an ed25519 key into the openssh format","archived":false,"fork":false,"pushed_at":"2022-06-27T10:20:29.000Z","size":8,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-02T04:14:36.839Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Dart","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/GitJournal.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-06-27T08:43:57.000Z","updated_at":"2022-07-15T17:47:33.000Z","dependencies_parsed_at":"2022-07-16T10:30:40.021Z","dependency_job_id":null,"html_url":"https://github.com/GitJournal/openssh_ed25519","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GitJournal%2Fopenssh_ed25519","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GitJournal%2Fopenssh_ed25519/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GitJournal%2Fopenssh_ed25519/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GitJournal%2Fopenssh_ed25519/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GitJournal","download_url":"https://codeload.github.com/GitJournal/openssh_ed25519/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240080730,"owners_count":19744917,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":"2024-11-08T21:23:16.051Z","updated_at":"2025-02-21T20:22:34.636Z","avatar_url":"https://github.com/GitJournal.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"Dart Package for serializing ed25519 keys into the openssh format\n\n## Usage\n\n```dart\nimport 'dart:io';\n\nimport 'package:cryptography/cryptography.dart';\nimport 'package:openssh_ed25519/openssh_ed25519.dart';\n\nFuture\u003cvoid\u003e main() async {\n  final keyPair = await Ed25519().newKeyPair();\n\n  var privateBytes = await keyPair.extractPrivateKeyBytes();\n  var public = await keyPair.extractPublicKey();\n  var publicBytes = public.bytes;\n\n  var publicStr = encodeEd25519Public(publicBytes);\n  var privateStr = encodeEd25519Private(\n    privateBytes: privateBytes,\n    publicBytes: publicBytes,\n  );\n\n  await File('id_ed25519.pub').writeAsString(publicStr);\n  await File('id_ed25519').writeAsString(privateStr);\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgitjournal%2Fopenssh_ed25519","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgitjournal%2Fopenssh_ed25519","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgitjournal%2Fopenssh_ed25519/lists"}