You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
283 B
14 lines
283 B
7 months ago
|
/*
|
||
|
* $Id: md5.c,v 1.1 2004/11/14 07:26:26 paulus Exp $
|
||
|
*/
|
||
|
#include "md5.h"
|
||
|
|
||
|
void rc_md5_calc (unsigned char *output, unsigned char *input, unsigned int inlen)
|
||
|
{
|
||
|
MD5_CTX context;
|
||
|
|
||
|
MD5_Init (&context);
|
||
|
MD5_Update (&context, input, inlen);
|
||
|
MD5_Final (output, &context);
|
||
|
}
|