summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/ssh.h
diff options
context:
space:
mode:
authorNiels Provos <provos@cvs.openbsd.org>2000-10-11 04:02:19 +0000
committerNiels Provos <provos@cvs.openbsd.org>2000-10-11 04:02:19 +0000
commit8ef2c7e4d780ac0f723a5d73bf24723ed8ef3cbd (patch)
tree0564ffe59ef6df32e25ab2ae8b01b6c2aa9115b6 /usr.bin/ssh/ssh.h
parentf51b9361bdced13cc5b955d542ca6120d8b62be7 (diff)
First rough implementation of the diffie-hellman group exchange. The
client can ask the server for bigger groups to perform the diffie-hellman in, thus increasing the attack complexity when using ciphers with longer keys. University of Windsor provided network, T the company.
Diffstat (limited to 'usr.bin/ssh/ssh.h')
-rw-r--r--usr.bin/ssh/ssh.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/ssh.h b/usr.bin/ssh/ssh.h
index 0200307690e..3092d220e58 100644
--- a/usr.bin/ssh/ssh.h
+++ b/usr.bin/ssh/ssh.h
@@ -12,7 +12,7 @@
* called by a name other than "ssh" or "Secure Shell".
*/
-/* RCSID("$OpenBSD: ssh.h,v 1.51 2000/09/12 20:53:10 markus Exp $"); */
+/* RCSID("$OpenBSD: ssh.h,v 1.52 2000/10/11 04:02:17 provos Exp $"); */
#ifndef SSH_H
#define SSH_H
@@ -81,6 +81,7 @@
#define SERVER_CONFIG_FILE ETCDIR "/sshd_config"
#define HOST_CONFIG_FILE ETCDIR "/ssh_config"
#define HOST_DSA_KEY_FILE ETCDIR "/ssh_host_dsa_key"
+#define DH_PRIMES ETCDIR "/primes"
#define SSH_PROGRAM "/usr/bin/ssh"