f25b8c9fb4
This change adds OpenSSL 3.5.5 from upstream [1]. The 3.5.5 artifact was been verified via PGP key [2] and by SHA256 checksum [3]. This is a security release, but also contains several bugfixes. All of the CVE-worthy issues have already been addressed on the target branch(es), so the net-result is that this is a bugfix release. More information about the release (from a high level) can be found in the release notes [4]. MFC after: 1 week 1. https://github.com/openssl/openssl/releases/download/openssl-3.5.5/openssl-3.5.5.tar.gz 2. https://github.com/openssl/openssl/releases/download/openssl-3.5.5/openssl-3.5.5.tar.gz.asc 3. https://github.com/openssl/openssl/releases/download/openssl-3.5.5/openssl-3.5.5.tar.gz.sha256 4. https://github.com/openssl/openssl/blob/openssl-3.5.5/NEWS.md Merge commit '808413da28df9fb93e1f304e6016b15e660f54c8'
50 lines
1.1 KiB
C
50 lines
1.1 KiB
C
/*
|
|
* Copyright 2019-2020 The OpenSSL Project Authors. All Rights Reserved.
|
|
*
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
* in the file LICENSE in the source distribution or at
|
|
* https://www.openssl.org/source/license.html
|
|
*/
|
|
|
|
#ifndef OSSL_APPS_FUNCTION_H
|
|
#define OSSL_APPS_FUNCTION_H
|
|
|
|
#include <openssl/lhash.h>
|
|
#include "opt.h"
|
|
|
|
#define DEPRECATED_NO_ALTERNATIVE "unknown"
|
|
|
|
typedef enum FUNC_TYPE {
|
|
FT_none,
|
|
FT_general,
|
|
FT_md,
|
|
FT_cipher,
|
|
FT_pkey,
|
|
FT_md_alg,
|
|
FT_cipher_alg
|
|
} FUNC_TYPE;
|
|
|
|
typedef struct function_st {
|
|
FUNC_TYPE type;
|
|
const char *name;
|
|
int (*func)(int argc, char *argv[]);
|
|
const OPTIONS *help;
|
|
const char *deprecated_alternative;
|
|
const char *deprecated_version;
|
|
} FUNCTION;
|
|
|
|
DEFINE_LHASH_OF_EX(FUNCTION);
|
|
|
|
/* Structure to hold the number of columns to be displayed and the
|
|
* field width used to display them.
|
|
*/
|
|
typedef struct {
|
|
int columns;
|
|
int width;
|
|
} DISPLAY_COLUMNS;
|
|
|
|
void calculate_columns(FUNCTION *functions, DISPLAY_COLUMNS *dc);
|
|
|
|
#endif
|