mirror of
https://github.com/Legrandin/pycryptodome.git
synced 2026-02-06 09:49:54 +00:00
8 lines
135 B
Python
8 lines
135 B
Python
from typing import Any
|
|
|
|
from ._IntegerNative import IntegerNative
|
|
|
|
_raw_montgomery = Any
|
|
|
|
class IntegerCustom(IntegerNative):
|
|
pass
|