@@ -57,26 +57,26 @@ typedef struct BlowfishContext {
57
57
* Blowfish_expand0state( state, key, keylen )
58
58
*/
59
59
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 );
64
64
void Blowfish_expandstate
65
- __P (( blf_ctx * , const uint8 * , uint16 , const uint8 * , uint16 ) );
65
+ ( blf_ctx * , const uint8 * , uint16 , const uint8 * , uint16 );
66
66
67
67
/* Standard Blowfish */
68
68
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 );
72
72
73
73
/* Converts uint8 to uint32 */
74
- uint32 Blowfish_stream2word __P ((const uint8 * , uint16 ,
75
- uint16 * ));
74
+ uint32 Blowfish_stream2word (const uint8 * , uint16 , uint16 * );
76
75
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 );
79
81
80
- void blf_cbc_encrypt __P ((blf_ctx * , uint8 * , uint8 * , uint32 ));
81
- void blf_cbc_decrypt __P ((blf_ctx * , uint8 * , uint8 * , uint32 ));
82
82
#endif
0 commit comments