Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

block size explained in python hashlib module

import hashlib
hash = hashlib.md5()
# The size of the resulting hash in bytes.
print(hash.digest_size)
# The internal block size of the hash algorithm in bytes.
print(hash.block_size)
Source by www.alixaprodev.com #
 
PREVIOUS NEXT
Tagged: #block #size #explained #python #hashlib #module
ADD COMMENT
Topic
Name
1+5 =