diff options
Diffstat (limited to 'auth.h')
-rw-r--r-- | auth.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: auth.h,v 1.98 2019/01/19 21:41:18 djm Exp $ */ | 1 | /* $OpenBSD: auth.h,v 1.99 2019/01/19 21:43:56 djm Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Copyright (c) 2000 Markus Friedl. All rights reserved. | 4 | * Copyright (c) 2000 Markus Friedl. All rights reserved. |
@@ -132,8 +132,8 @@ auth_rhosts2(struct passwd *, const char *, const char *, const char *); | |||
132 | 132 | ||
133 | int auth_password(struct ssh *, const char *); | 133 | int auth_password(struct ssh *, const char *); |
134 | 134 | ||
135 | int hostbased_key_allowed(struct passwd *, const char *, char *, | 135 | int hostbased_key_allowed(struct ssh *, struct passwd *, |
136 | struct sshkey *); | 136 | const char *, char *, struct sshkey *); |
137 | int user_key_allowed(struct ssh *, struct passwd *, struct sshkey *, int, | 137 | int user_key_allowed(struct ssh *, struct passwd *, struct sshkey *, int, |
138 | struct sshauthopt **); | 138 | struct sshauthopt **); |
139 | int auth2_key_already_used(Authctxt *, const struct sshkey *); | 139 | int auth2_key_already_used(Authctxt *, const struct sshkey *); |
@@ -208,8 +208,8 @@ struct sshkey *get_hostkey_public_by_index(int, struct ssh *); | |||
208 | struct sshkey *get_hostkey_public_by_type(int, int, struct ssh *); | 208 | struct sshkey *get_hostkey_public_by_type(int, int, struct ssh *); |
209 | struct sshkey *get_hostkey_private_by_type(int, int, struct ssh *); | 209 | struct sshkey *get_hostkey_private_by_type(int, int, struct ssh *); |
210 | int get_hostkey_index(struct sshkey *, int, struct ssh *); | 210 | int get_hostkey_index(struct sshkey *, int, struct ssh *); |
211 | int sshd_hostkey_sign(struct sshkey *, struct sshkey *, u_char **, | 211 | int sshd_hostkey_sign(struct ssh *, struct sshkey *, struct sshkey *, |
212 | size_t *, const u_char *, size_t, const char *, u_int); | 212 | u_char **, size_t *, const u_char *, size_t, const char *); |
213 | 213 | ||
214 | /* Key / cert options linkage to auth layer */ | 214 | /* Key / cert options linkage to auth layer */ |
215 | const struct sshauthopt *auth_options(struct ssh *); | 215 | const struct sshauthopt *auth_options(struct ssh *); |