{"id":20270942,"url":"https://github.com/mackron/md5","last_synced_at":"2025-04-11T04:22:32.252Z","repository":{"id":145738570,"uuid":"458769712","full_name":"mackron/md5","owner":"mackron","description":"MD5 hashing implementation.","archived":false,"fork":false,"pushed_at":"2022-12-07T02:48:49.000Z","size":16,"stargazers_count":12,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-25T02:36:51.823Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mackron.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2022-02-13T09:57:45.000Z","updated_at":"2024-12-25T12:36:15.000Z","dependencies_parsed_at":null,"dependency_job_id":"fb80ef50-d86a-49ec-8f1d-50d07f7ae1a3","html_url":"https://github.com/mackron/md5","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/mackron%2Fmd5","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mackron%2Fmd5/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mackron%2Fmd5/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mackron%2Fmd5/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mackron","download_url":"https://codeload.github.com/mackron/md5/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248340368,"owners_count":21087438,"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-14T12:35:09.151Z","updated_at":"2025-04-11T04:22:32.245Z","avatar_url":"https://github.com/mackron.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch4 align=\"center\"\u003eMD5 Hashing\u003c/h4\u003e\n\n\u003cp align=\"center\"\u003e\n    \u003ca href=\"https://discord.gg/9vpqbjU\"\u003e\u003cimg src=\"https://img.shields.io/discord/712952679415939085?label=discord\u0026logo=discord\" alt=\"discord\"\u003e\u003c/a\u003e\n    \u003ca href=\"https://twitter.com/mackron\"\u003e\u003cimg src=\"https://img.shields.io/twitter/follow/mackron?style=flat\u0026label=twitter\u0026color=1da1f2\u0026logo=twitter\" alt=\"twitter\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\nA simple MD5 hashing implementation. Usage:\n\n    unsigned char digest[MD5_SIZE];\n    md5_context ctx;\n    md5_init(\u0026ctx);\n    {\n        md5_update(\u0026ctx, src, sz);\n    }\n    md5_finalize(\u0026ctx, digest);\n\nThe above code is the literal implementation of `md5()` which is a high level helper for hashing\ndata of a known size:\n\n    unsigned char hash[MD5_SIZE];\n    md5(hash, data, dataSize);\n\nUse `md5_format()` to format the digest as a hex string. The capacity of the output buffer needs to\nbe at least `MD5_SIZE_FORMATTED` bytes.\n\nThis library does not perform any memory allocations and does not use anything from the standard\nlibrary except for `size_t` and `NULL`, both of which are drawn in from stddef.h. No other standard\nheaders are included.\n\nThere is no need to link to anything with this library. You can use MD5_IMPLEMENTATION to define\nthe implementation section, or you can use md5.c if you prefer a traditional header/source pair.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmackron%2Fmd5","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmackron%2Fmd5","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmackron%2Fmd5/lists"}