Home | History | Annotate | Download | only in openssh

Lines Matching refs:method

49 audit_classify_auth(const char *method)
51 if (strcmp(method, "none") == 0)
53 else if (strcmp(method, "password") == 0)
55 else if (strcmp(method, "publickey") == 0 ||
56 strcmp(method, "rsa") == 0)
58 else if (strncmp(method, "keyboard-interactive", 20) == 0 ||
59 strcmp(method, "challenge-response") == 0)
61 else if (strcmp(method, "hostbased") == 0 ||
62 strcmp(method, "rhosts-rsa") == 0)
64 else if (strcmp(method, "gssapi-with-mic") == 0)