-
-
Save murych/f45565576ccefb9c978a129b0950c8d4 to your computer and use it in GitHub Desktop.
Revisions
-
aunyks revised this gist
Apr 2, 2017 . No changes.There are no files selected for viewing
-
aunyks revised this gist
Apr 2, 2017 . No changes.There are no files selected for viewing
-
aunyks created this gist
Apr 2, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ import hashlib as hash # Specify how many bytes of the file you want to open at a time BLOCKSIZE = 65536 sha = hash.sha256() with open('kali.iso', 'rb') as kali_file: file_buffer = kali_file.read(BLOCKSIZE) while len(file_buffer) > 0: sha.update(file_buffer) file_buffer = kali_file.read(BLOCKSIZE) print sha.hexdigest()