new upstream release (3.3.0); modify package compatibility for Stretch
[ossec-hids.git] / src / os_crypto / blowfish / bf_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/blowfish Library
11  * APIs for many crypto operations
12  */
13
14 #ifndef __BF_OP_H
15 #define __BF_OP_H
16
17 #define OS_ENCRYPT      1
18 #define OS_DECRYPT      0
19
20 int OS_BF_Str(const char *input, char *output, const char *charkey,
21               long size, short int action) __attribute((nonnull));
22
23 #endif
24