diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2023-04-14 16:45:06 -0400 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2023-05-05 12:27:03 -0400 |
commit | 5d3aad0ca44df998bfe37f23d371926ff1a7ffb3 (patch) | |
tree | a7df0707d51d971d9a3183bbf2d948a12f80b9db /sites | |
parent | 57c33481fda5cd9338df2bb4d5c090f50bcc7343 (diff) |
Add algorithm_name property to PKey
Diffstat (limited to 'sites')
-rw-r--r-- | sites/www/changelog.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sites/www/changelog.rst b/sites/www/changelog.rst index 8ff9f179..0f652650 100644 --- a/sites/www/changelog.rst +++ b/sites/www/changelog.rst @@ -2,6 +2,11 @@ Changelog ========= +- :feature:`-` `~paramiko.pkey.PKey` grew a new ``.algorithm_name`` property + which displays the key algorithm; this is typically derived from the value of + `~paramiko.pkey.PKey.get_name`. For example, ED25519 keys have a ``get_name`` + of ``ssh-ed25519`` (the SSH protocol key type field value), and now have a + ``algorithm_name`` of ``ED25519``. - :feature:`-` `~paramiko.pkey.PKey` grew a new ``.fingerprint`` property which emits a fingerprint string matching the SHA256+Base64 values printed by various OpenSSH tooling (eg ``ssh-add -l``, ``ssh -v``). This is intended to |