Use dict instead of tuple for keys #7
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
By using dict data type for keys, the hardcoded constants in top of rsa.py file can be removed and set as keys for the dict object.
key_dict = {'p':p, 'q': q, 'e': 6xxxx, ... }
then accessed with:
n = key_dict['n']
and so on.