{"id":18869178,"url":"https://github.com/primes-network/eosdart_ecc","last_synced_at":"2025-04-14T15:14:14.014Z","repository":{"id":49534689,"uuid":"173674629","full_name":"primes-network/eosdart_ecc","owner":"primes-network","description":"Elliptic curve cryptography functions in Dart. Private Key, Public Key, Signature, AES, Encryption, Decryption","archived":false,"fork":false,"pushed_at":"2021-06-15T17:32:06.000Z","size":48,"stargazers_count":28,"open_issues_count":3,"forks_count":25,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-14T15:14:05.374Z","etag":null,"topics":["cryptography","dart","encryption","eos","eosio","private-key","public-key","signature"],"latest_commit_sha":null,"homepage":null,"language":"Dart","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/primes-network.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":"2019-03-04T04:37:54.000Z","updated_at":"2024-07-21T20:18:46.000Z","dependencies_parsed_at":"2022-09-21T09:13:51.028Z","dependency_job_id":null,"html_url":"https://github.com/primes-network/eosdart_ecc","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/primes-network%2Feosdart_ecc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/primes-network%2Feosdart_ecc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/primes-network%2Feosdart_ecc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/primes-network%2Feosdart_ecc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/primes-network","download_url":"https://codeload.github.com/primes-network/eosdart_ecc/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248904637,"owners_count":21180835,"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":["cryptography","dart","encryption","eos","eosio","private-key","public-key","signature"],"created_at":"2024-11-08T05:16:05.301Z","updated_at":"2025-04-14T15:14:13.991Z","avatar_url":"https://github.com/primes-network.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Elliptic curve cryptography (ECC) in Dart\n\nElliptic curve cryptography lib for EOS based blockchain in Dart lang.\n\n[![Build Status](https://travis-ci.com/primes-network/eosdart_ecc.svg?branch=master)](https://travis-ci.com/primes-network/eosdart_ecc)\n\n\n## Usage\n\nA simple usage example:\n\n```dart\nimport 'package:eosdart_ecc/eosdart_ecc.dart';\n\nmain() {\n  // Construct the EOS private key from string\n  EOSPrivateKey privateKey = EOSPrivateKey.fromString(\n      '5KQwrPbwdL6PhXujxW37FSSQZ1JiwsST4cqQzDeyXtP79zkvFD3');\n\n  // Get the related EOS public key\n  EOSPublicKey publicKey = privateKey.toEOSPublicKey();\n  // Print the EOS public key\n  print(publicKey.toString());\n\n  // Going to sign the data\n  String data = 'data';\n\n  // Sign\n  EOSSignature signature = privateKey.signString(data);\n  // Print the EOS signature\n  print(signature.toString());\n\n  // Verify the data using the signature\n  signature.verify(data, publicKey);\n}\n```\n\n## Features and bugs\n\nPlease file feature requests and bugs at the [issue tracker][tracker].\n\n## References\n\neosjs-ecc: https://github.com/EOSIO/eosjs-ecc\n\n[tracker]: https://github.com/primes-network/eosdart_ecc/issues\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprimes-network%2Feosdart_ecc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fprimes-network%2Feosdart_ecc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprimes-network%2Feosdart_ecc/lists"}