pull/3952/head
its5Q 3 months ago
commit b90fe9f228

@ -54,11 +54,10 @@ def metamask_parser(file, shortdata):
if isMobile is False: if isMobile is False:
if 'keyMetadata' in j and 'params' in j['keyMetadata'] and 'iterations' in j['keyMetadata']['params']: try:
iter_count = j['keyMetadata']['params']['iterations'] iter_count = j['keyMetadata']['params']['iterations']
else: except KeyError:
iter_count = 10000 iter_count = 10_000
if((len(j['data']) > 3000) or shortdata): if((len(j['data']) > 3000) or shortdata):
data_bin = base64.b64decode(j['data']) data_bin = base64.b64decode(j['data'])
# TODO limit data to 16 bytes, we only check the first block of data, so we don't need more data. # TODO limit data to 16 bytes, we only check the first block of data, so we don't need more data.

Loading…
Cancel
Save