Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

python-paramiko-doc-5.0.0-1.fc45 RPM for noarch

From Fedora Rawhide for ppc64le / p

Name: python-paramiko-doc Distribution: Fedora Project
Version: 5.0.0 Vendor: Fedora Project
Release: 1.fc45 Build date: Mon May 11 14:59:14 2026
Group: Unspecified Build host: buildhw-x86-09.rdu3.fedoraproject.org
Size: 1571639 Source RPM: python-paramiko-5.0.0-1.fc45.src.rpm
Packager: Fedora Project
Url: https://github.com/paramiko/paramiko
Summary: Docs and demo for SSH2 protocol library for python
Paramiko (a combination of the Esperanto words for "paranoid" and "friend") is
a module for python 2.3 or greater that implements the SSH2 protocol for secure
(encrypted and authenticated) connections to remote machines. Unlike SSL (aka
TLS), the SSH2 protocol does not require hierarchical certificates signed by a
powerful central authority. You may know SSH2 as the protocol that replaced
telnet and rsh for secure access to remote shells, but the protocol also
includes the ability to open arbitrary channels to remote services across an
encrypted tunnel (this is how sftp works, for example).

This is the documentation and demos.

Provides

Requires

License

LGPL-2.1-or-later

Changelog

* Mon May 11 2026 Paul Howarth <paul@city-fan.org> - 5.0.0-1
  - Update to 5.0.0 (rhbz#2468545)
    - Fix 'Ed25519Key <paramiko.ed25519key.Ed25519Key>'s internals such that it
      no longer throws 'AttributeError' during calls to '__repr__' when only
      partly initialized; this isn't a normal runtime problem (it only happens
      inside error handling for fatal errors like "not a valid private key") but
      was perennially complicating test failure diagnosis and similar scenarios
    - The 'PKey <paramiko.pkey.PKey>' class family tree reorganized the
      'write_private_key' and 'write_private_key_file' methods; with other recent
      changes, having individual implementations on the child classes made no
      sense, so key writing is now implemented in 'PKey <paramiko.pkey.PKey>'
      itself and the included child classes such as
      'ECDSAKey <paramiko.ecdsakey.ECDSAKey>' no longer define their own such
      methods, instead simply exposing their underlying cryptographic private key
      objects as '.private_key'
    - Added a new, optional 'file_format' keyword argument to
      'PKey.write_private_key <paramiko.pkey.PKey.write_private_key>' and
      'PKey.write_private_key_file <paramiko.pkey.PKey.write_private_key_file>' to
      allow writing out OpenSSH-style private key files in addition to the legacy
      PEM format
      - Warning: While the default format remains PEM in Paramiko 5, future major
        releases are likely to change that default to the OpenSSH format; we
        recommend updating any key-writing code you have to be explicit now, to
        insulate yourself from such an update
    - Raised the minimum modulus size in 'diffie-hellman-group-exchange-sha256'
      key exchange from 1024 (the original spec's minimum) to 2048 (the
      contemporary minimum according to RFC-9142, and matching a similar change by
      OpenSSH ten years ago in 7.2 / 2016)
      - Warning: This change may be backwards incompatible if you were targeting
        servers supporting *only* this kex method and whose own maximum modulus
        size for group-exchange was lower than 2048
    - Removed GSSAPI support, as the current (buggy, no longer easily testable in
      CI, poorly understood and not used by the core team) implementation is
      SHA-1 based and no SHA-256 upgrade appeared to be forthcoming from
      contributors
      - We don't like removing functionality, but this feature has been on the
        rocks for years and it makes sense to remove it as an insecure support
        burden; we will definitely consider merging a SHA256-based replacement in
        the future if a high-quality one appears
      - Side note: the GSS related constants in 'paramiko/common.py' have been
        left in place as they are essentially mapping out known protocol numbers
      - Warning: This change is backwards incompatible if you require GSS
    - Removed support for key exchange using SHA-1, meaning the kex methods
      'diffie-hellman-group-exchange-sha1', '`diffie-hellman-group14-sha1', and
      'diffie-hellman-group1-sha1' are now gone; implementing classes have been
      removed/merged/shuffled as required
      - Warning: This change is backwards incompatible if you were still
        supporting old systems that don't implement sha256/sha512 DH kex (or
        ECDH kex)
    - Removed support for verifying/signing with RSA keys using SHA-1 hashing;
      generally, this means most cases where "ssh-rsa" was used as an algorithm
      identifier (as opposed to a key material identifier) will no longer accept
      that string as valid, and the relevant code that actually used e.g.
      'hashes.SHA1' no longer does
      - Warning: This change is backwards incompatible if you are stuck
        supporting legacy systems with Paramiko that are unable to use SHA2-based
        signatures with RSA keys (or other workarounds, such as switching from
        RSA keys to Ed25519 ones)
    - Added a 'password' kwarg to
      'PKey.from_type_string <paramiko.pkey.PKey.from_type_string>' so it can
      handle encrypted keys like most other PKey constructors already could
    - Renamed 'PKey.from_path <paramiko.pkey.PKey.from_path>'s 'passphrase'
      argument to 'password' so it's consistent with all the other methods of
      instantiating PKey objects
      - Warning: This change is backwards incompatible if you were using this
        relatively new constructor and were doing so to load encrypted keys
    - Removed the 'demos/' folder; they've become too big a support burden and
      we've wanted to remove them for years
      - Users who enjoyed the client-side demos should look at our wrapper
        library, 'Fabric <https://fabfile.org>'
      - We suspect the most-used demo was 'demos/demo-server.py' and may consider
        adding a variant of it to the actual Python package in future
