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
Amos Vryhof wrote:
> Good Morning everyone,
>
>
> def DecodePassword( strPass):
> """Decode a filezilla password"""
> strKey = "FILEZILLA1234567890ABCDEFGHIJKLMNOPQRSTUVWXYZ"
>
> nPassLen = len(strPass) / 3
> nOffset = nPassLen % len(strKey)
>
> strDecodedPass = ""
>
2 matches
Mail list logo