Skip to main content

Parses ssh2 keys and converts to multiple formats.

Project description

ssh2_parse_key

ci documentation pypi version

Parses ssh2 public keys in either openssh or RFC4716/Secsh formats and converts to either format.

At this point any attempt to work with private keys will raise an exception.


Features

  • Reads public keys of the following encryption types:-
    • ssh-rsa
    • ssh-dss
    • ecdsa-sha2-nistp256
    • ssh-ed25519
  • Reads either Openssh or RFC4716 format public keys
  • Can read input sets with either or both formats in
  • Can output either format for any key

Installation

With pip:

python3.6 -m pip install ssh2_parse_key

Usage

To use SSH2 Key Parsing in a project

from ssh2_parse_key import Ssh2Key

# although you can create the object from internal data the normal method
# would be to use the parse() or parse_file() which return a list of Ssh2Key objects.
# Ssh2Key objects are immutable.
# Load one or more keys in either openssh or RFC4716 from a file
keys = Ssh2Key.parse_file("/path/to/public_key")

# alternatively
data = Path("/path/to/public_key").read_text()
keys = Ssh2Key.parse(data)

# now those keys can be dealt with...
for public_key in keys:
    print(f"This is a {key.type} key")
    print(f"It uses {key.encryption} encryption")
    print(f"comment = {key.comment}")
    print(f"subject = {key.subject}")

    print("RFC4716 format representation")
    print(key.rfc4716())

    print("OpenSSH representation")
    print(key.openssh())

Credits

The package is strongly based on the perl Parse::SSH2::PublicKey module.

The class is built using Michael DeHaan's ClassForge object system.

Development on the python version was done by Nigel Metheringham <nigelm@cpan.org>


Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ssh2_parse_key-0.6.1.tar.gz (17.4 kB view details)

Uploaded Source

Built Distribution

ssh2_parse_key-0.6.1-py3-none-any.whl (17.7 kB view details)

Uploaded Python 3

File details

Details for the file ssh2_parse_key-0.6.1.tar.gz.

File metadata

  • Download URL: ssh2_parse_key-0.6.1.tar.gz
  • Upload date:
  • Size: 17.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.3 CPython/3.8.0 Linux/4.15.0-1077-gcp

File hashes

Hashes for ssh2_parse_key-0.6.1.tar.gz
Algorithm Hash digest
SHA256 a8b7692435d61f6a9e0965fee0907f9739564a56b0339ec8cb1ff13a80f8d533
MD5 b6236664aa23b095e280992a75f367c3
BLAKE2b-256 12794e7f2cb52f2778b230322d3218ddd1cb18a39c521de6619ff7d2da7f1452

See more details on using hashes here.

File details

Details for the file ssh2_parse_key-0.6.1-py3-none-any.whl.

File metadata

  • Download URL: ssh2_parse_key-0.6.1-py3-none-any.whl
  • Upload date:
  • Size: 17.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.3 CPython/3.8.0 Linux/4.15.0-1077-gcp

File hashes

Hashes for ssh2_parse_key-0.6.1-py3-none-any.whl
Algorithm Hash digest
SHA256 afc6801b3109ad20a866524fab631c324e9d287f26f28ce525a15ec65239a861
MD5 99ce4379db01240bdc36ff8914b88b83
BLAKE2b-256 d822f06b38f248c67c41414b26ff98f2f1744eaf4ce59c5b94524ec1c312a9e3

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page