This commit is contained in:
2019-02-19 22:35:27 +00:00
parent ae5dbd1e80
commit cc33879fd0
264 changed files with 214146 additions and 0 deletions
@@ -0,0 +1,20 @@
#include "mutils.h"
#include <string.h>
int main (int argc,char **argv)
{
char
*s=NULL;
int
i;
if (argc != 2)
{
(void) fprintf(stderr,"usage: %s <string>\n",argv[0]);
exit(1);
}
s=strdup(argv[1]);
(void) fprintf(stderr,"MD5(%s) %s\n",s,getMD5Digest(s));
return(0);
}