diff options
author | 2017-05-07 23:15:59 +0000 | |
---|---|---|
committer | 2017-05-07 23:15:59 +0000 | |
commit | 654a3af37af2adf2c38e16bc892cb8e5cfc320d1 (patch) | |
tree | 2f1ab94421136cf56d7ea268c74dd373b1f40b21 /usr.bin/ssh/ssh.h | |
parent | Don't offer CBC ciphers by default in the client. ok markus@ (diff) | |
download | wireguard-openbsd-654a3af37af2adf2c38e16bc892cb8e5cfc320d1.tar.xz wireguard-openbsd-654a3af37af2adf2c38e16bc892cb8e5cfc320d1.zip |
Refuse RSA keys <1024 bits in length. Improve reporting for keys that
do not meet this requirement. ok markus@
Diffstat (limited to 'usr.bin/ssh/ssh.h')
-rw-r--r-- | usr.bin/ssh/ssh.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/usr.bin/ssh/ssh.h b/usr.bin/ssh/ssh.h index d562405a0a2..d34454b3096 100644 --- a/usr.bin/ssh/ssh.h +++ b/usr.bin/ssh/ssh.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh.h,v 1.86 2017/05/03 21:08:09 naddy Exp $ */ +/* $OpenBSD: ssh.h,v 1.87 2017/05/07 23:15:59 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -96,8 +96,5 @@ */ #define SSH_PRIVSEP_USER "sshd" -/* Minimum modulus size (n) for RSA keys. */ -#define SSH_RSA_MINIMUM_MODULUS_SIZE 768 - /* Listen backlog for sshd, ssh-agent and forwarding sockets */ #define SSH_LISTEN_BACKLOG 128 |