summaryrefslogtreecommitdiff
path: root/monitor_wrap.h
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2016-08-06 10:49:59 +0100
committerColin Watson <cjwatson@debian.org>2016-08-07 12:18:58 +0100
commit477bb7636238c106f8cd7c868a8c0c5eabcfb3db (patch)
tree601176af2ecf358c36b766776a86845ad7a3cd6f /monitor_wrap.h
parent747fac2de0d889183f67f6900194c0462c558544 (diff)
parent4c914ccd85bbf391c4dc61b85e3c178fef465e3f (diff)
New upstream release (7.3p1).
Diffstat (limited to 'monitor_wrap.h')
-rw-r--r--monitor_wrap.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/monitor_wrap.h b/monitor_wrap.h
index d9de551c2..d5b3334dc 100644
--- a/monitor_wrap.h
+++ b/monitor_wrap.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: monitor_wrap.h,v 1.29 2015/12/04 16:41:28 markus Exp $ */ 1/* $OpenBSD: monitor_wrap.h,v 1.30 2016/03/07 19:02:43 djm Exp $ */
2 2
3/* 3/*
4 * Copyright 2002 Niels Provos <provos@citi.umich.edu> 4 * Copyright 2002 Niels Provos <provos@citi.umich.edu>
@@ -46,10 +46,12 @@ void mm_inform_authrole(char *);
46struct passwd *mm_getpwnamallow(const char *); 46struct passwd *mm_getpwnamallow(const char *);
47char *mm_auth2_read_banner(void); 47char *mm_auth2_read_banner(void);
48int mm_auth_password(struct Authctxt *, char *); 48int mm_auth_password(struct Authctxt *, char *);
49int mm_key_allowed(enum mm_keytype, char *, char *, Key *, int); 49int mm_key_allowed(enum mm_keytype, const char *, const char *, Key *, int);
50int mm_user_key_allowed(struct passwd *, Key *, int); 50int mm_user_key_allowed(struct passwd *, Key *, int);
51int mm_hostbased_key_allowed(struct passwd *, char *, char *, Key *); 51int mm_hostbased_key_allowed(struct passwd *, const char *,
52int mm_auth_rhosts_rsa_key_allowed(struct passwd *, char *, char *, Key *); 52 const char *, Key *);
53int mm_auth_rhosts_rsa_key_allowed(struct passwd *, const char *,
54 const char *, Key *);
53int mm_key_verify(Key *, u_char *, u_int, u_char *, u_int); 55int mm_key_verify(Key *, u_char *, u_int, u_char *, u_int);
54int mm_auth_rsa_key_allowed(struct passwd *, BIGNUM *, Key **); 56int mm_auth_rsa_key_allowed(struct passwd *, BIGNUM *, Key **);
55int mm_auth_rsa_verify_response(Key *, BIGNUM *, u_char *); 57int mm_auth_rsa_verify_response(Key *, BIGNUM *, u_char *);