Diff for /libaitio/inc/aitio.h between versions 1.11.2.24 and 1.11.2.25

version 1.11.2.24, 2011/10/07 10:32:35 version 1.11.2.25, 2011/10/07 10:41:11
Line 760  int io_Blowfish(unsigned char *pInput, int inLen, unsi Line 760  int io_Blowfish(unsigned char *pInput, int inLen, unsi
  * @inLen = Input buffer data length   * @inLen = Input buffer data length
  * @ppOutput = Output buffer with cipher data, must be free after use   * @ppOutput = Output buffer with cipher data, must be free after use
  * @pKey = Key   * @pKey = Key
 * @IV = IVector/Nonce/Counter * @IV = IVector/Nonce/Counter, Warning: IV must be variable, because we write there!!!
  * return: -1 error or >-1 how many cipher blocks proceeded   * return: -1 error or >-1 how many cipher blocks proceeded
  */   */
int io_ctr_AES(u_char *pInput, int inLen, u_char **ppOutput, u_char *pKey, u_char IV[AES_BLOCK_SIZE]);int io_ctr_AES(unsigned char *pInput, int inLen, unsigned char **ppOutput, 
                 unsigned char *pKey, unsigned char IV[AES_BLOCK_SIZE]);
   
   
 /*  /*
Line 794  inline void ioFreePTY(int ptyfd, const char *ttyname); Line 795  inline void ioFreePTY(int ptyfd, const char *ttyname);
  * @ypxl = y pixels   * @ypxl = y pixels
  * return: -1 error or 0 ok   * return: -1 error or 0 ok
  */   */
inline int ioChgWinPTY(int ptyfd, u_short row, u_short col, u_short xpxl, u_short ypxl);inline int ioChgWinPTY(int ptyfd, unsigned short row, unsigned short col, 
                 unsigned short xpxl, unsigned short ypxl);
 /*  /*
  * ioSetOwnerTTY() Set owner to TTY   * ioSetOwnerTTY() Set owner to TTY
  * @ttyname = tty filename   * @ttyname = tty filename

Removed from v.1.11.2.24  
changed lines
  Added in v.1.11.2.25


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>