Difference between revisions of "Ssh key parsing"

From UVOO Tech Wiki
Jump to navigation Jump to search
(Created page with "https://github.com/nigelm/ssh2_parse_key pip3 install ssh2-parse-key from ssh2_parse_key import Ssh2Key key="SSH2 multiline" key.openssh()")
 
Line 1: Line 1:
 
https://github.com/nigelm/ssh2_parse_key
 
https://github.com/nigelm/ssh2_parse_key
 
+
```
 
pip3 install ssh2-parse-key
 
pip3 install ssh2-parse-key
 
from ssh2_parse_key import Ssh2Key
 
from ssh2_parse_key import Ssh2Key
 
key="SSH2 multiline"
 
key="SSH2 multiline"
 
key.openssh()
 
key.openssh()
 +
```

Revision as of 01:20, 9 March 2022

https://github.com/nigelm/ssh2_parse_key

pip3 install ssh2-parse-key
from ssh2_parse_key import Ssh2Key
key="SSH2 multiline"
key.openssh()