mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-25 09:48:09 +02:00
Implement signature generation
This commit is contained in:
15
kittens/transfer/rsync.pyi
Normal file
15
kittens/transfer/rsync.pyi
Normal file
@@ -0,0 +1,15 @@
|
||||
from typing import Optional, Tuple
|
||||
|
||||
IO_BUFFER_SIZE: int
|
||||
|
||||
|
||||
class JobCapsule:
|
||||
pass
|
||||
|
||||
|
||||
def begin_signature(file_size: int = -1, strong_len: int = 0) -> JobCapsule:
|
||||
pass
|
||||
|
||||
|
||||
def iter_job(job_capsule: JobCapsule, input_data: bytes, eof: Optional[bool] = None) -> Tuple[bytes, bool]:
|
||||
pass
|
||||
Reference in New Issue
Block a user