You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ORPA-pyOpenRPA/Resources/WPy64-3720/python-3.7.2.amd64/Lib/site-packages/Crypto/IO/PEM.pyi

11 lines
303 B

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]: ...