In the [hashes.py](https://github.com/maldroid/maldrolyzer/blob/master/processing/hashes.py) file to get the file hash `line 7` you opened the file to read it: ```python filedata = open(filename).read() ``` But if you open the file with `rb`'s parameter the hash will be different, I think you should use an Is apk's file not binary or what?
In the hashes.py file to get the file hash
line 7you opened the file to read it:But if you open the file with
rb's parameter the hash will be different, I think you should use anIs apk's file not binary or what?