summary refs log tree commit diff
path: root/nixos/modules/services/networking/ssh
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2017-11-21 09:36:51 -0500
committerTim Steinbach <tim@nequissimus.com>2017-11-21 09:36:51 -0500
commit48252b15b9a2431f8770af4a335579e3aea1d4e0 (patch)
tree658e82424690d8f1cf3da75b77987e2b622508be /nixos/modules/services/networking/ssh
parent7cdd12e4e977a39c570442a0728d217ff4ca177a (diff)
downloadnixpkgs-48252b15b9a2431f8770af4a335579e3aea1d4e0.tar
nixpkgs-48252b15b9a2431f8770af4a335579e3aea1d4e0.tar.gz
nixpkgs-48252b15b9a2431f8770af4a335579e3aea1d4e0.tar.bz2
nixpkgs-48252b15b9a2431f8770af4a335579e3aea1d4e0.tar.lz
nixpkgs-48252b15b9a2431f8770af4a335579e3aea1d4e0.tar.xz
nixpkgs-48252b15b9a2431f8770af4a335579e3aea1d4e0.tar.zst
nixpkgs-48252b15b9a2431f8770af4a335579e3aea1d4e0.zip
sshd: Remove ripemd160 MACs
They are invalid for our OpenSSH
Diffstat (limited to 'nixos/modules/services/networking/ssh')
-rw-r--r--nixos/modules/services/networking/ssh/sshd.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/networking/ssh/sshd.nix b/nixos/modules/services/networking/ssh/sshd.nix
index 6c4dcfeda06..f0fddcca766 100644
--- a/nixos/modules/services/networking/ssh/sshd.nix
+++ b/nixos/modules/services/networking/ssh/sshd.nix
@@ -365,7 +365,7 @@ in
 
         KexAlgorithms curve25519-sha256@libssh.org,diffie-hellman-group-exchange-sha256
         Ciphers chacha20-poly1305@openssh.com,aes256-gcm@openssh.com,aes128-gcm@openssh.com,aes256-ctr,aes192-ctr,aes128-ctr
-        MACs hmac-sha2-512-etm@openssh.com,hmac-sha2-256-etm@openssh.com,hmac-ripemd160-etm@openssh.com,umac-128-etm@openssh.com,hmac-sha2-512,hmac-sha2-256,hmac-ripemd160,umac-128@openssh.com
+        MACs hmac-sha2-512-etm@openssh.com,hmac-sha2-256-etm@openssh.com,umac-128-etm@openssh.com,hmac-sha2-512,hmac-sha2-256,umac-128@openssh.com
 
         # LogLevel VERBOSE logs user's key fingerprint on login.
         # Needed to have a clear audit track of which key was used to log in.