mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-02 16:53:11 +00:00
Use StringIO to feed md5 calculation to prevent unicode issues
Fixes #4014
This commit is contained in:
@@ -393,8 +393,9 @@ def merge_hash(a, b):
|
||||
def md5s(data):
|
||||
''' Return MD5 hex digest of data. '''
|
||||
|
||||
buf = StringIO.StringIO(data)
|
||||
digest = _md5()
|
||||
digest.update(data.encode('utf-8'))
|
||||
digest.update(buf.read())
|
||||
return digest.hexdigest()
|
||||
|
||||
def md5(filename):
|
||||
|
||||
Reference in New Issue
Block a user