Compute md5 hash of files in idirs. Parameters ---------- idirs : directory path Directory containing files to be hashed.
(idirs)
| 140 | |
| 141 | |
| 142 | def compute_md5(idirs): |
| 143 | """Compute md5 hash of files in idirs. |
| 144 | |
| 145 | Parameters |
| 146 | ---------- |
| 147 | idirs : directory path |
| 148 | Directory containing files to be hashed. |
| 149 | |
| 150 | """ |
| 151 | return _compute_hash(idirs, hashlib.md5) |
| 152 | |
| 153 | |
| 154 | def compute_sha256(idirs): |
no test coverage detected