View Single Post
Checker!
Old
zonedabone
Senior Member
 
zonedabone's Avatar
 
Status: Offline
Posts: 577
Join Date: Nov 2008
Location: In the interwebs
Default Checker! - 11-07-2010, 06:15 PM

Ok! Here's a simple checker for you alice downloads! Just run the exe. It will ask you to open your alice zip, and then it will hash it and tell you the results. If it doesn't match anything, you may have a corrupt file. Note that this is only for the newest 2.2 and the newest 2.0. I don't know the hashes for the others, at least at the moment. If you don't feel confortable running my zips, you can open up a python interpreter and run:
Code:
>>>import hashlib
>>>file = open(FILENAME,'r')
>>>data = hashlib.md5(file.read()).hexdigest()
>>>file.close()
>>>print data
DATA WILL APPEAR HERE
Attached Files
File Type: zip checker.zip (9.6 KB, 5 views)


'Apple Macintosh' - An anagram of 'Complaints Heap'

M.A.C.I.N.T.O.S.H. - Machine Always Crashes, If Not, The Operating System Hangs.

You're *such* a mac person.

Last edited by zonedabone; 11-08-2010 at 04:20 PM.
   
Reply With Quote