Spaces:
Sleeping
Sleeping
from typing import ByteString, Dict, Optional, Tuple, Union, overload | |
from typing_extensions import Literal | |
from Crypto.Cipher._mode_ecb import EcbMode | |
from Crypto.Cipher._mode_cbc import CbcMode | |
from Crypto.Cipher._mode_cfb import CfbMode | |
from Crypto.Cipher._mode_ofb import OfbMode | |
from Crypto.Cipher._mode_ctr import CtrMode | |
from Crypto.Cipher._mode_openpgp import OpenPgpMode | |
from Crypto.Cipher._mode_ccm import CcmMode | |
from Crypto.Cipher._mode_eax import EaxMode | |
from Crypto.Cipher._mode_gcm import GcmMode | |
from Crypto.Cipher._mode_siv import SivMode | |
from Crypto.Cipher._mode_ocb import OcbMode | |
MODE_ECB: Literal[1] | |
MODE_CBC: Literal[2] | |
MODE_CFB: Literal[3] | |
MODE_OFB: Literal[5] | |
MODE_CTR: Literal[6] | |
MODE_OPENPGP: Literal[7] | |
MODE_CCM: Literal[8] | |
MODE_EAX: Literal[9] | |
MODE_SIV: Literal[10] | |
MODE_GCM: Literal[11] | |
MODE_OCB: Literal[12] | |
# MODE_ECB | |
def new(key: ByteString, | |
mode: Literal[1], | |
use_aesni : bool = ...) -> \ | |
EcbMode: ... | |
# MODE_CBC | |
def new(key: ByteString, | |
mode: Literal[2], | |
iv : Optional[ByteString] = ..., | |
use_aesni : bool = ...) -> \ | |
CbcMode: ... | |
def new(key: ByteString, | |
mode: Literal[2], | |
IV : Optional[ByteString] = ..., | |
use_aesni : bool = ...) -> \ | |
CbcMode: ... | |
# MODE_CFB | |
def new(key: ByteString, | |
mode: Literal[3], | |
iv : Optional[ByteString] = ..., | |
segment_size : int = ..., | |
use_aesni : bool = ...) -> \ | |
CfbMode: ... | |
def new(key: ByteString, | |
mode: Literal[3], | |
IV : Optional[ByteString] = ..., | |
segment_size : int = ..., | |
use_aesni : bool = ...) -> \ | |
CfbMode: ... | |
# MODE_OFB | |
def new(key: ByteString, | |
mode: Literal[5], | |
iv : Optional[ByteString] = ..., | |
use_aesni : bool = ...) -> \ | |
OfbMode: ... | |
def new(key: ByteString, | |
mode: Literal[5], | |
IV : Optional[ByteString] = ..., | |
use_aesni : bool = ...) -> \ | |
OfbMode: ... | |
# MODE_CTR | |
def new(key: ByteString, | |
mode: Literal[6], | |
nonce : Optional[ByteString] = ..., | |
initial_value : Union[int, ByteString] = ..., | |
counter : Dict = ..., | |
use_aesni : bool = ...) -> \ | |
CtrMode: ... | |
# MODE_OPENPGP | |
def new(key: ByteString, | |
mode: Literal[7], | |
iv : Optional[ByteString] = ..., | |
use_aesni : bool = ...) -> \ | |
OpenPgpMode: ... | |
def new(key: ByteString, | |
mode: Literal[7], | |
IV : Optional[ByteString] = ..., | |
use_aesni : bool = ...) -> \ | |
OpenPgpMode: ... | |
# MODE_CCM | |
def new(key: ByteString, | |
mode: Literal[8], | |
nonce : Optional[ByteString] = ..., | |
mac_len : int = ..., | |
assoc_len : int = ..., | |
use_aesni : bool = ...) -> \ | |
CcmMode: ... | |
# MODE_EAX | |
def new(key: ByteString, | |
mode: Literal[9], | |
nonce : Optional[ByteString] = ..., | |
mac_len : int = ..., | |
use_aesni : bool = ...) -> \ | |
EaxMode: ... | |
# MODE_GCM | |
def new(key: ByteString, | |
mode: Literal[10], | |
nonce : Optional[ByteString] = ..., | |
use_aesni : bool = ...) -> \ | |
SivMode: ... | |
# MODE_SIV | |
def new(key: ByteString, | |
mode: Literal[11], | |
nonce : Optional[ByteString] = ..., | |
mac_len : int = ..., | |
use_aesni : bool = ...) -> \ | |
GcmMode: ... | |
# MODE_OCB | |
def new(key: ByteString, | |
mode: Literal[12], | |
nonce : Optional[ByteString] = ..., | |
mac_len : int = ..., | |
use_aesni : bool = ...) -> \ | |
OcbMode: ... | |
block_size: int | |
key_size: Tuple[int, int, int] | |