diff options
author | Hans Nilsson <[email protected]> | 2015-11-10 12:35:31 +0100 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2015-11-11 11:42:27 +0100 |
commit | 6a885ee06515c2a8dfa3e0594123ef76cda9672a (patch) | |
tree | f250633dbf218371060f238182198ed708136a63 /lib | |
parent | 13b4186f902ca250b86ffffb11f79a2778b4d167 (diff) | |
download | otp-6a885ee06515c2a8dfa3e0594123ef76cda9672a.tar.gz otp-6a885ee06515c2a8dfa3e0594123ef76cda9672a.tar.bz2 otp-6a885ee06515c2a8dfa3e0594123ef76cda9672a.zip |
ssh: updated ssh_app.xml with ecdsa info
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ssh/doc/src/ssh_app.xml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/lib/ssh/doc/src/ssh_app.xml b/lib/ssh/doc/src/ssh_app.xml index 4c85585820..0baa44a6a7 100644 --- a/lib/ssh/doc/src/ssh_app.xml +++ b/lib/ssh/doc/src/ssh_app.xml @@ -62,10 +62,13 @@ <item><c>authorized_keys2</c></item> <item><c>id_dsa</c></item> <item><c>id_rsa</c></item> + <item><c>id_ecdsa</c></item> <item><c>ssh_host_dsa_key</c></item> <item><c>ssh_host_rsa_key</c></item> + <item><c>ssh_host_ecdsa_key</c></item> </list> <p>By default, <c>ssh</c> looks for <c>id_dsa</c>, <c>id_rsa</c>, + <c>id_ecdsa_key</c>, <c>known_hosts</c>, and <c>authorized_keys</c> in ~/.ssh, and for the host key files in <c>/etc/ssh</c>. These locations can be changed by the options <c>user_dir</c> and <c>system_dir</c>. @@ -79,7 +82,7 @@ </section> <section> <title>Public Keys</title> - <p><c>id_dsa</c> and <c>id_rsa</c> are the users private key files. + <p><c>id_dsa</c>, <c>id_rsa</c> and <c>id_ecdsa</c> are the users private key files. Notice that the public key is part of the private key so the <c>ssh</c> application does not use the <c>id_<*>.pub</c> files. These are for the user's convenience when it is needed to convey the user's @@ -104,8 +107,8 @@ <section> <title>Host Keys</title> <p>RSA and DSA host keys are supported and are - expected to be found in files named <c>ssh_host_rsa_key</c> and - <c>ssh_host_dsa_key</c>. + expected to be found in files named <c>ssh_host_rsa_key</c>, + <c>ssh_host_dsa_key</c> and <c>ssh_host_ecdsa_key</c>. </p> </section> <section> |