mirror of
https://github.com/Legrandin/pycryptodome.git
synced 2025-12-08 05:19:46 +00:00
6 lines
243 B
Python
6 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: ...
|