PATH:
opt
/
imunify360
/
venv
/
lib
/
python3.11
/
site-packages
/
Crypto
/
Cipher
from typing import Union, Tuple, overload, ByteString, Optional class ChaCha20Poly1305Cipher: nonce: bytes def __init__(self, key: ByteString, nonce: ByteString) -> None: ... def update(self, data: ByteString) -> None: ... @overload def encrypt(self, plaintext: ByteString) -> bytes: ... @overload def encrypt(self, plaintext: ByteString, output: Union[bytearray, memoryview]) -> None: ... @overload def decrypt(self, plaintext: ByteString) -> bytes: ... @overload def decrypt(self, plaintext: ByteString, output: Union[bytearray, memoryview]) -> None: ... def digest(self) -> bytes: ... def hexdigest(self) -> str: ... def verify(self, received_mac_tag: ByteString) -> None: ... def hexverify(self, received_mac_tag: str) -> None: ... def encrypt_and_digest(self, plaintext: ByteString) -> Tuple[bytes, bytes]: ... def decrypt_and_verify(self, ciphertext: ByteString, received_mac_tag: ByteString) -> bytes: ... def new(key: ByteString, nonce: Optional[ByteString] = ...) -> ChaCha20Poly1305Cipher: ... block_size: int key_size: int
[-] _raw_ecb.abi3.so
[edit]
[-] _raw_des3.abi3.so
[edit]
[-] _mode_ctr.py
[edit]
[-] ARC4.py
[edit]
[-] _raw_aesni.abi3.so
[edit]
[-] ARC2.pyi
[edit]
[-] _mode_ecb.py
[edit]
[-] Salsa20.py
[edit]
[-] PKCS1_v1_5.py
[edit]
[-] _mode_eax.pyi
[edit]
[-] _raw_aes.abi3.so
[edit]
[-] PKCS1_OAEP.pyi
[edit]
[-] _raw_eksblowfish.abi3.so
[edit]
[+]
..
[-] _mode_openpgp.py
[edit]
[-] _mode_ctr.pyi
[edit]
[-] AES.py
[edit]
[-] _mode_ocb.py
[edit]
[-] _Salsa20.abi3.so
[edit]
[-] _mode_eax.py
[edit]
[-] _mode_ocb.pyi
[edit]
[-] _raw_des.abi3.so
[edit]
[-] _mode_cfb.py
[edit]
[-] AES.pyi
[edit]
[-] DES.pyi
[edit]
[-] _raw_blowfish.abi3.so
[edit]
[-] _mode_openpgp.pyi
[edit]
[-] _mode_siv.pyi
[edit]
[-] _raw_arc2.abi3.so
[edit]
[-] _raw_cfb.abi3.so
[edit]
[-] Blowfish.py
[edit]
[-] _EKSBlowfish.pyi
[edit]
[+]
__pycache__
[-] _chacha20.abi3.so
[edit]
[-] _raw_ofb.abi3.so
[edit]
[-] _mode_gcm.py
[edit]
[-] DES3.py
[edit]
[-] _mode_ecb.pyi
[edit]
[-] _mode_ccm.pyi
[edit]
[-] __init__.pyi
[edit]
[-] ARC4.pyi
[edit]
[-] CAST.py
[edit]
[-] ChaCha20.pyi
[edit]
[-] _mode_siv.py
[edit]
[-] _raw_ocb.abi3.so
[edit]
[-] Salsa20.pyi
[edit]
[-] CAST.pyi
[edit]
[-] _mode_cbc.py
[edit]
[-] DES.py
[edit]
[-] ARC2.py
[edit]
[-] _mode_ccm.py
[edit]
[-] ChaCha20_Poly1305.py
[edit]
[-] _pkcs1_decode.abi3.so
[edit]
[-] Blowfish.pyi
[edit]
[-] ChaCha20_Poly1305.pyi
[edit]
[-] __init__.py
[edit]
[-] _EKSBlowfish.py
[edit]
[-] _mode_ofb.py
[edit]
[-] _mode_cfb.pyi
[edit]
[-] DES3.pyi
[edit]
[-] PKCS1_v1_5.pyi
[edit]
[-] ChaCha20.py
[edit]
[-] _ARC4.abi3.so
[edit]
[-] _raw_cast.abi3.so
[edit]
[-] PKCS1_OAEP.py
[edit]
[-] _mode_gcm.pyi
[edit]
[-] _mode_ofb.pyi
[edit]
[-] _mode_cbc.pyi
[edit]
[-] _raw_cbc.abi3.so
[edit]
[-] _raw_ctr.abi3.so
[edit]