Re: [PHP] FileZilla Password Decoder --- $i think therefore $i am

2007-10-11 Thread Amos Vryhof
Thanks! That Helped Immensely. the final function is below (with a little documentation)... I'll post my final converter somewhere soon... it's done, and works. // Decodes a FileZilla 2 password function DecodePassword($strPass) { // The Encryption Salt for FileZilla 2 Passwords $str

Re: [PHP] FileZilla Password Decoder --- $i think therefore $i am

2007-10-11 Thread Jochem Maas
Amos Vryhof wrote: > Good Morning everyone, > > > def DecodePassword( strPass): > """Decode a filezilla password""" > strKey = "FILEZILLA1234567890ABCDEFGHIJKLMNOPQRSTUVWXYZ" > > nPassLen = len(strPass) / 3 > nOffset = nPassLen % len(strKey) > > strDecodedPass = "" >