| 1246 | } |
| 1247 | |
| 1248 | static void show_version_info_crypto(void) |
| 1249 | { |
| 1250 | const char *error_string; |
| 1251 | const char *list_str; |
| 1252 | |
| 1253 | if (util_is_valid_knet_crypto_model(NULL, &list_str, 1, "", &error_string) != -1) { |
| 1254 | printf("Available crypto models: %s\n", list_str); |
| 1255 | } else { |
| 1256 | perror(error_string); |
| 1257 | } |
| 1258 | } |
| 1259 | |
| 1260 | static void show_version_info_compress(void) |
| 1261 | { |
no test coverage detected