* Mon May 11 2026 Paul Howarth <paul@city-fan.org> - 4.0.0-1
  - Update to 4.0.0
    - Dropped support for Python <3.9
    - Migrated packaging metadata and practices to use 'pyproject.toml'
    - Removed the now-vestigial 'ed25519' packaging 'extra' (support for this
      hasn't required additional dependencies in a number of releases now, just
      the core ones)
    - Moved Invoke requirement to core dependencies, and removed
      'paramiko[invoke]' from extras
    - With those two changes, 'paramiko[all]' becomes much less useful, and has
      itself been axed
    - Removed the very old and wizened 'setup_helper.py' which was only needed on
      ancient (for this century) versions of macOS
    - Removed 'paramiko.__all__', as it was redundant (guessing it dated back to
      some *very* old Python versions; anyone using 'import *' these days -
      shame! - should still be fine as we never *had* any 'private' members in
      '__all__' and AFAICT that was the only reason ever to use it in the first
      place (as 'import *' skips names like '_private')
    - Removed support for the DSA (aka DSS) key algorithm, as it has been badly
      outdated and insecure for a decade or more at this point, and was recently
      completely removed from OpenSSH as well (GH#973)
      - If you were still using DSA out of sheer inertia: we strongly recommend
        upgrading to Ed25519 (or maybe ECDSA)
      - If you were still using DSA because of target hosts you do not control:
        please continue using Paramiko 3.x
  - Reinstate use of invoke since it's now a core dependency
* Sat Jan 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.1-7
  - Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
* Fri Sep 19 2025 Python Maint <python-maint@redhat.com> - 3.5.1-6
  - Rebuilt for Python 3.14.0rc3 bytecode
* Fri Aug 15 2025 Python Maint <python-maint@redhat.com> - 3.5.1-5
  - Rebuilt for Python 3.14.0rc2 bytecode
* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.1-4
  - Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
* Tue Jul 08 2025 Paul Howarth <paul@city-fan.org> - 3.5.1-3
  - Update to current Python packaging guidelines (rhbz#2377972)
* Tue Jun 03 2025 Python Maint <python-maint@redhat.com> - 3.5.1-2
  - Rebuilt for Python 3.14
* Tue Feb 04 2025 Paul Howarth <paul@city-fan.org> - 3.5.1-1
  - Update to 3.5.1 (rhbz#2343673)
    - Private key material is now explicitly 'unpadded' during decryption,
      removing a reliance on some lax OpenSSL behavior and making us compatible
      with future Cryptography releases (GH#2490)
* Sat Jan 18 2025 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.0-2
  - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
* Mon Sep 16 2024 Paul Howarth <paul@city-fan.org> - 3.5.0-1
  - Update to 3.5.0 (rhbz#2312503)
    - Add support for AES-GCM encryption ciphers (128 and 256 bit variants)
      (GH#982, GH#2157, GH#2444, rhbz#2311855); this functionality has been
      tested in client mode against OpenSSH 9.0, 9.2 and 9.6, as well as against
      a number of proprietary appliance SSH servers
    - Check for 'None' transport members inside '~paramiko.channel.Channel' when
      closing the channel; this likely doesn't come up much in the real world,
      but was causing warnings in the test suite
* Mon Aug 12 2024 Paul Howarth <paul@city-fan.org> - 3.4.1-1
  - Update to 3.4.1
    - Massage our import of the TripleDES cipher to support Cryptography ≥ 43;
      this should prevent 'CryptographyDeprecationWarning' from appearing upon
      import (GH#2419, GH#2421)
    - Modify a test-harness skiptest check to work with newer versions of
      Cryptography (GH#2420)
    - Fix a 64-bit-ism in the test suite so the tests don't encounter a false
      negative on 32-bit systems (GH#2353)
* Mon Jul 22 2024 Paul Howarth <paul@city-fan.org> - 3.4.0-6
  - Fix detection of SHA1 signing support
    https://github.com/paramiko/paramiko/pull/2420
    https://github.com/pyca/cryptography/issues/11332
    https://github.com/PyO3/pyo3/issues/3059
  - Remove cache Sphinx build folder ".doctrees"
* Fri Jul 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.0-5
  - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
* Sat Jun 08 2024 Python Maint <python-maint@redhat.com> - 3.4.0-4
  - Rebuilt for Python 3.13

Files

/usr/share/doc/python-paramiko-doc
/usr/share/doc/python-paramiko-doc/html
/usr/share/doc/python-paramiko-doc/html/_sources
/usr/share/doc/python-paramiko-doc/html/_sources/api
/usr/share/doc/python-paramiko-doc/html/_sources/api/agent.rst.txt
/usr/share/doc/python-paramiko-doc/html/_sources/api/auth.rst.txt
/usr/share/doc/python-paramiko-doc/html/_sources/api/buffered_pipe.rst.txt
/usr/share/doc/python-paramiko-doc/html/_sources/api/channel.rst.txt
/usr/share/doc/python-paramiko-doc/html/_sources/api/client.rst.txt
/usr/share/doc/python-paramiko-doc/html/_sources/api/config.rst.txt
/usr/share/doc/python-paramiko-doc/html/_sources/api/file.rst.txt
/usr/share/doc/python-paramiko-doc/html/_sources/api/hostkeys.rst.txt
/usr/share/doc/python-paramiko-doc/html/_sources/api/keys.rst.txt
/usr/share/doc/python-paramiko-doc/html/_sources/api/message.rst.txt
/usr/share/doc/python-paramiko-doc/html/_sources/api/packet.rst.txt
/usr/share/doc/python-paramiko-doc/html/_sources/api/pipe.rst.txt
/usr/share/doc/python-paramiko-doc/html/_sources/api/proxy.rst.txt
/usr/share/doc/python-paramiko-doc/html/_sources/api/server.rst.txt
/usr/share/doc/python-paramiko-doc/html/_sources/api/sftp.rst.txt
/usr/share/doc/python-paramiko-doc/html/_sources/api/ssh_exception.rst.txt
/usr/share/doc/python-paramiko-doc/html/_sources/api/transport.rst.txt
/usr/share/doc/python-paramiko-doc/html/_sources/index.rst.txt
/usr/share/doc/python-paramiko-doc/html/_static
/usr/share/doc/python-paramiko-doc/html/_static/alabaster.css
/usr/share/doc/python-paramiko-doc/html/_static/base-stemmer.js
/usr/share/doc/python-paramiko-doc/html/_static/basic.css
/usr/share/doc/python-paramiko-doc/html/_static/custom.css
/usr/share/doc/python-paramiko-doc/html/_static/doctools.js
/usr/share/doc/python-paramiko-doc/html/_static/documentation_options.js
/usr/share/doc/python-paramiko-doc/html/_static/english-stemmer.js
/usr/share/doc/python-paramiko-doc/html/_static/file.png
/usr/share/doc/python-paramiko-doc/html/_static/language_data.js
/usr/share/doc/python-paramiko-doc/html/_static/minus.png
/usr/share/doc/python-paramiko-doc/html/_static/plus.png
/usr/share/doc/python-paramiko-doc/html/_static/pygments.css
/usr/share/doc/python-paramiko-doc/html/_static/searchtools.js
/usr/share/doc/python-paramiko-doc/html/_static/sphinx_highlight.js
/usr/share/doc/python-paramiko-doc/html/api
/usr/share/doc/python-paramiko-doc/html/api/agent.html
/usr/share/doc/python-paramiko-doc/html/api/auth.html
/usr/share/doc/python-paramiko-doc/html/api/buffered_pipe.html
/usr/share/doc/python-paramiko-doc/html/api/channel.html
/usr/share/doc/python-paramiko-doc/html/api/client.html
/usr/share/doc/python-paramiko-doc/html/api/config.html
/usr/share/doc/python-paramiko-doc/html/api/file.html
/usr/share/doc/python-paramiko-doc/html/api/hostkeys.html
/usr/share/doc/python-paramiko-doc/html/api/keys.html
/usr/share/doc/python-paramiko-doc/html/api/message.html
/usr/share/doc/python-paramiko-doc/html/api/packet.html
/usr/share/doc/python-paramiko-doc/html/api/pipe.html
/usr/share/doc/python-paramiko-doc/html/api/proxy.html
/usr/share/doc/python-paramiko-doc/html/api/server.html
/usr/share/doc/python-paramiko-doc/html/api/sftp.html
/usr/share/doc/python-paramiko-doc/html/api/ssh_exception.html
/usr/share/doc/python-paramiko-doc/html/api/transport.html
/usr/share/doc/python-paramiko-doc/html/genindex.html
/usr/share/doc/python-paramiko-doc/html/index.html
/usr/share/doc/python-paramiko-doc/html/objects.inv
/usr/share/doc/python-paramiko-doc/html/py-modindex.html
/usr/share/doc/python-paramiko-doc/html/search.html
/usr/share/doc/python-paramiko-doc/html/searchindex.js


Generated by rpm2html 1.8.1

Fabrice Bellet, Fri May 15 02:36:24 2026