[BACK]Return to blf.h CVS log [TXT][DIR] Up to [local] / src / include

Diff for /src/include/blf.h between version 1.2 and 1.3

version 1.2, 1997/02/14 18:42:10 version 1.3, 1997/02/16 20:54:26
Line 15 
Line 15 
  *    documentation and/or other materials provided with the distribution.   *    documentation and/or other materials provided with the distribution.
  * 3. All advertising materials mentioning features or use of this software   * 3. All advertising materials mentioning features or use of this software
  *    must display the following acknowledgement:   *    must display the following acknowledgement:
  *      This product includes software developed by Theo de Raadt.   *      This product includes software developed by Niels Provos.
  * 4. The name of the author may not be used to endorse or promote products   * 4. The name of the author may not be used to endorse or promote products
  *    derived from this software without specific prior written permission.   *    derived from this software without specific prior written permission.
  *   *
Line 59 
Line 59 
 void Blowfish_encipher __P((blf_ctx *, u_int32_t *, u_int32_t *));  void Blowfish_encipher __P((blf_ctx *, u_int32_t *, u_int32_t *));
 void Blowfish_decipher __P((blf_ctx *, u_int32_t *, u_int32_t *));  void Blowfish_decipher __P((blf_ctx *, u_int32_t *, u_int32_t *));
 void Blowfish_initstate __P((blf_ctx *));  void Blowfish_initstate __P((blf_ctx *));
 void Blowfish_expand0state __P((blf_ctx *, u_int8_t *, u_int16_t));  void Blowfish_expand0state __P((blf_ctx *, const u_int8_t *, u_int16_t));
 void    Blowfish_expandstate  void Blowfish_expandstate
         __P((blf_ctx *, u_int8_t *, u_int16_t, u_int8_t *, u_int16_t));      __P((blf_ctx *, const u_int8_t *, u_int16_t, const u_int8_t *, u_int16_t));
   
 /* Standard Blowfish */  /* Standard Blowfish */
   
 void blf_key __P((blf_ctx *, u_int8_t *, u_int16_t));  void blf_key __P((blf_ctx *, const u_int8_t *, u_int16_t));
 void blf_enc __P((blf_ctx *, u_int32_t *, u_int16_t));  void blf_enc __P((blf_ctx *, u_int32_t *, u_int16_t));
 void blf_dec __P((blf_ctx *, u_int32_t *, u_int16_t));  void blf_dec __P((blf_ctx *, u_int32_t *, u_int16_t));
   
 /* Converts u_int8_t to u_int32_t */  /* Converts u_int8_t to u_int32_t */
 u_int32_t Blowfish_stream2word __P((u_int8_t *, u_int16_t , u_int16_t *));  u_int32_t Blowfish_stream2word __P((const u_int8_t *, u_int16_t , u_int16_t *));
   
 #endif  #endif

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3