diff options
author | djm@openbsd.org <djm@openbsd.org> | 2017-05-08 01:15:59 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2017-05-08 01:21:22 +0200 |
commit | bd636f40911094a39c2920bf87d2ec340533c152 (patch) | |
tree | 53c4c9655827d6433a26a510f46081dfc4b72b6d /ssherr.h | |
parent | upstream commit (diff) | |
download | openssh-bd636f40911094a39c2920bf87d2ec340533c152.tar.xz openssh-bd636f40911094a39c2920bf87d2ec340533c152.zip |
upstream commit
Refuse RSA keys <1024 bits in length. Improve reporting
for keys that do not meet this requirement. ok markus@
Upstream-ID: b385e2a7b13b1484792ee681daaf79e1e203df6c
Diffstat (limited to 'ssherr.h')
-rw-r--r-- | ssherr.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: ssherr.h,v 1.3 2015/01/30 01:13:33 djm Exp $ */ +/* $OpenBSD: ssherr.h,v 1.4 2017/05/07 23:15:59 djm Exp $ */ /* * Copyright (c) 2011 Damien Miller * @@ -77,6 +77,7 @@ #define SSH_ERR_CONN_TIMEOUT -53 #define SSH_ERR_CONN_CORRUPT -54 #define SSH_ERR_PROTOCOL_ERROR -55 +#define SSH_ERR_KEY_LENGTH -56 /* Translate a numeric error code to a human-readable error string */ const char *ssh_err(int n); |