{"id":32306121,"url":"https://github.com/litaoh/blake-hash","last_synced_at":"2026-07-18T11:06:54.252Z","repository":{"id":46076990,"uuid":"247446257","full_name":"litaoh/blake-hash","owner":"litaoh","description":"Implementation of Blake encryption algorithm","archived":false,"fork":false,"pushed_at":"2021-11-19T10:50:41.000Z","size":12,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-04-30T08:19:52.355Z","etag":null,"topics":["blake","blake256","blake512"],"latest_commit_sha":null,"homepage":"https://pub.dev/packages/blake_hash","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/litaoh.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":"2020-03-15T10:41:39.000Z","updated_at":"2023-07-27T10:06:10.000Z","dependencies_parsed_at":"2022-09-20T22:11:04.907Z","dependency_job_id":null,"html_url":"https://github.com/litaoh/blake-hash","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/litaoh/blake-hash","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/litaoh%2Fblake-hash","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/litaoh%2Fblake-hash/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/litaoh%2Fblake-hash/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/litaoh%2Fblake-hash/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/litaoh","download_url":"https://codeload.github.com/litaoh/blake-hash/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/litaoh%2Fblake-hash/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35615624,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-18T02:00:07.223Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["blake","blake256","blake512"],"created_at":"2025-10-23T07:00:49.509Z","updated_at":"2026-07-18T11:06:54.247Z","avatar_url":"https://github.com/litaoh.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"Implementation of Blake encryption algorithm\n\n## Install\n```yaml\ndependencies:\n  blake_hash: ^1.0.2\n```\n\n## Usage\n\nA simple usage example:\n\n```dart\nimport 'dart:typed_data';\nimport 'package:blake_hash/blake_hash.dart';\n\nvoid main() {\n  Uint8List source = Uint8List.fromList([\n    14, 251, 24, 220, 202, 235, 97, 232, //\n    85, 229, 109, 188, 53, 146, 43, 36,\n    246, 238, 110, 55, 202, 163\n  ]);\n  Blake blake = Blake256();\n  source = blake.update(source).digest();\n  print(source);\n\n  /// =\u003e [102, 119, 97, 10, 202, 38, 121, 69, 113, 107, 204, 30, 2, 56, 132, 219, 223, 178, 104, 33, 38, 181, 219, 126, 87, 74, 200, 152, 115, 14, 108, 138]\n\n  source = blake.reset().update(source).digest();\n  print(source);\n\n  /// =\u003e [160, 123, 169, 35, 32, 106, 124, 57, 39, 1, 52, 241, 107, 182, 255, 52, 253, 188, 54, 150, 214, 169, 56, 120, 60, 214, 85, 151, 232, 87, 222, 19]\n\n  blake = Blake512();\n  source = blake.update(source).digest();\n  print(source);\n\n  /// =\u003e [117, 52, 187, 72, 187, 76, 107, 178, 112, 89, 59, 37, 165, 71, 131, 97, 175, 233, 9, 153, 195, 129, 194, 195, 21, 219, 210, 135, 27, 138, 195, 195, 88, 222, 226, 177, 248, 177, 249, 104, 10, 65, 64, 133, 3, 39, 178, 163, 188, 199, 27, 131, 233, 51, 173, 224, 155, 187, 234, 240, 8, 213, 69, 248]\n\n  source = blake.reset().update(source).digest();\n  print(source);\n\n  /// =\u003e [160, 201, 200, 166, 213, 62, 61, 9, 179, 14, 57, 12, 52, 136, 190, 72, 163, 161, 65, 80, 246, 114, 151, 80, 159, 29, 171, 230, 179, 36, 37, 7, 71, 182, 118, 226, 144, 41, 123, 79, 123, 157, 83, 71, 226, 182, 246, 151, 58, 106, 56, 171, 152, 43, 43, 131, 197, 189, 228, 224, 198, 11, 176, 206]\n}\n```\n\n\n## LICENSE\n\nThis library is free and open-source software released under the MIT license.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flitaoh%2Fblake-hash","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flitaoh%2Fblake-hash","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flitaoh%2Fblake-hash/lists"}