summaryrefslogtreecommitdiff
path: root/lib/ansible/utils/hashing.py
Commit message (Collapse)AuthorAgeFilesLines
* Move uses of to_bytes, to_text, to_native to use the module_utils version ↵Toshio Kuratomi2016-09-061-4/+4
| | | | | | | | (#17423) We couldn't copy to_unicode, to_bytes, to_str into module_utils because of licensing. So once created it we had two sets of functions that did the same things but had different implementations. To remedy that, this change removes the ansible.utils.unicode versions of those functions.
* Hashing needs byte strings in python3 (#17221)Toshio Kuratomi2016-08-241-8/+8
| | | | | First try at porting this passed in string-types as that worked on python2. Python3 is more strict so be explicit about converting from text to bytes
* Migrate basestring to a python3 compatible type (#17199)Toshio Kuratomi2016-08-231-3/+5
|
* Use to_bytes on filenames in filesystem calls.Matt Clay2016-03-041-2/+3
|
* Making the switch to v2James Cammarata2015-05-031-2/+5
|
* Move the hashing util functions to their own file to mirror v2Toshio Kuratomi2015-02-021-0/+91