{"id":19509588,"url":"https://github.com/raspi/tarkistaja","last_synced_at":"2025-10-04T16:12:23.149Z","repository":{"id":138160047,"uuid":"277850267","full_name":"raspi/tarkistaja","owner":"raspi","description":"List file checksums inside of compressed archive","archived":false,"fork":false,"pushed_at":"2020-07-07T18:01:52.000Z","size":877,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-25T22:46:31.003Z","etag":null,"topics":["archive","checksum-calculation","command-line-tool","go","golang","gzip","tar","zip"],"latest_commit_sha":null,"homepage":"","language":"Makefile","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/raspi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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}},"created_at":"2020-07-07T15:12:06.000Z","updated_at":"2020-07-07T18:06:02.000Z","dependencies_parsed_at":null,"dependency_job_id":"b8f16dfc-3ed2-4d68-aa2e-a81f897f64a6","html_url":"https://github.com/raspi/tarkistaja","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/raspi/tarkistaja","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raspi%2Ftarkistaja","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raspi%2Ftarkistaja/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raspi%2Ftarkistaja/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raspi%2Ftarkistaja/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/raspi","download_url":"https://codeload.github.com/raspi/tarkistaja/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raspi%2Ftarkistaja/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278337035,"owners_count":25970429,"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","status":"online","status_checked_at":"2025-10-04T02:00:05.491Z","response_time":63,"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":["archive","checksum-calculation","command-line-tool","go","golang","gzip","tar","zip"],"created_at":"2024-11-10T23:12:34.113Z","updated_at":"2025-10-04T16:12:23.113Z","avatar_url":"https://github.com/raspi.png","language":"Makefile","funding_links":[],"categories":[],"sub_categories":[],"readme":"![GitHub All Releases](https://img.shields.io/github/downloads/raspi/tarkistaja/total?style=for-the-badge)\n![GitHub release (latest by date)](https://img.shields.io/github/v/release/raspi/tarkistaja?style=for-the-badge)\n![GitHub tag (latest by date)](https://img.shields.io/github/v/tag/raspi/tarkistaja?style=for-the-badge)\n\n# tarkistaja\nList file checksums inside of compressed archive\n\n# Features\n* Archives\n  * Everything that [archiver](https://github.com/mholt/archiver) supports\n* Checksum methods\n  * [sha1](https://en.wikipedia.org/wiki/SHA-1)\n  * [sha256](https://en.wikipedia.org/wiki/SHA-2)\n  * [sha512](https://en.wikipedia.org/wiki/SHA-2)\n  * [md5](https://en.wikipedia.org/wiki/MD5)\n\n# Examples\n\n    % tarkistaja -m md5 test.zip \n    d41d8cd98f00b204e9800998ecf8427e empty.txt\n    746308829575e17c3331bbcb00c0898b hello.txt\n\nAdd archive file name as a directory as additional information:\n\n    % tarkistaja -m md5 -a test.zip\n    d41d8cd98f00b204e9800998ecf8427e test.zip/empty.txt\n    746308829575e17c3331bbcb00c0898b test.zip/hello.txt\n\nWrite checksums to a file:\n\n    % tarkistaja -o checksums.sha256 -a test.zip\n    2020/07/07 19:31:37 hashing \"empty.txt\"\n    2020/07/07 19:31:37 hashing \"hello.txt\"\n    2020/07/07 19:31:37 Done.\n    % cat checksums.sha256\n    e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 test.zip/empty.txt\n    d9014c4624844aa5bac314773d6b689ad467fa4e1d1a50a1b8a99d5a95f72ff5 test.zip/hello.txt\n    \n    \n# Usage\n```\ntarkistaja v1.0.0 - (2020-07-07T19:38:16+03:00)\n(c) Pekka Järvinen 2020- [ https://github.com/raspi/tarkistaja ]\nList file checksums inside of compressed archive.\n\n  Usage:\n    tarkistaja [parameters] \u003ccompressed file\u003e\n\nParameters:\n  -a    Add archive's file name as a directory name (as additional information)\n  -m string\n        Checksum method (sha1, sha256, sha512, md5) (default \"sha256\")\n  -o string\n        Output checksums to file \u003cfilename\u003e instead of STDOUT\n\nExamples:\n  List checksums:\n    tarkistaja important_files.zip\n  List checksums to file:\n    tarkistaja -o checksums.sha256 important_files.zip\n  List checksums using md5:\n    tarkistaja -m md5 important_files.zip\n  Add archive file name as directory for additional information:\n    tarkistaja -a important_files.zip\n```\n\n# Requirements\n* Operating system\n  * GNU/Linux \n    * x64 arm arm64 ppc64 ppc64le\n  * Microsoft Windows\n    * x64\n  * Darwin (Apple Mac)\n    * x64\n  * FreeBSD\n    * x64 arm\n  * NetBSD\n    * x64 arm\n  * OpenBSD\n    * x64 arm arm64\n\n# Get source\n\n    git clone https://github.com/raspi/tarkistaja\n\n# Developing\n\n* Make changes\n* `make`\n* Create new version tag `vX.Y.Z` to VCS\n* `make release`\n\nRequirements:\n\n* upx for compressing binaries\n    \n# License\n\nMIT\n    \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fraspi%2Ftarkistaja","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fraspi%2Ftarkistaja","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fraspi%2Ftarkistaja/lists"}