With Paramiko, one can set up a SSH key callback like this:
def someCallbackFunction(client, hostname, key):
...
client = SSHClient()
client.load_system_host_keys()
client.set_missing_host_key_policy(someCallbackFunction) # <--
client.connect(...)
The callback gets the SSH client instance, the hostname and a paramiko.RSAKey instance as parameters and must return if the key is accepted, or raise an exception otherwise.
How can I verify the SSH key with the provided parameters? For example, how can I get the RSA fingerprint so that the user can compare it? And is it possible to let Paramiko permanently add the key to "known_hosts"?