You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kshowmail/kshowmail/encryption.cpp

86 lines
1.9 KiB

//
// C++ Implementation: encryption
//
// Description:
//
//
// Author: Ulrich Weigelt <ulrich.weigelt@gmx.de>, (C) 2007
//
// Copyright: See COPYING file that comes with this distribution
//
//
#include "encryption.h"
//used in crypt() and decrypt()
static const char scramble1 [50] = "C6FDC7A1EDFBB6FEE3DBF5BEBAEFDDF7ABC6FDC7A1EDFBB6";
static const char hexstr [17] = "0123456789ABCDEF";
int Encryption::hexbyt( const char c )
{
if( c >= '0' && c <= '9' )
return c - '0';
else
return c - 'A' + 10;
}
const TQString Encryption::crypt( const KURL& url )
{
char result[50];
char scramble2[50];
TQString hexresult;
memset (result, 0, 50);
memset (scramble2, 0, 50);
int pos = url.pass().utf8().length() + 1;
unsigned int free = 50 - pos;
if( url.user().utf8().length() <= free )
{
strcpy( &scramble2[pos], url.user().utf8() );
pos += url.user().utf8().length();
free -= url.user().utf8().length();
}
else
{
memcpy( &scramble2[pos], url.user().utf8(), free );
free = 0;
}
if( url.host().utf8().length() <= free )
{
strcpy( &scramble2[pos], url.host().utf8() );
pos += url.host().utf8().length();
free -= url.host().utf8().length();
}
else
{
memcpy( &scramble2[pos], url.host().utf8(), free );
free = 0;
}
memcpy( result, url.pass().utf8(), url.pass().utf8().length() );
for (int i = 0; i <= 31; i++)
{
result[i] = (char)( result[i] ^ ( scramble1[i] ^ scramble2[i] ) );
hexresult += hexstr[ result[i] / 16 ];
hexresult += hexstr[ result[i] % 16 ];
}
return hexresult;
}
const TQString Encryption::decrypt( const TQString& pass )
{
char result[50];
memset( result, 0, 50 );
int i;
for( i = 0; i <= 31; i++ )
{
result[i] = (char)hexbyt( pass[ i * 2 ] ) * 16 + hexbyt( pass[ i * 2 + 1 ] );
result[i] = (char)( result[i] ^ scramble1[i] );
}
return TQString::fromUtf8(result);
}