Skip to content

crossbowerbt/md5

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

MD5 Implementation

An MD5 implementation in C, using the SSEx instruction set, to parallelize and speed up the algorithm.

To benchmark the speed, one program tries to crack a short MD5 hash using a brute force attack. The other program calculates the MD5sum of a memory mapped file, given as an input.

The MD5 functions (with and without SSE instructions) can be easily isolated and used in different projects.

Compile

To compile the files:

gcc -o md5 -O3 -lm md5.c
gcc -o md5_sse -msse -mmmx -msse2 -O3 md5_sse.c

About

An md5 implementation in C, using the SSE* instruction set.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages