mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-16 00:37:10 +08:00
Add stub for cryptography.hazmat.primitives.serialization (#851)
This makes the stubs for cryptoraphy less incompelete. Created using stubgen. I don't know what the types are.
This commit is contained in:
committed by
Guido van Rossum
parent
0192f301b4
commit
c577c84a17
32
third_party/2/cryptography/hazmat/primitives/serialization.pyi
vendored
Normal file
32
third_party/2/cryptography/hazmat/primitives/serialization.pyi
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
# Stubs for cryptography.hazmat.primitives.serialization (Python 2)
|
||||
#
|
||||
# NOTE: This dynamically typed stub was automatically generated by stubgen.
|
||||
|
||||
from typing import Any
|
||||
from enum import Enum
|
||||
|
||||
def load_pem_private_key(data, password, backend): ...
|
||||
def load_pem_public_key(data, backend): ...
|
||||
def load_der_private_key(data, password, backend): ...
|
||||
def load_der_public_key(data, backend): ...
|
||||
def load_ssh_public_key(data, backend): ...
|
||||
|
||||
class Encoding(Enum):
|
||||
PEM = ... # type: str
|
||||
DER = ... # type: str
|
||||
|
||||
class PrivateFormat(Enum):
|
||||
PKCS8 = ... # type: str
|
||||
TraditionalOpenSSL = ... # type: str
|
||||
|
||||
class PublicFormat(Enum):
|
||||
SubjectPublicKeyInfo = ... # type: str
|
||||
PKCS1 = ... # type: str
|
||||
|
||||
class KeySerializationEncryption: ...
|
||||
|
||||
class BestAvailableEncryption:
|
||||
password = ... # type: Any
|
||||
def __init__(self, password) -> None: ...
|
||||
|
||||
class NoEncryption: ...
|
||||
Reference in New Issue
Block a user