add encrption module

fix bug in zstd compression warp code
fix bug when showing compression inforamtion
This commit is contained in:
2022-01-27 16:30:25 +08:00
parent ccb61741ee
commit cc123daaa0
6 changed files with 558 additions and 5 deletions

View File

@@ -15,7 +15,11 @@ else:
have_cfapi = False
File = namedtuple('File', ['id', 'file', 'size', 'program', 'hash', 'type'])
_File = namedtuple('File', ['id', 'file', 'size', 'program', 'hash', 'type'])
class File(_File):
pass
def mkdir_for_file(p: str):