@@ -57,26 +57,26 @@ typedef struct BlowfishContext {
5757 *Blowfish_expand0state( state, key, keylen )
5858 */
5959
60- void Blowfish_encipher __P (( blf_ctx * ,uint32 * ) );
61- void Blowfish_decipher __P (( blf_ctx * ,uint32 * ) );
62- void Blowfish_initstate __P (( blf_ctx * ) );
63- void Blowfish_expand0state __P (( blf_ctx * ,const uint8 * ,uint16 ) );
60+ void Blowfish_encipher ( blf_ctx * ,uint32 * );
61+ void Blowfish_decipher ( blf_ctx * ,uint32 * );
62+ void Blowfish_initstate ( blf_ctx * );
63+ void Blowfish_expand0state ( blf_ctx * ,const uint8 * ,uint16 );
6464void Blowfish_expandstate
65- __P (( blf_ctx * ,const uint8 * ,uint16 ,const uint8 * ,uint16 ) );
65+ ( blf_ctx * ,const uint8 * ,uint16 ,const uint8 * ,uint16 );
6666
6767/* Standard Blowfish */
6868
69- void blf_key __P (( blf_ctx * ,const uint8 * ,uint16 ) );
70- void blf_enc __P (( blf_ctx * ,uint32 * ,uint16 ) );
71- void blf_dec __P (( blf_ctx * ,uint32 * ,uint16 ) );
69+ void blf_key ( blf_ctx * ,const uint8 * ,uint16 );
70+ void blf_enc ( blf_ctx * ,uint32 * ,uint16 );
71+ void blf_dec ( blf_ctx * ,uint32 * ,uint16 );
7272
7373/* Converts uint8 to uint32 */
74- uint32 Blowfish_stream2word __P ((const uint8 * ,uint16 ,
75- uint16 * ));
74+ uint32 Blowfish_stream2word (const uint8 * ,uint16 ,uint16 * );
7675
77- void blf_ecb_encrypt __P ((blf_ctx * ,uint8 * ,uint32 ));
78- void blf_ecb_decrypt __P ((blf_ctx * ,uint8 * ,uint32 ));
76+ void blf_ecb_encrypt (blf_ctx * ,uint8 * ,uint32 );
77+ void blf_ecb_decrypt (blf_ctx * ,uint8 * ,uint32 );
78+
79+ void blf_cbc_encrypt (blf_ctx * ,uint8 * ,uint8 * ,uint32 );
80+ void blf_cbc_decrypt (blf_ctx * ,uint8 * ,uint8 * ,uint32 );
7981
80- void blf_cbc_encrypt __P ((blf_ctx * ,uint8 * ,uint8 * ,uint32 ));
81- void blf_cbc_decrypt __P ((blf_ctx * ,uint8 * ,uint8 * ,uint32 ));
8282#endif