X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?p=ossec-hids.git;a=blobdiff_plain;f=src%2Fos_crypto%2Fblowfish%2Fbf_op.h;h=117e8f9b6da95e6675c741782ead4cd77ea9873a;hp=4a4b2b1b3c359d279ed8919d5e90535a681ade1b;hb=3f728675941dc69d4e544d3a880a56240a6e394a;hpb=927951d1c1ad45ba9e7325f07d996154a91c911b diff --git a/src/os_crypto/blowfish/bf_op.h b/src/os_crypto/blowfish/bf_op.h old mode 100755 new mode 100644 index 4a4b2b1..117e8f9 --- a/src/os_crypto/blowfish/bf_op.h +++ b/src/os_crypto/blowfish/bf_op.h @@ -1,5 +1,3 @@ -/* $OSSEC, os_crypto/bf_op.h, v0.1, 2004/08/09, Daniel B. Cid$ */ - /* Copyright (C) 2009 Trend Micro Inc. * All right reserved. * @@ -9,21 +7,18 @@ * Foundation */ -/* OS_crypto/blowfish Library. - * APIs for many crypto operations. +/* OS_crypto/blowfish Library + * APIs for many crypto operations */ #ifndef __BF_OP_H - #define __BF_OP_H #define OS_ENCRYPT 1 #define OS_DECRYPT 0 - -int OS_BF_Str(char * input, char *output, char *charkey, - long size, short int action); +int OS_BF_Str(const char *input, char *output, const char *charkey, + long size, short int action) __attribute((nonnull)); #endif -/* EOF */