]>
git.ipfire.org Git - thirdparty/openssl.git/blob - apps/include/function.h
2 * Copyright 2019-2020 The OpenSSL Project Authors. All Rights Reserved.
4 * Licensed under the Apache License 2.0 (the "License"). You may not use
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
10 #ifndef OSSL_APPS_FUNCTION_H
11 # define OSSL_APPS_FUNCTION_H
13 # include <openssl/lhash.h>
16 #define DEPRECATED_NO_ALTERNATIVE "unknown"
18 typedef enum FUNC_TYPE
{
19 FT_none
, FT_general
, FT_md
, FT_cipher
, FT_pkey
,
20 FT_md_alg
, FT_cipher_alg
23 typedef struct function_st
{
26 int (*func
)(int argc
, char *argv
[]);
28 const char *deprecated_alternative
;
29 const char *deprecated_version
;
32 DEFINE_LHASH_OF_EX(FUNCTION
);
34 /* Structure to hold the number of columns to be displayed and the
35 * field width used to display them.
42 void calculate_columns(FUNCTION
*functions
, DISPLAY_COLUMNS
*dc
);