| 34 | } |
| 35 | |
| 36 | std::vector<String> PKIVerifyCommand::GetArgumentSuggestions(const String& argument, const String& word) const |
| 37 | { |
| 38 | if (argument == "cert" || argument == "cacert" || argument == "crl") |
| 39 | return GetBashCompletionSuggestions("file", word); |
| 40 | else |
| 41 | return CLICommand::GetArgumentSuggestions(argument, word); |
| 42 | } |
| 43 | |
| 44 | /** |
| 45 | * The entry point for the "pki verify" CLI command. |
nothing calls this directly
no outgoing calls
no test coverage detected