https://github.com/computermouth/md5sum
https://github.com/computermouth/md5sum
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/computermouth/md5sum
- Owner: computermouth
- Created: 2022-04-06T22:51:23.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-04-06T22:54:32.000Z (about 4 years ago)
- Last Synced: 2025-03-30T09:24:46.277Z (about 1 year ago)
- Language: C
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple md5 library for C
# Table of Contents
* [Documentation](#documentation)
* [Examples](#examples)
* [Requirements](#requirements)
* [Installation](#installation)
* [Cross-compiling](#cross-compiling)
* [FAQ](#faq)
* [License](#license)
# Documentation
* [Docs](#docs)
* [Wiki](#wiki)
# Examples
```c
#include
#include
int main(){
md5sum.md5res_t m = md5sum.hash("mystring");
if (m.error)
printf("error\n");
else
printf("%s\n", m.hash);
return 0;
}
```