Imported Upstream version 2.5.1
[ossec-hids.git] / src / os_crypto / md5 / md5_op.h
1 /*      $OSSEC, os_crypto/md5_op.h, v0.1, 2004/08/09, Daniel B. Cid$      */
2
3 /* Copyright (C) 2009 Trend Micro Inc.
4  * All right reserved.
5  *
6  * This program is a free software; you can redistribute it
7  * and/or modify it under the terms of the GNU General Public
8  * License (version 2) as published by the FSF - Free Software
9  * Foundation
10  */
11
12 /* OS_crypto/md5 Library.
13  * APIs for many crypto operations.
14  */
15
16 #ifndef __MD5_OP_H
17
18 #define __MD5_OP_H
19
20 typedef char os_md5[33];
21
22 int OS_MD5_File(char *fname, char * output);
23
24 int OS_MD5_Str(char * str, char * output);
25
26 #endif
27
28 /* EOF */