(chunk_size)
| 1138 | h2 = constructor(data * num_threads, usedforsecurity=False) |
| 1139 | |
| 1140 | def update(chunk_size): |
| 1141 | for index in range(0, len(data), chunk_size): |
| 1142 | h1.update(data[index:index + chunk_size]) |
| 1143 | |
| 1144 | threads = [] |
| 1145 | for thread_num in range(num_threads): |
no outgoing calls
no test coverage detected