jiegec / netconf-rs

A rust library for NETCONF(RFC 6241)
MIT License
4 stars 1 forks source link

Expose SSH security Features #8

Open pnhearer opened 8 months ago

pnhearer commented 8 months ago

I have interest in bringing the encryption mechanisms forward for a more versitile Key Exchange Methods, Encryption Algorithms, Host Key Algorithms. These capabilities are available in the SSH2 crate.

What do you think? Let me know and I'll do a draft pr to check out.

jiegec commented 8 months ago

I have interest in bringing the encryption mechanisms forward for a more versitile Key Exchange Methods, Encryption Algorithms, Host Key Algorithms. These capabilities are available in the SSH2 crate.

What do you think? Let me know and I'll do a draft pr to check out.

Maybe we can ask the user to create the connection with those encryption mechanisms, and hand over the connection to the crate for netconf handling?

pnhearer commented 8 months ago

I think that seems reasonable too but let's build it into the SSH transport struct. I assume that not only a human will use this library but also automation.