{"id":22760853,"url":"https://github.com/thevilledev/chibihash-hs","last_synced_at":"2026-01-31T23:09:31.668Z","repository":{"id":265120489,"uuid":"894714342","full_name":"thevilledev/ChibiHash-hs","owner":"thevilledev","description":"ChibiHash in Haskell - a small, fast 64-bit hash function","archived":false,"fork":false,"pushed_at":"2024-12-03T05:58:34.000Z","size":22,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-01T17:27:48.850Z","etag":null,"topics":["hash-functions","haskell-library"],"latest_commit_sha":null,"homepage":"https://nrk.neocities.org/articles/chibihash","language":"Haskell","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/thevilledev.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-11-26T21:16:58.000Z","updated_at":"2025-10-21T18:10:43.000Z","dependencies_parsed_at":"2025-04-14T19:20:26.470Z","dependency_job_id":null,"html_url":"https://github.com/thevilledev/ChibiHash-hs","commit_stats":null,"previous_names":["thevilledev/chibihash-hs"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/thevilledev/ChibiHash-hs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thevilledev%2FChibiHash-hs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thevilledev%2FChibiHash-hs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thevilledev%2FChibiHash-hs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thevilledev%2FChibiHash-hs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thevilledev","download_url":"https://codeload.github.com/thevilledev/ChibiHash-hs/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thevilledev%2FChibiHash-hs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28959698,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-31T23:03:11.038Z","status":"ssl_error","status_checked_at":"2026-01-31T22:56:44.691Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["hash-functions","haskell-library"],"created_at":"2024-12-11T09:08:44.277Z","updated_at":"2026-01-31T23:09:31.662Z","avatar_url":"https://github.com/thevilledev.png","language":"Haskell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ChibiHash-hs\n\n[\u003cimg alt=\"Hackage Version\" src=\"https://img.shields.io/hackage/v/ChibiHash\"\u003e](https://hackage.haskell.org/package/ChibiHash)\n\nHaskell port of [N-R-K/ChibiHash](https://github.com/N-R-K/ChibiHash). See the article [ChibiHash: A small, fast 64-bit hash function](https://nrk.neocities.org/articles/chibihash) for more information.\n\nAll credit for the algorithm goes to [N-R-K](https://github.com/N-R-K).\n\n## Usage\n\nThis package supports both versions of the algorithm.\nBy default, the v1 version is used.\nTo use the v2 version, you need to import it explicitly.\n\n```haskell\nmodule Main (main) where\n\nimport ChibiHash (chibihash64) -- v1 by default\nimport qualified ChibiHash.V2 as V2 -- v2 explicitly\nimport qualified Data.ByteString.Char8 as C8\n\nmain :: IO ()\nmain = do\n    let text = \"Hello, ChibiHash!\"\n    putStrLn $ \"Input text: \" ++ show text\n    putStrLn $ \"Hash (seed 0): \" ++ show (chibihash64 (C8.pack text) 0)\n    putStrLn $ \"Hash (seed 42): \" ++ show (chibihash64 (C8.pack text) 42)\n```\n\nYou may also run the example program with `cabal run`.\n\n## Tests\n\nRun tests with `cabal test`. Both v1 and v2 are tested.\n\n## License\n\nMIT.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthevilledev%2Fchibihash-hs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthevilledev%2Fchibihash-hs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthevilledev%2Fchibihash-hs/lists"}