// FileZilla - a Windows ftp client // Copyright (C) 2002-2004 - Tim Kosse // 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. // 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // Crypt.cpp: Implementierung der Klasse CCrypt. // ////////////////////////////////////////////////////////////////////// #include "stdafx.h" #include "crypt.h" #ifdef _DEBUG #undef THIS_FILE static char THIS_FILE[]=__FILE__; #define new DEBUG_NEW #endif ////////////////////////////////////////////////////////////////////// // Konstruktion/Destruktion ////////////////////////////////////////////////////////////////////// char* CCrypt::m_key = "FILEZILLA1234567890ABCDEFGHIJKLMNOPQRSTUVWXYZ"; CString CCrypt::encrypt(CString str) { USES_CONVERSION; int pos=str.GetLength()%strlen(m_key); CString ret; LPCSTR lpszAscii=T2CA(str); for (unsigned int i=0;i '9') return _T(""); number += (digit - '0') * 100; digit = lpszAscii[i * 3 + 1]; if (digit < '0' || digit > '9') return _T(""); number += (digit - '0') * 10; digit = lpszAscii[i * 3 + 2]; if (digit < '0' || digit > '9') return _T(""); number += digit - '0'; tmp[0] = number^m_key[(i+pos)%strlen(m_key)]; ret += tmp; } return ret; }