Files
harbour-core/harbour/source/tools/ctcrypt.c
2000-03-21 11:51:27 +00:00

111 lines
3.6 KiB
C

/*
* $Id$
*/
/*
* Harbour Project source code:
* CT_CRYPT() CA-Tools compatible function
*
* Copyright 1999 Victor Szakats <info@szelvesz.hu>
* 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 of the License, or
* (at your option) any later version, with one exception:
*
* The exception is that if you link the Harbour Runtime Library (HRL)
* and/or the Harbour Virtual Machine (HVM) 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 HRL
* and/or HVM code into it.
*
* 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 program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA (or visit
* their web site at http://www.gnu.org/).
*
*/
#include "hbapi.h"
HB_FUNC( CT_CRYPT )
{
ULONG ulCryptLen = hb_parclen( 2 );
if( ulCryptLen >= 2 )
{
BYTE * pbyCrypt = ( BYTE * ) hb_parc( 2 );
ULONG ulCryptPos = 0;
BYTE * pbyString = ( BYTE * ) hb_parc( 1 );
ULONG ulStringLen = hb_parclen( 1 );
ULONG ulStringPos;
BYTE * pbyResult = ( BYTE * ) hb_xgrab( ulStringLen + 1 );
USHORT uiCount2 = ( ( ( USHORT ) ( pbyCrypt[ ulCryptPos ] + ( USHORT ) ( pbyCrypt[ ulCryptPos + 1 ] * 256 ) ) ) & 0xFFFF ) ^ ( ( USHORT ) ulCryptLen & 0xFFFF );
USHORT uiCount1 = 0xAAAA;
for( ulStringPos = 0; ulStringPos < ulStringLen; )
{
USHORT uiTmpCount1 = uiCount1;
USHORT uiTmpCount2 = uiCount2;
BYTE byte = pbyString[ ulStringPos ] ^ pbyCrypt[ ulCryptPos++ ];
USHORT tmp;
uiTmpCount2 = HB_MKUSHORT( ( HB_LOBYTE( uiTmpCount2 ) ^ HB_HIBYTE( uiTmpCount2 ) ), HB_HIBYTE( uiTmpCount2 ) );
for( tmp = HB_LOBYTE( uiTmpCount2 ); tmp; tmp-- )
uiTmpCount2 = ( uiTmpCount2 >> 1 ) | ( ( uiTmpCount2 & 1 ) << 15 );
uiTmpCount2 ^= uiTmpCount1;
uiTmpCount2 += 16;
uiCount2 = uiTmpCount2;
uiTmpCount2 &= 0x1E;
uiTmpCount2 += 2;
do
{
BYTE byTmp;
uiTmpCount2--;
for( tmp = HB_LOBYTE( uiTmpCount2 ); tmp; tmp-- )
uiTmpCount1 = ( uiTmpCount1 >> 1 ) | ( ( uiTmpCount1 & 1 ) << 15 );
uiTmpCount1 = HB_MKUSHORT( HB_HIBYTE( uiTmpCount1 ), HB_LOBYTE( uiTmpCount1 ) );
uiTmpCount1 = HB_MKUSHORT( ( HB_LOBYTE( uiTmpCount1 ) ^ 0xFF ), HB_HIBYTE( uiTmpCount1 ) );
uiTmpCount1 = ( uiTmpCount1 << 1 ) | ( ( uiTmpCount1 & 0x8000 ) >> 15 );
uiTmpCount1 ^= 0xAAAA;
byTmp = HB_LOBYTE( uiTmpCount1 );
byTmp = ( byTmp << 1 ) | ( ( byTmp & 0x80 ) >> 7 );
uiTmpCount1 = HB_MKUSHORT( byTmp, HB_HIBYTE( uiTmpCount1 ) );
} while ( --uiTmpCount2 );
uiCount1 = uiTmpCount1;
pbyResult[ ulStringPos++ ] = byte ^ HB_LOBYTE( uiTmpCount1 );
if( ulCryptPos == ulCryptLen )
ulCryptPos = 0;
}
hb_retclen( ( char * ) pbyResult, ulStringLen );
hb_xfree( pbyResult );
}
else
hb_retc( "" );
}