]> andersk Git - openssh.git/commitdiff
- markus@cvs.openbsd.org 2004/05/21 08:43:03
authordtucker <dtucker>
Mon, 24 May 2004 00:14:24 +0000 (00:14 +0000)
committerdtucker <dtucker>
Mon, 24 May 2004 00:14:24 +0000 (00:14 +0000)
     [kex.h moduli.c tildexpand.c]
     add prototypes for -Wall; ok djm

ChangeLog
kex.h
moduli.c
tildexpand.c

index e4409534c12def5f5c9e56adbaa7cc226515ad32..c52c60333393b673fa317282cbb2cac40c841cbd 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -7,6 +7,9 @@
    - dtucker@cvs.openbsd.org 2004/05/20 10:58:05
      [clientloop.c]
      Trivial type fix 0 -> '\0'; ok markus@
+   - markus@cvs.openbsd.org 2004/05/21 08:43:03
+     [kex.h moduli.c tildexpand.c]
+     add prototypes for -Wall; ok djm
 
 20040523
  - (djm) [sshd_config] Explain consequences of UsePAM=yes a little better in 
diff --git a/kex.h b/kex.h
index 52d442e9a7d19b39068f7cc534f714e01f215dca..437735047302ddec4f671fa7743a1648560cf945 100644 (file)
--- a/kex.h
+++ b/kex.h
@@ -1,4 +1,4 @@
-/*     $OpenBSD: kex.h,v 1.33 2003/02/16 17:09:57 markus Exp $ */
+/*     $OpenBSD: kex.h,v 1.34 2004/05/21 08:43:03 markus Exp $ */
 
 /*
  * Copyright (c) 2000, 2001 Markus Friedl.  All rights reserved.
@@ -137,6 +137,9 @@ u_char *
 kexgex_hash(char *, char *, char *, int, char *, int, u_char *, int,
     int, int, int, BIGNUM *, BIGNUM *, BIGNUM *, BIGNUM *, BIGNUM *);
 
+void
+derive_ssh1_session_id(BIGNUM *, BIGNUM *, u_int8_t[8], u_int8_t[16]);
+
 #if defined(DEBUG_KEX) || defined(DEBUG_KEXDH)
 void   dump_digest(char *, u_char *, int);
 #endif
index f72baab3e44b62f2d5da188164473a0558012e85..c8769c0aa5f11f4b5f35da026d141b18ed92143b 100644 (file)
--- a/moduli.c
+++ b/moduli.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: moduli.c,v 1.7 2004/05/09 00:06:47 djm Exp $ */
+/* $OpenBSD: moduli.c,v 1.8 2004/05/21 08:43:03 markus Exp $ */
 /*
  * Copyright 1994 Phil Karn <karn@qualcomm.com>
  * Copyright 1996-1998, 2003 William Allen Simpson <wsimpson@greendragon.com>
@@ -144,6 +144,8 @@ static u_int32_t *LargeSieve, largewords, largetries, largenumbers;
 static u_int32_t largebits, largememory;       /* megabytes */
 static BIGNUM *largebase;
 
+int gen_candidates(FILE *, int, int, BIGNUM *);
+int prime_test(FILE *, FILE *, u_int32_t, u_int32_t);
 
 /*
  * print moduli out in consistent form,
index 40aa11965e4c95ced92fa2414c5e221595ddf438..cedb653b244bfff662cff58e31ee34442cdab11c 100644 (file)
  */
 
 #include "includes.h"
-RCSID("$OpenBSD: tildexpand.c,v 1.14 2004/05/08 00:01:37 deraadt Exp $");
+RCSID("$OpenBSD: tildexpand.c,v 1.15 2004/05/21 08:43:03 markus Exp $");
 
 #include "xmalloc.h"
 #include "log.h"
+#include "misc.h"
 
 /*
  * Expands tildes in the file name.  Returns data allocated by xmalloc.
This page took 0.048483 seconds and 5 git commands to generate.