mirror of
https://github.com/Legrandin/pycryptodome.git
synced 2026-06-28 03:40:32 +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
|