Revision 340ae7da doc/design-ssh-setup.rst

b/doc/design-ssh-setup.rst
66 66
  authorization. See below for definition.
67 67

  
68 68
Lists of SSH keys use a tuple with three values. The first describes the
69
key variant (``rsa`` or ``dsa``). The second and third are the public
70
and private part of the key. Example:
69
key variant (``rsa`` or ``dsa``). The second and third are the private
70
and public part of the key. Example:
71 71

  
72 72
.. highlight:: javascript
73 73

  
74 74
::
75 75

  
76 76
  [
77
    ("rsa", "AAAA...", "-----BEGIN RSA PRIVATE KEY-----..."),
78
    ("dsa", "AAAA...", "-----BEGIN DSA PRIVATE KEY-----..."),
77
    ("rsa", "-----BEGIN RSA PRIVATE KEY-----...", "ssh-rss AAAA..."),
78
    ("dsa", "-----BEGIN DSA PRIVATE KEY-----...", "ssh-dss AAAA..."),
79 79
  ]
80 80

  
81 81
.. vim: set textwidth=72 :

Also available in: Unified diff