obrisane nepotrebne datoteke od zadnjeg builda
[ossec-hids.git] / src / os_crypto / blowfish / bf_op.h
old mode 100755 (executable)
new mode 100644 (file)
index 13b9518..117e8f9
@@ -1,29 +1,24 @@
-/*      $OSSEC, os_crypto/bf_op.h, v0.1, 2004/08/09, Daniel B. Cid$      */
-
 /* Copyright (C) 2009 Trend Micro Inc.
  * All right reserved.
  *
  * This program is a free software; you can redistribute it
  * and/or modify it under the terms of the GNU General Public
- * License (version 3) as published by the FSF - Free Software
+ * License (version 2) as published by the FSF - Free Software
  * 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 */