(path: str, data: bytes)
| 25 | |
| 26 | |
| 27 | def _write(path: str, data: bytes): |
| 28 | os.makedirs(os.path.dirname(os.path.abspath(path)), exist_ok=True) |
| 29 | with open(path, 'wb') as f: |
| 30 | f.write(data) |
| 31 | |
| 32 | |
| 33 | def _make_lsb_plugin(algo: str, bits: int, password: str, |
no test coverage detected