Home
last modified time | relevance | path

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

/src/crypto/openssh/regress/unittests/authopt/
H A Dtests.c143 opts = sshauthopt_parse(keywords, &errstr); \ in test_authkeys_parse()
160 opts = sshauthopt_parse("", &errstr); in test_authkeys_parse()
166 opts = sshauthopt_parse(" ", &errstr); in test_authkeys_parse()
172 opts = sshauthopt_parse("restrict", &errstr); in test_authkeys_parse()
187 opts = sshauthopt_parse("tunnel=\"1\"", &errstr); in test_authkeys_parse()
194 opts = sshauthopt_parse("tunnel=\"any\"", &errstr); in test_authkeys_parse()
206 opts = sshauthopt_parse(keyword, &errstr); \ in test_authkeys_parse()
210 opts = sshauthopt_parse("restrict,"keyword, &errstr); \ in test_authkeys_parse()
237 opts = sshauthopt_parse(keyword "=" #val, &errstr); \ in test_authkeys_parse()
242 opts = sshauthopt_parse( \ in test_authkeys_parse()
[all …]
/src/crypto/openssh/regress/misc/fuzz-harness/
H A Dauthopt_fuzz.cc20 if ((opts = sshauthopt_parse(cp, NULL)) == NULL) in LLVMFuzzerTestOneInput()
/src/crypto/openssh/
H A Dauth-options.h92 struct sshauthopt *sshauthopt_parse(const char *s, const char **errstr);
H A Dauth2-pubkeyfile.c200 if ((opts = sshauthopt_parse(line_opts, &reason)) == NULL) { in auth_check_principals_line()
301 if ((keyopts = sshauthopt_parse(key_options, &reason)) == NULL) { in auth_check_authkey_line()
H A Dauth-options.c324 sshauthopt_parse(const char *opts, const char **errstrp) in sshauthopt_parse() function