summaryrefslogtreecommitdiff
path: root/compat.h
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-03-24 00:35:19 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-03-24 00:35:19 +0000
commitc8530c7f5c6775443a1c4818f5edb8a74e59c0e6 (patch)
tree3ce46d0fc1f607164822bff616b0890a4b3758c8 /compat.h
parentb94f8b2bcb41e3ecb345bcbd710ff8725f5f0e1e (diff)
- djm@cvs.openbsd.org 2001/03/23 11:04:07
[compat.c compat.h sshconnect2.c sshd.c] Compat for OpenSSH with broken Rijndael/AES. ok markus@
Diffstat (limited to 'compat.h')
-rw-r--r--compat.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/compat.h b/compat.h
index 41d6af0fb..707726fa9 100644
--- a/compat.h
+++ b/compat.h
@@ -21,7 +21,7 @@
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 */ 23 */
24/* RCSID("$OpenBSD: compat.h,v 1.18 2001/03/18 23:30:55 deraadt Exp $"); */ 24/* RCSID("$OpenBSD: compat.h,v 1.19 2001/03/23 11:04:06 djm Exp $"); */
25 25
26#ifndef COMPAT_H 26#ifndef COMPAT_H
27#define COMPAT_H 27#define COMPAT_H
@@ -43,11 +43,13 @@
43#define SSH_BUG_PKOK 0x0200 43#define SSH_BUG_PKOK 0x0200
44#define SSH_BUG_PASSWORDPAD 0x0400 44#define SSH_BUG_PASSWORDPAD 0x0400
45#define SSH_BUG_SCANNER 0x0800 45#define SSH_BUG_SCANNER 0x0800
46#define SSH_BUG_BIGENDIANAES 0x1000
46 47
47void enable_compat13(void); 48void enable_compat13(void);
48void enable_compat20(void); 49void enable_compat20(void);
49void compat_datafellows(const char *s); 50void compat_datafellows(const char *s);
50int proto_spec(const char *spec); 51int proto_spec(const char *spec);
52char *compat_cipher_proposal(char *cipher_prop);
51extern int compat13; 53extern int compat13;
52extern int compat20; 54extern int compat20;
53extern int datafellows; 55extern int datafellows;