Legrandin / pycryptodome

A self-contained cryptographic library for Python
https://www.pycryptodome.org
Other
2.74k stars 492 forks source link

Evalue e'th modular root #799

Closed Loryerba closed 2 weeks ago

Loryerba commented 4 months ago

Hi, im trying to evaluate e'th root of an integer and i want to get an integer as result without casting 1/e as integer. I know there is built-in pow function but if i use 1/e as exponent i get a float result.

Thanks