1
0
mirror of https://github.com/fumiama/simple-crypto.git synced 2026-06-05 18:10:23 +08:00
Go to file
2021-05-29 13:58:23 +08:00
2021-05-29 13:58:23 +08:00
2021-05-29 13:58:23 +08:00
2021-05-29 13:58:23 +08:00
2021-05-29 13:58:23 +08:00
2021-05-29 13:58:23 +08:00

simple-md5-lib

Simple C lib of the MD5 algorithm

Install

git clone https://github.com/fumiama/simple-md5-lib.git
cd simple-md5-lib
mkdir build
cd build
cmake ..
make
make install

Usage

  1. Include simplemd5.h in your c program.
#include <simplemd5.h>
  1. Call md5 function. Don't forget to free the returned digest.
uint8_t* md5(const uint8_t *data, size_t data_len);
Description
A simple c lib to calc md5, tea.
Readme 86 KiB
Languages
C 96.2%
CMake 3.8%