first commit

This commit is contained in:
2026-02-08 14:42:58 +08:00
commit 20e1deae21
8197 changed files with 2264639 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
from typing import Tuple, Optional, Callable
def encode(data: bytes,
marke: str,
passphrase: Optional[bytes] = ...,
randfunc: Optional[Callable[[int],bytes]] = ...) -> str: ...
def decode(pem_data: str,
passphrase: Optional[bytes] = ...) -> Tuple[bytes, str, bool]: ...