diff options
author | Michael Weiss | 2020-02-14 22:00:36 +0100 |
---|---|---|
committer | Michael Weiss | 2020-02-14 22:00:36 +0100 |
commit | 57f005854972637f34f0a6ce81da39e89d2a4d3e (patch) | |
tree | d48e5704a1aa0f59127c7011801daa730437ea28 /ssh/config | |
parent | b866980514c365af015e4d4d90bdd492f80aab02 (diff) |
ssh/config: Use rsa-sha2-256 for our "git" host
Since ssh-rsa is based on SHA-1 (I wasn't aware of that :o) and will be
deprecated (hopefully) soon [0].
[0]: https://www.openwall.com/lists/oss-security/2020/02/14/1
Diffstat (limited to 'ssh/config')
-rw-r--r-- | ssh/config | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,7 +1,7 @@ Host git.fsi.uni-tuebingen.de Port 222 User git - HostKeyAlgorithms ssh-rsa + HostKeyAlgorithms rsa-sha2-256 Host luna.fsi.uni-tuebingen.de HostName proxy.fsi.uni-tuebingen.de |