summaryrefslogtreecommitdiff
path: root/tests/helpers/test_md5.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/helpers/test_md5.c')
-rw-r--r--tests/helpers/test_md5.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/tests/helpers/test_md5.c b/tests/helpers/test_md5.c
new file mode 100644
index 0000000..0f37afd
--- /dev/null
+++ b/tests/helpers/test_md5.c
@@ -0,0 +1,29 @@
+
+#include <stdio.h>
+#include <unistd.h>
+
+#include "md5.h"
+
+int main()
+{
+ int i, ret;
+ struct MD5Context ctx;
+ unsigned char digest[MD5LENGTH];
+ unsigned char buf[BUFSIZ];
+
+ MD5Init( &ctx );
+
+ while(!feof(stdin) && !ferror(stdin)) {
+ ret = fread(buf, 1, sizeof(buf), stdin);
+ if (ret)
+ MD5Update( &ctx, buf, ret );
+ }
+
+ fclose(stdin);
+ MD5Final( digest, &ctx );
+
+ for (i = 0; i < MD5LENGTH; i++)
+ printf( "%02x", digest[i] );
+ printf(" -\n");
+ return 0;
+}