summaryrefslogtreecommitdiffhomepage
path: root/paramiko/kex_ecdh_nist.py
AgeCommit message (Collapse)Author
2023-01-09Remove or transmute all use of long()Jeff Forcier
- When wrapping literals: just go away - When wrapping variables whose values are already definitely integers (eg output of 'id()'): ditto - When wrapping variables of unknown provenance or which are definitely NOT integers: replaced with int()
2023-01-09Migrate some byte related helpers aroundJeff Forcier
I feel like we should be able to just nuke byte_chr and friends at this point, but it's not entirely obvious, so let's rock that boat later.
2021-12-23Add support for RSA SHA2 host and public keysJeff Forcier
Includes a handful of refactors and new semiprivate attributes on Transport and AuthHandler for better test visibility.
2019-02-09Fix numbers vs key mixupsAndrew Wason
2019-02-06Move to cryptography 2.5 and stop using deprecated APIs.Andrew Wason
Fixes #1369
2018-05-29Blacken under black 18.5b0Jeff Forcier
2018-05-17Blacken Paramiko on 2.4Chris Rose
2017-10-11flake8 for previous changesetJeff Forcier
2017-10-10String format modernization, part 1Jeff Forcier
Choosing to skip it in some edge/corner cases where it's more harmful than helpful. Also choosing to replace many non-%s specifiers with regular old {} since I don't see why one would normally care. Again, eschewing that in spots where it seems like it might matter.
2017-06-06flake8Jeff Forcier
2017-05-04refactor filesShashank Veerapaneni