sshkeys 0.3.4

Rust library for parsing OpenSSH certificates and public keys
Documentation
1
2
3
4
5
6
extern crate sshkeys;

fn main() {
    let key = sshkeys::PublicKey::from_path("examples/id_rsa_2048.pub").unwrap();
    println!("{}", key);
}