Files
harbour-core/harbour/src/rtl/hbbffnc.c
Przemyslaw Czerpak 42749a2ba3 2009-10-23 21:01 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/src/rtl/hbbffnc.c
    + added support for 3-rd parameter <lRaw> in hb_blowfishEncrypt() and
      hb_blowfishDecrypt() functions. It disables ANSI X.923 padding but
      encode passed string in 8bytes blocks. If last block in string is
      smaller then it's padded to 8 bytes using chr(0) and information
      about original string size is not attached to encrypted data.
      During decoding only strings which are well padded (N*8 bytes) are
      accepted and <lRaw> := .T. disables restoring original string size
      encoded in encrypted string using ANSI X.923 standard so the size
      of decrypted string is the same as original one.
2009-10-23 19:01:51 +00:00

157 lines
5.3 KiB
C

/*
* $Id$
*/
/*
* Harbour Project source code:
* PRG functions for BlowFish encryption
*
* Copyright 2009 Przemyslaw Czerpak <druzus / at / priv.onet.pl>
* www - http://www.harbour-project.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
*
* As a special exception, the Harbour Project gives permission for
* additional uses of the text contained in its release of Harbour.
*
* The exception is that, if you link the Harbour libraries with other
* files to produce an executable, this does not by itself cause the
* resulting executable to be covered by the GNU General Public License.
* Your use of that executable is in no way restricted on account of
* linking the Harbour library code into it.
*
* This exception does not however invalidate any other reasons why
* the executable file might be covered by the GNU General Public License.
*
* This exception applies only to the code released by the Harbour
* Project under the name Harbour. If you copy code from other
* Harbour Project or Free Software Foundation releases into a copy of
* Harbour, as the General Public License permits, the exception does
* not apply to the code that you add in this way. To avoid misleading
* anyone as to the status of such modified files, you must delete
* this exception notice from them.
*
* If you write modifications of your own for Harbour, it is your choice
* whether to permit this exception to apply to your modifications.
* If you do not wish that, delete this exception notice.
*
*/
#include "hbapi.h"
#include "hbapiitm.h"
#include "hbbfish.h"
HB_FUNC( HB_BLOWFISHKEY )
{
int iLen = ( int ) hb_parclen( 1 );
if( iLen )
{
HB_BLOWFISH bf;
hb_blowfishInit( &bf, hb_parc( 1 ), iLen );
hb_retclen( ( const char * ) &bf, sizeof( HB_BLOWFISH ) );
}
}
HB_FUNC( HB_BLOWFISHENCRYPT )
{
if( hb_parclen( 1 ) == sizeof( HB_BLOWFISH ) )
{
PHB_ITEM pData = hb_param( 2, HB_IT_STRING );
if( pData )
{
ULONG ulLen = hb_itemGetCLen( pData ), ulSize;
if( ulLen )
{
char * pszData;
HB_BLOWFISH * bf = ( HB_BLOWFISH * ) hb_parc( 1 );
BOOL fRaw = hb_parl( 3 );
/* In raw mode passed string is padded to 8 bytes with '\0'
* otherwise ANSI X.923 padding is using
*/
ulSize = ( fRaw ? ( ( ulLen + 7 ) >> 3 ) :
( ( ulLen >> 3 ) + 1 ) ) << 3;
pszData = ( char * ) hb_xgrab( ulSize + 1 );
memcpy( pszData, hb_itemGetCPtr( pData ), ulLen );
memset( pszData + ulLen, '\0', ulSize - ulLen );
if( !fRaw )
pszData[ ulSize - 1 ] = ( char ) ( ulSize - ulLen );
for( ulLen = 0; ulLen < ulSize; ulLen += 8 )
{
UINT32 xl, xr;
xl = HB_GET_BE_UINT32( &pszData[ ulLen ] );
xr = HB_GET_BE_UINT32( &pszData[ ulLen + 4 ] );
hb_blowfishEncrypt( bf, &xl, &xr );
HB_PUT_BE_UINT32( &pszData[ ulLen ], xl );
HB_PUT_BE_UINT32( &pszData[ ulLen + 4 ], xr );
}
hb_retclen_buffer( pszData, ulSize );
}
else
hb_retc_null();
}
}
}
HB_FUNC( HB_BLOWFISHDECRYPT )
{
if( hb_parclen( 1 ) == sizeof( HB_BLOWFISH ) )
{
PHB_ITEM pData = hb_param( 2, HB_IT_STRING );
if( pData )
{
ULONG ulSize = hb_itemGetCLen( pData ), ulLen;
if( ulSize >= 8 && ( ulSize & 0x07 ) == 0 )
{
const char * pszSource;
char * pszData;
HB_BLOWFISH * bf = ( HB_BLOWFISH * ) hb_parc( 1 );
BOOL fRaw = hb_parl( 3 );
pszData = ( char * ) hb_xgrab( ulSize + ( fRaw ? 1 : 0 ) );
pszSource = hb_itemGetCPtr( pData );
for( ulLen = 0; ulLen < ulSize; ulLen += 8 )
{
UINT32 xl, xr;
xl = HB_GET_BE_UINT32( &pszSource[ ulLen ] );
xr = HB_GET_BE_UINT32( &pszSource[ ulLen + 4 ] );
hb_blowfishDecrypt( bf, &xl, &xr );
HB_PUT_BE_UINT32( &pszData[ ulLen ], xl );
HB_PUT_BE_UINT32( &pszData[ ulLen + 4 ], xr );
}
if( !fRaw )
{
ulSize = ( unsigned char ) pszData[ ulSize - 1 ];
ulLen -= ( ( ulSize - 1 ) & ~0x07 ) == 0 ? ulSize : ulLen;
}
if( ulLen )
hb_retclen_buffer( pszData, ulLen );
else
hb_xfree( pszData );
}
else if( ulSize == 0 )
hb_retc_null();
}
}
}