Diff for /libaitio/src/crypt.c between versions 1.4 and 1.5

version 1.4, 2011/10/31 13:53:51 version 1.5, 2012/03/29 01:31:34
Line 12  terms: Line 12  terms:
 All of the documentation and software included in the ELWIX and AITNET  All of the documentation and software included in the ELWIX and AITNET
 Releases is copyrighted by ELWIX - Sofia/Bulgaria <info@elwix.org>  Releases is copyrighted by ELWIX - Sofia/Bulgaria <info@elwix.org>
   
Copyright 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011Copyright 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012
         by Michael Pounov <misho@elwix.org>.  All rights reserved.          by Michael Pounov <misho@elwix.org>.  All rights reserved.
   
 Redistribution and use in source and binary forms, with or without  Redistribution and use in source and binary forms, with or without
Line 48  SUCH DAMAGE. Line 48  SUCH DAMAGE.
   
 /*  /*
  * ioCipher() Cipher wrapper for all supported crypto algorythms   * ioCipher() Cipher wrapper for all supported crypto algorythms
    *
  * @pInput = input buffer   * @pInput = input buffer
  * @inLen = input buffer len   * @inLen = input buffer len
  * @ppOutput = output allocated buffe, must be free after use   * @ppOutput = output allocated buffe, must be free after use
Line 109  end: Line 110  end:
   
 /*  /*
  * io_Blowfish() Blowfish cipher algorythm, work with ASCII hex strings   * io_Blowfish() Blowfish cipher algorythm, work with ASCII hex strings
    *
  * @pInput = input buffer   * @pInput = input buffer
  * @inLen = input buffer len   * @inLen = input buffer len
  * @ppOutput = output allocated buffe, must be free after use   * @ppOutput = output allocated buffe, must be free after use
Line 172  io_Blowfish(u_char *pInput, int inLen, u_char **ppOutp Line 174  io_Blowfish(u_char *pInput, int inLen, u_char **ppOutp
   
 /*  /*
  * io_ctr_AES() Encrypt/Decrypt stream cipher CTR_AES   * io_ctr_AES() Encrypt/Decrypt stream cipher CTR_AES
    *
  * @pInput = Input buffer with ASCII   * @pInput = Input buffer with ASCII
  * @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

Removed from v.1.4  
changed lines
  Added in v.1.5


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