Home
last modified time | relevance | path

Searched refs:sshauthopt_parse (Results 1 – 5 of 5) sorted by relevance

/freebsd/crypto/openssh/regress/unittests/authopt/
H A Dtests.c141 opts = sshauthopt_parse(keywords, &errstr); \ in test_authkeys_parse()
159 opts = sshauthopt_parse("", &errstr); in test_authkeys_parse()
165 opts = sshauthopt_parse(" ", &errstr); in test_authkeys_parse()
171 opts = sshauthopt_parse("restrict", &errstr); in test_authkeys_parse()
186 opts = sshauthopt_parse("tunnel=\"1\"", &errstr); in test_authkeys_parse()
193 opts = sshauthopt_parse("tunnel=\"any\"", &errstr); in test_authkeys_parse()
205 opts = sshauthopt_parse(keyword, &errstr); \ in test_authkeys_parse()
209 opts = sshauthopt_parse("restrict,"keyword, &errstr); \ in test_authkeys_parse()
236 opts = sshauthopt_parse(keyword "=" #val, &errstr); \ in test_authkeys_parse()
241 opts = sshauthopt_parse( \ in test_authkeys_parse()
[all …]
/freebsd/crypto/openssh/regress/misc/fuzz-harness/
H A Dauthopt_fuzz.cc20 if ((opts = sshauthopt_parse(cp, NULL)) == NULL) in LLVMFuzzerTestOneInput()
/freebsd/crypto/openssh/
H A Dauth-options.h92 struct sshauthopt *sshauthopt_parse(const char *s, const char **errstr);
H A Dauth2-pubkeyfile.c204 if ((opts = sshauthopt_parse(line_opts, &reason)) == NULL) { in auth_check_principals_line()
305 if ((keyopts = sshauthopt_parse(key_options, &reason)) == NULL) { in auth_check_authkey_line()
H A Dauth-options.c322 sshauthopt_parse(const char *opts, const char **errstrp) in sshauthopt_parse() function