You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not all the functions in cryptanalib have help blurbs. Let's document all the functions and their expected return values and whatnot like so:
"""
Get integer nth roots.
:param x: The number to get the integer root of.
:param n: The root we want (e.g. 3 for cube root).
:return: The nth root of x rounded to an integer.
:rtype: long
"""
The text was updated successfully, but these errors were encountered:
@q2dg While this project is abandoned, I (the original author) am maintaining a Python3-compatible fork of the cryptanalib module at https://github.com/unicornsasfuel/cryptanalib3. The FeatherDuster interface has not yet been recreated in Python3.
Not all the functions in
cryptanalib
have help blurbs. Let's document all the functions and their expected return values and whatnot like so:The text was updated successfully, but these errors were encountered: