1
mirror of https://github.com/hashcat/hashcat synced 2025-03-26 12:12:43 +01:00

15 lines
285 B
C
Raw Normal View History

/**
* Author......: Jens Steube <jens.steube@gmail.com>
* License.....: MIT
*/
#ifndef _CPU_MD5_H
#define _CPU_MD5_H
2016-09-06 09:39:44 +02:00
#include <string.h>
void md5_64 (uint block[16], uint digest[4]);
2016-08-30 18:13:41 -07:00
void md5_complete_no_limit (uint digest[4], uint *plain, uint plain_len);
#endif // _CPU_MD5_H