diff options
author | 2002-03-29 19:18:33 +0000 | |
---|---|---|
committer | 2002-03-29 19:18:33 +0000 | |
commit | 19bb610c2a6bdda2743e8d5cb9d7d9d42682c63d (patch) | |
tree | 54d64520efb0eb21c8d8eacf341c8f5b9a669479 /usr.bin/ssh/ssh.h | |
parent | RSA key modulus size minimum 768; ok markus@ (diff) | |
download | wireguard-openbsd-19bb610c2a6bdda2743e8d5cb9d7d9d42682c63d.tar.xz wireguard-openbsd-19bb610c2a6bdda2743e8d5cb9d7d9d42682c63d.zip |
make RSA modulus minimum #define; ok markus@
Diffstat (limited to 'usr.bin/ssh/ssh.h')
-rw-r--r-- | usr.bin/ssh/ssh.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/ssh/ssh.h b/usr.bin/ssh/ssh.h index e8bb6d4213b..a28acc6547f 100644 --- a/usr.bin/ssh/ssh.h +++ b/usr.bin/ssh/ssh.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh.h,v 1.65 2002/03/20 19:12:25 stevesk Exp $ */ +/* $OpenBSD: ssh.h,v 1.66 2002/03/29 19:18:33 stevesk Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -92,4 +92,7 @@ */ #define SSH_PRIVSEP_USER "nobody" +/* Minimum modulus size (n) for RSA keys. */ +#define SSH_RSA_MINIMUM_MODULUS_SIZE 768 + #endif /* SSH_H */ |