mirror of
https://github.com/opnsense/src.git
synced 2026-04-23 15:19:31 -04:00
34 lines
1.4 KiB
C
34 lines
1.4 KiB
C
|
|
/* SPDX-License-Identifier: BSD-3-Clause */
|
||
|
|
/* Copyright(c) 2007-2022 Intel Corporation */
|
||
|
|
/* $FreeBSD$ */
|
||
|
|
#ifndef SAL_STATISTICS_STRINGS_H
|
||
|
|
#define SAL_STATISTICS_STRINGS_H
|
||
|
|
|
||
|
|
/*
|
||
|
|
* Config values names for statistics
|
||
|
|
*/
|
||
|
|
#define SAL_STATS_CFG_ENABLED "statsGeneral"
|
||
|
|
/**< Config value name for enabling/disabling statistics */
|
||
|
|
#define SAL_STATS_CFG_DC "statsDc"
|
||
|
|
/**< Config value name for enabling/disabling Compression statistics */
|
||
|
|
#define SAL_STATS_CFG_DH "statsDh"
|
||
|
|
/**< Config value name for enabling/disabling Diffie-Helman statistics */
|
||
|
|
#define SAL_STATS_CFG_DRBG "statsDrbg"
|
||
|
|
/**< Config value name for enabling/disabling DRBG statistics */
|
||
|
|
#define SAL_STATS_CFG_DSA "statsDsa"
|
||
|
|
/**< Config value name for enabling/disabling DSA statistics */
|
||
|
|
#define SAL_STATS_CFG_ECC "statsEcc"
|
||
|
|
/**< Config value name for enabling/disabling ECC statistics */
|
||
|
|
#define SAL_STATS_CFG_KEYGEN "statsKeyGen"
|
||
|
|
/**< Config value name for enabling/disabling Key Gen statistics */
|
||
|
|
#define SAL_STATS_CFG_LN "statsLn"
|
||
|
|
/**< Config value name for enabling/disabling Large Number statistics */
|
||
|
|
#define SAL_STATS_CFG_PRIME "statsPrime"
|
||
|
|
/**< Config value name for enabling/disabling Prime statistics */
|
||
|
|
#define SAL_STATS_CFG_RSA "statsRsa"
|
||
|
|
/**< Config value name for enabling/disabling RSA statistics */
|
||
|
|
#define SAL_STATS_CFG_SYM "statsSym"
|
||
|
|
/**< Config value name for enabling/disabling Symmetric Crypto statistics */
|
||
|
|
|
||
|
|
#endif
|