mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-23 19:01:26 -07:00
Add comments/docstrings not to use md5 unless forced to by forces outside our control.
This commit is contained in:
parent
3ccb0b8243
commit
6a85f3ebc7
2 changed files with 15 additions and 1 deletions
|
@ -1238,7 +1238,16 @@ class AnsibleModule(object):
|
|||
return digest.hexdigest()
|
||||
|
||||
def md5(self, filename):
|
||||
''' Return MD5 hex digest of local file using digest_from_file(). '''
|
||||
''' Return MD5 hex digest of local file using digest_from_file().
|
||||
|
||||
Do not use this function unless you have no other choice for:
|
||||
1) Optional backwards compatibility
|
||||
2) Compatibility with a third party protocol
|
||||
|
||||
This function will not work on systems complying with FIPS-140-2.
|
||||
|
||||
Most uses of this function can use the module.sha1 function instead.
|
||||
'''
|
||||
return self.digest_from_file(filename, _md5())
|
||||
|
||||
def sha1(self, filename):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue