blob: be716afee1bd795fb12feafce7a405cf0e2ed415 (
plain) (
tree)
|
|
from typing import Dict, Tuple, Optional, Union, Callable
from Cryptodome.Util.asn1 import DerObject
def wrap(private_key: bytes,
key_oid: str,
passphrase: Union[bytes, str] = ...,
protection: str = ...,
prot_params: Dict = ...,
key_params: Optional[DerObject] = ...,
randfunc: Optional[Callable[[int],str]] = ...) -> bytes: ...
def unwrap(p8_private_key: bytes, passphrase: Optional[Union[bytes, str]] = ...) -> Tuple[str, bytes, Optional[bytes]]: ...
|