Files
ai_wht_B/venv/Lib/site-packages/Crypto/Util/strxor.pyi
“shengyudong” 5a384b694e 2026-1-6
2026-01-06 14:18:39 +08:00

7 lines
243 B
Python

from typing import Union, Optional
Buffer = Union[bytes, bytearray, memoryview]
def strxor(term1: bytes, term2: bytes, output: Optional[Buffer]=...) -> bytes: ...
def strxor_c(term: bytes, c: int, output: Optional[Buffer]=...) -> bytes: ...