003 File Manager
Current Path:
/usr/local/lib/python3.8/site-packages/Cryptodome/Signature
usr
/
local
/
lib
/
python3.8
/
site-packages
/
Cryptodome
/
Signature
/
📁
..
📄
DSS.py
(15.12 KB)
📄
DSS.pyi
(1.08 KB)
📄
PKCS1_PSS.py
(2.05 KB)
📄
PKCS1_PSS.pyi
(280 B)
📄
PKCS1_v1_5.py
(1.95 KB)
📄
PKCS1_v1_5.pyi
(157 B)
📄
__init__.py
(1.65 KB)
📁
__pycache__
📄
pkcs1_15.py
(8.54 KB)
📄
pkcs1_15.pyi
(568 B)
📄
pss.py
(13.18 KB)
📄
pss.pyi
(1.02 KB)
Editing: pkcs1_15.pyi
from typing import Optional from typing_extensions import Protocol from Cryptodome.PublicKey.RSA import RsaKey class Hash(Protocol): def digest(self) -> bytes: ... class PKCS115_SigScheme: def __init__(self, rsa_key: RsaKey) -> None: ... def can_sign(self) -> bool: ... def sign(self, msg_hash: Hash) -> bytes: ... def verify(self, msg_hash: Hash, signature: bytes) -> None: ... def _EMSA_PKCS1_V1_5_ENCODE(msg_hash: Hash, emLen: int, with_hash_parameters: Optional[bool]=True) -> bytes: ... def new(rsa_key: RsaKey) -> PKCS115_SigScheme: ...
Upload File
Create Folder