diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2002-06-19 18:01:01 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2002-06-19 18:01:01 +0000 |
commit | 171ba25c335bf855de91621f9b8c35c4dad20fc9 (patch) | |
tree | 3644c73127cb86b94e7a4ddb9c3a4cb5db8c3d42 /usr.bin/ssh/packet.h | |
parent | 8de5c0bca7d16bd7925451896f1d82a4c1147282 (diff) |
make the monitor sync the transfer ssh1 session key;
transfer keycontext only for RC4 (this is still depends on EVP
implementation details and is broken).
Diffstat (limited to 'usr.bin/ssh/packet.h')
-rw-r--r-- | usr.bin/ssh/packet.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/packet.h b/usr.bin/ssh/packet.h index 151ca74a10f..3ff75593adb 100644 --- a/usr.bin/ssh/packet.h +++ b/usr.bin/ssh/packet.h @@ -1,4 +1,4 @@ -/* $OpenBSD: packet.h,v 1.34 2002/03/18 17:16:38 markus Exp $ */ +/* $OpenBSD: packet.h,v 1.35 2002/06/19 18:01:00 markus Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -24,6 +24,7 @@ int packet_get_connection_in(void); int packet_get_connection_out(void); void packet_close(void); void packet_set_encryption_key(const u_char *, u_int, int); +u_int packet_get_encryption_key(u_char *); void packet_set_protocol_flags(u_int); u_int packet_get_protocol_flags(void); void packet_start_compression(int); |