mirror of
https://github.com/kovidgoyal/kitty.git
synced 2024-11-13 03:12:37 +03:00
Add type definitions for the crypto data types
This commit is contained in:
parent
f06a72b418
commit
a487a78200
@ -1413,3 +1413,56 @@ def remove_signal_handlers() -> None:
|
||||
|
||||
def getpeereid(fd: int) -> Tuple[int, int]:
|
||||
pass
|
||||
|
||||
|
||||
X25519: int
|
||||
SHA1_HASH: int
|
||||
SHA224_HASH: int
|
||||
SHA256_HASH: int
|
||||
SHA384_HASH: int
|
||||
SHA512_HASH: int
|
||||
|
||||
|
||||
class Secret:
|
||||
pass
|
||||
|
||||
|
||||
class EllipticCurveKey:
|
||||
|
||||
def __init__(
|
||||
self, algorithm: int = 0 # X25519
|
||||
): pass
|
||||
|
||||
def derive_secret(
|
||||
self, pubkey: bytes, hash_algorithm: int = 0 # SHA256_HASH
|
||||
) -> Secret: pass
|
||||
|
||||
@property
|
||||
def public(self) -> bytes: ...
|
||||
|
||||
@property
|
||||
def private(self) -> Secret: ...
|
||||
|
||||
|
||||
class AES256GCMEncrypt:
|
||||
|
||||
def __init__(self, key: Secret): ...
|
||||
|
||||
def add_authenticated_but_unencrypted_data(self, data: bytes) -> None: ...
|
||||
|
||||
def add_data_to_be_encrypted(self, data: bytes, finished: bool = False) -> bytes: ...
|
||||
|
||||
@property
|
||||
def iv(self) -> bytes: ...
|
||||
|
||||
@property
|
||||
def tag(self) -> bytes: ...
|
||||
|
||||
|
||||
class AES256GCMDecrypt:
|
||||
|
||||
def __init__(self, key: Secret, iv: bytes, tag: bytes): ...
|
||||
|
||||
def add_data_to_be_authenticated_but_not_decrypted(self, data: bytes) -> None: ...
|
||||
|
||||
def add_data_to_be_decrypted(self, data: bytes, finished: bool = False) -> bytes: ...
|
||||
|
Loading…
Reference in New Issue
Block a user