__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
from typing import Dict, Optional, Tuple, Union, overload
from typing_extensions import Literal
Buffer=bytes|bytearray|memoryview
from Cryptodome.Cipher._mode_ecb import EcbMode
from Cryptodome.Cipher._mode_cbc import CbcMode
from Cryptodome.Cipher._mode_cfb import CfbMode
from Cryptodome.Cipher._mode_ofb import OfbMode
from Cryptodome.Cipher._mode_ctr import CtrMode
from Cryptodome.Cipher._mode_openpgp import OpenPgpMode
from Cryptodome.Cipher._mode_ccm import CcmMode
from Cryptodome.Cipher._mode_eax import EaxMode
from Cryptodome.Cipher._mode_gcm import GcmMode
from Cryptodome.Cipher._mode_siv import SivMode
from Cryptodome.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
@overload
def new(key: Buffer,
mode: Literal[1],
use_aesni : bool = ...) -> \
EcbMode: ...
# MODE_CBC
@overload
def new(key: Buffer,
mode: Literal[2],
iv : Optional[Buffer] = ...,
use_aesni : bool = ...) -> \
CbcMode: ...
@overload
def new(key: Buffer,
mode: Literal[2],
IV : Optional[Buffer] = ...,
use_aesni : bool = ...) -> \
CbcMode: ...
# MODE_CFB
@overload
def new(key: Buffer,
mode: Literal[3],
iv : Optional[Buffer] = ...,
segment_size : int = ...,
use_aesni : bool = ...) -> \
CfbMode: ...
@overload
def new(key: Buffer,
mode: Literal[3],
IV : Optional[Buffer] = ...,
segment_size : int = ...,
use_aesni : bool = ...) -> \
CfbMode: ...
# MODE_OFB
@overload
def new(key: Buffer,
mode: Literal[5],
iv : Optional[Buffer] = ...,
use_aesni : bool = ...) -> \
OfbMode: ...
@overload
def new(key: Buffer,
mode: Literal[5],
IV : Optional[Buffer] = ...,
use_aesni : bool = ...) -> \
OfbMode: ...
# MODE_CTR
@overload
def new(key: Buffer,
mode: Literal[6],
nonce : Optional[Buffer] = ...,
initial_value : Union[int, Buffer] = ...,
counter : Dict = ...,
use_aesni : bool = ...) -> \
CtrMode: ...
# MODE_OPENPGP
@overload
def new(key: Buffer,
mode: Literal[7],
iv : Optional[Buffer] = ...,
use_aesni : bool = ...) -> \
OpenPgpMode: ...
@overload
def new(key: Buffer,
mode: Literal[7],
IV : Optional[Buffer] = ...,
use_aesni : bool = ...) -> \
OpenPgpMode: ...
# MODE_CCM
@overload
def new(key: Buffer,
mode: Literal[8],
nonce : Optional[Buffer] = ...,
mac_len : int = ...,
assoc_len : int = ...,
use_aesni : bool = ...) -> \
CcmMode: ...
# MODE_EAX
@overload
def new(key: Buffer,
mode: Literal[9],
nonce : Optional[Buffer] = ...,
mac_len : int = ...,
use_aesni : bool = ...) -> \
EaxMode: ...
# MODE_GCM
@overload
def new(key: Buffer,
mode: Literal[10],
nonce : Optional[Buffer] = ...,
use_aesni : bool = ...) -> \
SivMode: ...
# MODE_SIV
@overload
def new(key: Buffer,
mode: Literal[11],
nonce : Optional[Buffer] = ...,
mac_len : int = ...,
use_aesni : bool = ...) -> \
GcmMode: ...
# MODE_OCB
@overload
def new(key: Buffer,
mode: Literal[12],
nonce : Optional[Buffer] = ...,
mac_len : int = ...,
use_aesni : bool = ...) -> \
OcbMode: ...
block_size: int
key_size: Tuple[int, int, int]
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| __pycache__ | Folder | 0755 |
|
|
| AES.py | File | 8.74 KB | 0644 |
|
| AES.pyi | File | 3.58 KB | 0644 |
|
| ARC2.py | File | 6.86 KB | 0644 |
|
| ARC2.pyi | File | 1013 B | 0644 |
|
| ARC4.py | File | 5.01 KB | 0644 |
|
| ARC4.pyi | File | 422 B | 0644 |
|
| Blowfish.py | File | 5.84 KB | 0644 |
|
| Blowfish.pyi | File | 1.02 KB | 0644 |
|
| CAST.py | File | 5.94 KB | 0644 |
|
| CAST.pyi | File | 1014 B | 0644 |
|
| ChaCha20.py | File | 10.5 KB | 0644 |
|
| ChaCha20.pyi | File | 773 B | 0644 |
|
| ChaCha20_Poly1305.py | File | 11.32 KB | 0644 |
|
| ChaCha20_Poly1305.pyi | File | 1.05 KB | 0644 |
|
| DES.py | File | 5.82 KB | 0644 |
|
| DES.pyi | File | 994 B | 0644 |
|
| DES3.py | File | 6.78 KB | 0644 |
|
| DES3.pyi | File | 1.04 KB | 0644 |
|
| PKCS1_OAEP.py | File | 8.41 KB | 0644 |
|
| PKCS1_OAEP.pyi | File | 1.16 KB | 0644 |
|
| PKCS1_v1_5.py | File | 6.88 KB | 0644 |
|
| PKCS1_v1_5.pyi | File | 690 B | 0644 |
|
| Salsa20.py | File | 6.22 KB | 0644 |
|
| Salsa20.pyi | File | 744 B | 0644 |
|
| _ARC4.abi3.so | File | 66.02 KB | 0644 |
|
| _EKSBlowfish.py | File | 5.09 KB | 0644 |
|
| _EKSBlowfish.pyi | File | 270 B | 0644 |
|
| _Salsa20.abi3.so | File | 66.02 KB | 0644 |
|
| __init__.py | File | 2.82 KB | 0644 |
|
| __init__.pyi | File | 0 B | 0644 |
|
| _chacha20.abi3.so | File | 66.02 KB | 0644 |
|
| _mode_cbc.py | File | 10.65 KB | 0644 |
|
| _mode_cbc.pyi | File | 691 B | 0644 |
|
| _mode_ccm.py | File | 23.83 KB | 0644 |
|
| _mode_ccm.pyi | File | 1.56 KB | 0644 |
|
| _mode_cfb.py | File | 10.49 KB | 0644 |
|
| _mode_cfb.pyi | File | 731 B | 0644 |
|
| _mode_ctr.py | File | 15.48 KB | 0644 |
|
| _mode_ctr.pyi | File | 804 B | 0644 |
|
| _mode_eax.py | File | 14.15 KB | 0644 |
|
| _mode_eax.pyi | File | 1.51 KB | 0644 |
|
| _mode_ecb.py | File | 8.13 KB | 0644 |
|
| _mode_ecb.pyi | File | 596 B | 0644 |
|
| _mode_gcm.py | File | 20.84 KB | 0644 |
|
| _mode_gcm.pyi | File | 1.5 KB | 0644 |
|
| _mode_ocb.py | File | 19.51 KB | 0644 |
|
| _mode_ocb.pyi | File | 1.2 KB | 0644 |
|
| _mode_ofb.py | File | 9.99 KB | 0644 |
|
| _mode_ofb.pyi | File | 695 B | 0644 |
|
| _mode_openpgp.py | File | 6.9 KB | 0644 |
|
| _mode_openpgp.pyi | File | 556 B | 0644 |
|
| _mode_siv.py | File | 13.68 KB | 0644 |
|
| _mode_siv.pyi | File | 1.23 KB | 0644 |
|
| _pkcs1_decode.abi3.so | File | 66.02 KB | 0644 |
|
| _pkcs1_oaep_decode.py | File | 1.79 KB | 0644 |
|
| _raw_aes.abi3.so | File | 66.02 KB | 0644 |
|
| _raw_arc2.abi3.so | File | 66.02 KB | 0644 |
|
| _raw_blowfish.abi3.so | File | 66.02 KB | 0644 |
|
| _raw_cast.abi3.so | File | 66.02 KB | 0644 |
|
| _raw_cbc.abi3.so | File | 65.95 KB | 0644 |
|
| _raw_cfb.abi3.so | File | 66.02 KB | 0644 |
|
| _raw_ctr.abi3.so | File | 66.02 KB | 0644 |
|
| _raw_des.abi3.so | File | 66.02 KB | 0644 |
|
| _raw_des3.abi3.so | File | 66.02 KB | 0644 |
|
| _raw_ecb.abi3.so | File | 65.8 KB | 0644 |
|
| _raw_eksblowfish.abi3.so | File | 66.02 KB | 0644 |
|
| _raw_ocb.abi3.so | File | 66.02 KB | 0644 |
|
| _raw_ofb.abi3.so | File | 65.95 KB | 0644 |
|