[issue1003] zipfile password fails validation

2008-01-19 Thread Gregory P. Smith
Gregory P. Smith added the comment: Fixed in r60121 (2.6). zip file decryption "check" bytes were more complicated than the existing code supported. Algorithm updated. -- resolution: -> fixed status: open -> closed versions: +Python 2.6 -Python 2.5 __

[issue1003] zipfile password fails validation

2008-01-19 Thread Gregory P. Smith
Gregory P. Smith added the comment: this failure also occurs on simple zip files created using infozip's zip with -e to "encrypt" the contents. debugging... __ Tracker <[EMAIL PROTECTED]> __ _

[issue1003] zipfile password fails validation

2007-09-16 Thread Sean Reifschneider
Changes by Sean Reifschneider: -- priority: -> normal __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsubscribe: http:/

[issue1003] zipfile password fails validation

2007-08-29 Thread Gregory P. Smith
Gregory P. Smith added the comment: can you provide a test zip file demonstrating the problem? -- assignee: -> gregory.p.smith nosy: +gregory.p.smith type: crash -> behavior __ Tracker <[EMAIL PROTECTED]> __

[issue1003] zipfile password fails validation

2007-08-23 Thread David W
New submission from David W: This is in python2.5: zipfile.py SVN rev-56308 When testing a zipfile.Zipfile().read() with a password protected zip file, I would continually get exceptions. So I tracked this down to line 796-797: if ord(h[11]) != ((zinfo.CRC>>24)&255): raise RuntimeError