Symbol: sshauthopt
regress/usr.bin/ssh/unittests/authopt/tests.c
133
struct sshauthopt *opts, *expected;
regress/usr.bin/ssh/unittests/authopt/tests.c
290
struct sshauthopt *opts, *expected;
regress/usr.bin/ssh/unittests/authopt/tests.c
35
static struct sshauthopt *
regress/usr.bin/ssh/unittests/authopt/tests.c
377
struct sshauthopt *key_opts, *cert_opts, *merge_opts, *expected;
regress/usr.bin/ssh/unittests/authopt/tests.c
38
struct sshauthopt *ret = sshauthopt_new();
regress/usr.bin/ssh/unittests/authopt/tests.c
49
static struct sshauthopt *
regress/usr.bin/ssh/unittests/authopt/tests.c
52
struct sshauthopt *ret = sshauthopt_new();
regress/usr.bin/ssh/unittests/authopt/tests.c
85
compare_opts(const struct sshauthopt *opts,
regress/usr.bin/ssh/unittests/authopt/tests.c
86
const struct sshauthopt *expected)
usr.bin/ssh/auth-options.c
190
struct sshauthopt *
usr.bin/ssh/auth-options.c
193
struct sshauthopt *ret;
usr.bin/ssh/auth-options.c
202
sshauthopt_free(struct sshauthopt *opts)
usr.bin/ssh/auth-options.c
229
struct sshauthopt *
usr.bin/ssh/auth-options.c
232
struct sshauthopt *ret = NULL;
usr.bin/ssh/auth-options.c
319
struct sshauthopt *
usr.bin/ssh/auth-options.c
324
struct sshauthopt *ret = NULL;
usr.bin/ssh/auth-options.c
498
struct sshauthopt *
usr.bin/ssh/auth-options.c
501
struct sshauthopt *ret;
usr.bin/ssh/auth-options.c
529
struct sshauthopt *
usr.bin/ssh/auth-options.c
530
sshauthopt_merge(const struct sshauthopt *primary,
usr.bin/ssh/auth-options.c
531
const struct sshauthopt *additional, const char **errstrp)
usr.bin/ssh/auth-options.c
533
struct sshauthopt *ret;
usr.bin/ssh/auth-options.c
656
struct sshauthopt *
usr.bin/ssh/auth-options.c
657
sshauthopt_copy(const struct sshauthopt *orig)
usr.bin/ssh/auth-options.c
659
struct sshauthopt *ret;
usr.bin/ssh/auth-options.c
72
cert_option_list(struct sshauthopt *opts, struct sshbuf *oblob,
usr.bin/ssh/auth-options.c
794
sshauthopt_serialise(const struct sshauthopt *opts, struct sshbuf *m,
usr.bin/ssh/auth-options.c
846
sshauthopt_deserialise(struct sshbuf *m, struct sshauthopt **optsp)
usr.bin/ssh/auth-options.c
848
struct sshauthopt *opts = NULL;
usr.bin/ssh/auth-options.h
103
struct sshauthopt *sshauthopt_merge(const struct sshauthopt *primary,
usr.bin/ssh/auth-options.h
104
const struct sshauthopt *additional, const char **errstrp);
usr.bin/ssh/auth-options.h
81
struct sshauthopt *sshauthopt_new(void);
usr.bin/ssh/auth-options.h
82
struct sshauthopt *sshauthopt_new_with_keys_defaults(void);
usr.bin/ssh/auth-options.h
83
void sshauthopt_free(struct sshauthopt *opts);
usr.bin/ssh/auth-options.h
84
struct sshauthopt *sshauthopt_copy(const struct sshauthopt *orig);
usr.bin/ssh/auth-options.h
85
int sshauthopt_serialise(const struct sshauthopt *opts, struct sshbuf *m, int);
usr.bin/ssh/auth-options.h
86
int sshauthopt_deserialise(struct sshbuf *m, struct sshauthopt **opts);
usr.bin/ssh/auth-options.h
92
struct sshauthopt *sshauthopt_parse(const char *s, const char **errstr);
usr.bin/ssh/auth-options.h
98
struct sshauthopt *sshauthopt_from_cert(struct sshkey *k);
usr.bin/ssh/auth.c
592
auth_log_authopts(const char *loc, const struct sshauthopt *opts, int do_remote)
usr.bin/ssh/auth.c
662
auth_activate_options(struct ssh *ssh, struct sshauthopt *opts)
usr.bin/ssh/auth.c
664
struct sshauthopt *old = auth_opts;
usr.bin/ssh/auth.c
680
struct sshauthopt *restricted;
usr.bin/ssh/auth.c
70
extern struct sshauthopt *auth_opts;
usr.bin/ssh/auth.h
134
int, struct sshauthopt **);
usr.bin/ssh/auth.h
195
int auth_activate_options(struct ssh *, struct sshauthopt *);
usr.bin/ssh/auth.h
197
void auth_log_authopts(const char *, const struct sshauthopt *, int);
usr.bin/ssh/auth.h
208
int auth_authorise_keyopts(struct passwd *, struct sshauthopt *, int,
usr.bin/ssh/auth.h
211
const char *, struct sshauthopt **);
usr.bin/ssh/auth.h
213
const struct sshkey_cert *, struct sshauthopt **);
usr.bin/ssh/auth.h
215
char *, const char *, const char *, const char *, struct sshauthopt **);
usr.bin/ssh/auth.h
217
struct sshkey *, const char *, const char *, struct sshauthopt **);
usr.bin/ssh/auth.h
44
struct sshauthopt;
usr.bin/ssh/auth2-pubkey.c
318
struct sshkey_cert *cert, struct sshauthopt **authoptsp)
usr.bin/ssh/auth2-pubkey.c
324
struct sshauthopt *opts = NULL;
usr.bin/ssh/auth2-pubkey.c
375
const char *conn_id, const char *rdomain, struct sshauthopt **authoptsp)
usr.bin/ssh/auth2-pubkey.c
513
const char *conn_id, const char *rdomain, struct sshauthopt **authoptsp)
usr.bin/ssh/auth2-pubkey.c
517
struct sshauthopt *principals_opts = NULL, *cert_opts = NULL;
usr.bin/ssh/auth2-pubkey.c
518
struct sshauthopt *final_opts = NULL;
usr.bin/ssh/auth2-pubkey.c
626
struct sshauthopt **authoptsp)
usr.bin/ssh/auth2-pubkey.c
655
const char *conn_id, const char *rdomain, struct sshauthopt **authoptsp)
usr.bin/ssh/auth2-pubkey.c
790
int auth_attempt, struct sshauthopt **authoptsp)
usr.bin/ssh/auth2-pubkey.c
794
struct sshauthopt *opts = NULL;
usr.bin/ssh/auth2-pubkey.c
98
struct sshauthopt *authopts = NULL;
usr.bin/ssh/auth2-pubkeyfile.c
176
const char *loc, struct sshauthopt **authoptsp)
usr.bin/ssh/auth2-pubkeyfile.c
181
struct sshauthopt *opts = NULL;
usr.bin/ssh/auth2-pubkeyfile.c
226
const struct sshkey_cert *cert, struct sshauthopt **authoptsp)
usr.bin/ssh/auth2-pubkeyfile.c
269
struct sshauthopt **authoptsp)
usr.bin/ssh/auth2-pubkeyfile.c
273
struct sshauthopt *keyopts = NULL, *certopts = NULL, *finalopts = NULL;
usr.bin/ssh/auth2-pubkeyfile.c
420
const char *remote_host, struct sshauthopt **authoptsp)
usr.bin/ssh/auth2-pubkeyfile.c
55
auth_authorise_keyopts(struct passwd *pw, struct sshauthopt *opts,
usr.bin/ssh/monitor.c
1063
struct sshauthopt *opts = NULL;
usr.bin/ssh/monitor.c
133
static struct sshauthopt *key_opts = NULL;
usr.bin/ssh/monitor.c
97
extern struct sshauthopt *auth_opts; /* XXX move to permanent ssh->authctxt? */
usr.bin/ssh/monitor_wrap.c
494
int pubkey_auth_attempt, struct sshauthopt **authoptp)
usr.bin/ssh/monitor_wrap.c
509
struct sshkey *key, int pubkey_auth_attempt, struct sshauthopt **authoptp)
usr.bin/ssh/monitor_wrap.c
513
struct sshauthopt *opts = NULL;
usr.bin/ssh/monitor_wrap.h
41
struct sshauthopt;
usr.bin/ssh/monitor_wrap.h
58
int, struct sshauthopt **);
usr.bin/ssh/monitor_wrap.h
60
struct sshauthopt **);
usr.bin/ssh/serverloop.c
82
extern struct sshauthopt *auth_opts;
usr.bin/ssh/session.c
125
extern struct sshauthopt *auth_opts;
usr.bin/ssh/session.c
253
set_fwdpermit_from_authopts(struct ssh *ssh, const struct sshauthopt *opts)
usr.bin/ssh/sshd-auth.c
144
struct sshauthopt *auth_opts = NULL;
usr.bin/ssh/sshd-session.c
159
struct sshauthopt *auth_opts = NULL;