get md5 hash value of String s :param s: :return:
(s)
| 199 | return all_paths |
| 200 | |
| 201 | def get_md5(s): |
| 202 | """ |
| 203 | get md5 hash value of String s |
| 204 | :param s: |
| 205 | :return: |
| 206 | """ |
| 207 | return str(md5(s.encode('utf8')).hexdigest()) |
| 208 | |
| 209 | def graph_add_node_mgr(g: networkx.Graph, logs, key, md5_to_node:dict): |
| 210 | node_set = set() |
no outgoing calls
no test coverage detected