summaryrefslogtreecommitdiff
path: root/auth.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2013-07-20 13:21:52 +1000
committerDamien Miller <djm@mindrot.org>2013-07-20 13:21:52 +1000
commit85b45e09188e7a7fc8f0a900a4c6a0f04a5720a7 (patch)
tree575942d7e7a835c3b89b59eb0e9e0ecf34f1811b /auth.h
parentd93340cbb6bc0fc0dbd4427e0cec6d994a494dd9 (diff)
- markus@cvs.openbsd.org 2013/07/19 07:37:48
[auth.h kex.h kexdhs.c kexecdhs.c kexgexs.c monitor.c servconf.c] [servconf.h session.c sshd.c sshd_config.5] add ssh-agent(1) support to sshd(8); allows encrypted hostkeys, or hostkeys on smartcards; most of the work by Zev Weiss; bz #1974 ok djm@
Diffstat (limited to 'auth.h')
-rw-r--r--auth.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/auth.h b/auth.h
index caf44adc0..80f089869 100644
--- a/auth.h
+++ b/auth.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: auth.h,v 1.75 2013/06/21 00:34:49 djm Exp $ */ 1/* $OpenBSD: auth.h,v 1.76 2013/07/19 07:37:48 markus Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2000 Markus Friedl. All rights reserved. 4 * Copyright (c) 2000 Markus Friedl. All rights reserved.
@@ -198,10 +198,12 @@ check_key_in_hostfiles(struct passwd *, Key *, const char *,
198 198
199/* hostkey handling */ 199/* hostkey handling */
200Key *get_hostkey_by_index(int); 200Key *get_hostkey_by_index(int);
201Key *get_hostkey_public_by_index(int);
201Key *get_hostkey_public_by_type(int); 202Key *get_hostkey_public_by_type(int);
202Key *get_hostkey_private_by_type(int); 203Key *get_hostkey_private_by_type(int);
203int get_hostkey_index(Key *); 204int get_hostkey_index(Key *);
204int ssh1_session_key(BIGNUM *); 205int ssh1_session_key(BIGNUM *);
206void sshd_hostkey_sign(Key *, Key *, u_char **, u_int *, u_char *, u_int);
205 207
206/* debug messages during authentication */ 208/* debug messages during authentication */
207void auth_debug_add(const char *fmt,...) __attribute__((format(printf, 1, 2))); 209void auth_debug_add(const char *fmt,...) __attribute__((format(printf, 1, 2)));