new upstream release (3.3.0); modify package compatibility for Stretch
[ossec-hids.git] / src / os_crypto / md5 / md5_op.h
1 /* Copyright (C) 2009 Trend Micro Inc.
2  * All right reserved.
3  *
4  * This program is a free software; you can redistribute it
5  * and/or modify it under the terms of the GNU General Public
6  * License (version 2) as published by the FSF - Free Software
7  * Foundation
8  */
9
10 /* OS_crypto/md5 Library
11  * APIs for many crypto operations
12  */
13
14 #ifndef __MD5_OP_H
15 #define __MD5_OP_H
16
17 typedef char os_md5[33];
18
19 int OS_MD5_File(const char *fname, os_md5 output, int mode) __attribute((nonnull));
20 int OS_MD5_Str(const char *str, os_md5 output) __attribute((nonnull));
21
22 #endif
23