Parses ssh2 keys and converts to multiple formats.
Project description
ssh2_parse_key
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.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.
Development on the python version was done by
Nigel Metheringham <nigelm@cpan.org>
Project details
Release history Release notifications | RSS feed
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.8.0.tar.gz
(19.0 kB
view details)
Built Distribution
File details
Details for the file ssh2_parse_key-0.8.0.tar.gz
.
File metadata
- Download URL: ssh2_parse_key-0.8.0.tar.gz
- Upload date:
- Size: 19.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.12.2 Darwin/23.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 77ef9e68f45064d3c12e136ba6c0ff0877261034df2c44578111e1dc008dc491 |
|
MD5 | 46bf21fbe21a5a1e3e0218195759fa09 |
|
BLAKE2b-256 | 83178d2ea6007df8f8a8477da368675b4c8f62dd4b9941061c0970e1aa8ce42a |
File details
Details for the file ssh2_parse_key-0.8.0-py3-none-any.whl
.
File metadata
- Download URL: ssh2_parse_key-0.8.0-py3-none-any.whl
- Upload date:
- Size: 19.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.12.2 Darwin/23.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 670b760305706c8ee32dae71211f9e5c29281fd5aadba05253a15c3715812ca3 |
|
MD5 | 45df9a540ebc426c98e03b2951056711 |
|
BLAKE2b-256 | 0da218724d9b1c96d7a35f791b2d325888b620e67ed3a921ceade6a23a336bc5 |