fingerprints.tmpl 1.4 KB

123456789101112131415161718192021222324252627
  1. {{template "base/head" .}}
  2. <div id="fingerprints-div">
  3. <div class="ui middle very relaxed page grid">
  4. The SSH fingerprints on this page can be used to verify the authenticity
  5. of the NotABug.org git server when connecting over SSH for the first time.
  6. <pre>$ git clone git@notabug.org:my-user/my-project.git
  7. Cloning into 'my-project'...
  8. The authenticity of host 'notabug.org (NNN.NNN.NNN.NNN)' can't be established.
  9. ECDSA key fingerprint is SHA256:COMPARE-THIS-TO-THE-ECDSA-SHA256-ENTRY-BELOW.
  10. Are you sure you want to continue connecting (yes/no)?</pre>
  11. <table id="fingerprints-table">
  12. <th colspan="2">NotABug.org SSH Fingerprints</h2>
  13. <tr><td>(DSA)</td><td>SHA256:3Gfd/hCr2FAnV34U/LKO93m14yD7JnJOfZPub2sK7No</td></tr>
  14. <tr><td>(ECDSA)</td><td>SHA256:tv7X1j2jOYPgztNC+3KYh2E751I01Y7vHWS83uax8jQ</td></tr>
  15. <tr><td>(ED25519)</td><td>SHA256:BtR8pJSuIPDCUT5DJ0kk/Sxspp9dgWf5p3EE0OUQe3g</td></tr>
  16. <tr><td>(RSA)</td><td>SHA256:C3P4FLq03YMBgA0ipZrw8AvYLQsq54I1lYUPhPKI5iE</td></tr>
  17. <tr><td>(DSA)</td><td>MD5:c3:27:ea:d8:08:52:f7:c5:5a:68:4d:37:c3:50:32:35</td></tr>
  18. <tr><td>(ECDSA)</td><td>MD5:44:1a:ae:46:fe:c9:a7:f9:99:77:21:56:bc:02:47:de</td></tr>
  19. <tr><td>(ED25519)</td><td>MD5:fe:ec:8b:51:90:05:bc:3f:dd:21:94:31:46:12:72:d6</td></tr>
  20. <tr><td>(RSA)</td><td>MD5:b2:de:dc:04:31:c4:18:85:10:ee:c9:d7:e4:60:57:7d</td></tr>
  21. </table>
  22. </div>
  23. </div>
  24. {{template "base/footer" .}}