github.com/teknogeek/dnscontrol/v2@v2.10.1-0.20200227202244-ae299b55ba42/docs/_functions/domain/SSHFP.md (about)

     1  ---
     2  name: SSHFP
     3  parameters:
     4    - name
     5    - algorithm
     6    - type
     7    - value
     8    - modifiers...
     9  ---
    10  
    11  SSHFP contains a fingerprint of a SSH server which can be validated before SSH clients are establishing the connection.
    12  
    13  **Algorithm** (type of the key)
    14  | ID | Algorithm |
    15  |----|-----------|
    16  | 0  | reserved  |
    17  | 1  | RSA       |
    18  | 2  | DSA       |
    19  | 3  | ECDSA     |
    20  | 4  | ED25519   |
    21  
    22  **Type** (fingerprint format)
    23  | ID | Algorithm |
    24  |----|-----------|
    25  | 0  | reserved  |
    26  | 1  | SHA-1     |
    27  | 2  | SHA-256   |
    28  
    29  `value` is the fingerprint as a string.
    30  
    31  {% include startExample.html %}
    32  {% highlight js %}
    33  
    34  SSHFP('@', 1, 1, '00yourAmazingFingerprint00'),
    35  
    36  {%endhighlight%}
    37  {% include endExample.html %}