| Line | Source | Count |
| 1 | | - |
| 2 | | - |
| 3 | | - |
| 4 | | - |
| 5 | | - |
| 6 | | - |
| 7 | | - |
| 8 | | - |
| 9 | | - |
| 10 | | - |
| 11 | #include <openssl/err.h> | - |
| 12 | #include <openssl/dherr.h> | - |
| 13 | | - |
| 14 | #ifndef OPENSSL_NO_ERR | - |
| 15 | | - |
| 16 | static const ERR_STRING_DATA DH_str_functs[] = { | - |
| 17 | {ERR_PACK(ERR_LIB_DH, DH_F_COMPUTE_KEY, 0), "compute_key"}, | - |
| 18 | {ERR_PACK(ERR_LIB_DH, DH_F_DHPARAMS_PRINT_FP, 0), "DHparams_print_fp"}, | - |
| 19 | {ERR_PACK(ERR_LIB_DH, DH_F_DH_BUILTIN_GENPARAMS, 0), | - |
| 20 | "dh_builtin_genparams"}, | - |
| 21 | {ERR_PACK(ERR_LIB_DH, DH_F_DH_CHECK_EX, 0), "DH_check_ex"}, | - |
| 22 | {ERR_PACK(ERR_LIB_DH, DH_F_DH_CHECK_PARAMS_EX, 0), "DH_check_params_ex"}, | - |
| 23 | {ERR_PACK(ERR_LIB_DH, DH_F_DH_CHECK_PUB_KEY_EX, 0), "DH_check_pub_key_ex"}, | - |
| 24 | {ERR_PACK(ERR_LIB_DH, DH_F_DH_CMS_DECRYPT, 0), "dh_cms_decrypt"}, | - |
| 25 | {ERR_PACK(ERR_LIB_DH, DH_F_DH_CMS_SET_PEERKEY, 0), "dh_cms_set_peerkey"}, | - |
| 26 | {ERR_PACK(ERR_LIB_DH, DH_F_DH_CMS_SET_SHARED_INFO, 0), | - |
| 27 | "dh_cms_set_shared_info"}, | - |
| 28 | {ERR_PACK(ERR_LIB_DH, DH_F_DH_METH_DUP, 0), "DH_meth_dup"}, | - |
| 29 | {ERR_PACK(ERR_LIB_DH, DH_F_DH_METH_NEW, 0), "DH_meth_new"}, | - |
| 30 | {ERR_PACK(ERR_LIB_DH, DH_F_DH_METH_SET1_NAME, 0), "DH_meth_set1_name"}, | - |
| 31 | {ERR_PACK(ERR_LIB_DH, DH_F_DH_NEW_BY_NID, 0), "DH_new_by_nid"}, | - |
| 32 | {ERR_PACK(ERR_LIB_DH, DH_F_DH_NEW_METHOD, 0), "DH_new_method"}, | - |
| 33 | {ERR_PACK(ERR_LIB_DH, DH_F_DH_PARAM_DECODE, 0), "dh_param_decode"}, | - |
| 34 | {ERR_PACK(ERR_LIB_DH, DH_F_DH_PKEY_PUBLIC_CHECK, 0), | - |
| 35 | "dh_pkey_public_check"}, | - |
| 36 | {ERR_PACK(ERR_LIB_DH, DH_F_DH_PRIV_DECODE, 0), "dh_priv_decode"}, | - |
| 37 | {ERR_PACK(ERR_LIB_DH, DH_F_DH_PRIV_ENCODE, 0), "dh_priv_encode"}, | - |
| 38 | {ERR_PACK(ERR_LIB_DH, DH_F_DH_PUB_DECODE, 0), "dh_pub_decode"}, | - |
| 39 | {ERR_PACK(ERR_LIB_DH, DH_F_DH_PUB_ENCODE, 0), "dh_pub_encode"}, | - |
| 40 | {ERR_PACK(ERR_LIB_DH, DH_F_DO_DH_PRINT, 0), "do_dh_print"}, | - |
| 41 | {ERR_PACK(ERR_LIB_DH, DH_F_GENERATE_KEY, 0), "generate_key"}, | - |
| 42 | {ERR_PACK(ERR_LIB_DH, DH_F_PKEY_DH_CTRL_STR, 0), "pkey_dh_ctrl_str"}, | - |
| 43 | {ERR_PACK(ERR_LIB_DH, DH_F_PKEY_DH_DERIVE, 0), "pkey_dh_derive"}, | - |
| 44 | {ERR_PACK(ERR_LIB_DH, DH_F_PKEY_DH_INIT, 0), "pkey_dh_init"}, | - |
| 45 | {ERR_PACK(ERR_LIB_DH, DH_F_PKEY_DH_KEYGEN, 0), "pkey_dh_keygen"}, | - |
| 46 | {0, NULL} | - |
| 47 | }; | - |
| 48 | | - |
| 49 | static const ERR_STRING_DATA DH_str_reasons[] = { | - |
| 50 | {ERR_PACK(ERR_LIB_DH, 0, DH_R_BAD_GENERATOR), "bad generator"}, | - |
| 51 | {ERR_PACK(ERR_LIB_DH, 0, DH_R_BN_DECODE_ERROR), "bn decode error"}, | - |
| 52 | {ERR_PACK(ERR_LIB_DH, 0, DH_R_BN_ERROR), "bn error"}, | - |
| 53 | {ERR_PACK(ERR_LIB_DH, 0, DH_R_CHECK_INVALID_J_VALUE), | - |
| 54 | "check invalid j value"}, | - |
| 55 | {ERR_PACK(ERR_LIB_DH, 0, DH_R_CHECK_INVALID_Q_VALUE), | - |
| 56 | "check invalid q value"}, | - |
| 57 | {ERR_PACK(ERR_LIB_DH, 0, DH_R_CHECK_PUBKEY_INVALID), | - |
| 58 | "check pubkey invalid"}, | - |
| 59 | {ERR_PACK(ERR_LIB_DH, 0, DH_R_CHECK_PUBKEY_TOO_LARGE), | - |
| 60 | "check pubkey too large"}, | - |
| 61 | {ERR_PACK(ERR_LIB_DH, 0, DH_R_CHECK_PUBKEY_TOO_SMALL), | - |
| 62 | "check pubkey too small"}, | - |
| 63 | {ERR_PACK(ERR_LIB_DH, 0, DH_R_CHECK_P_NOT_PRIME), "check p not prime"}, | - |
| 64 | {ERR_PACK(ERR_LIB_DH, 0, DH_R_CHECK_P_NOT_SAFE_PRIME), | - |
| 65 | "check p not safe prime"}, | - |
| 66 | {ERR_PACK(ERR_LIB_DH, 0, DH_R_CHECK_Q_NOT_PRIME), "check q not prime"}, | - |
| 67 | {ERR_PACK(ERR_LIB_DH, 0, DH_R_DECODE_ERROR), "decode error"}, | - |
| 68 | {ERR_PACK(ERR_LIB_DH, 0, DH_R_INVALID_PARAMETER_NAME), | - |
| 69 | "invalid parameter name"}, | - |
| 70 | {ERR_PACK(ERR_LIB_DH, 0, DH_R_INVALID_PARAMETER_NID), | - |
| 71 | "invalid parameter nid"}, | - |
| 72 | {ERR_PACK(ERR_LIB_DH, 0, DH_R_INVALID_PUBKEY), "invalid public key"}, | - |
| 73 | {ERR_PACK(ERR_LIB_DH, 0, DH_R_KDF_PARAMETER_ERROR), "kdf parameter error"}, | - |
| 74 | {ERR_PACK(ERR_LIB_DH, 0, DH_R_KEYS_NOT_SET), "keys not set"}, | - |
| 75 | {ERR_PACK(ERR_LIB_DH, 0, DH_R_MISSING_PUBKEY), "missing pubkey"}, | - |
| 76 | {ERR_PACK(ERR_LIB_DH, 0, DH_R_MODULUS_TOO_LARGE), "modulus too large"}, | - |
| 77 | {ERR_PACK(ERR_LIB_DH, 0, DH_R_NOT_SUITABLE_GENERATOR), | - |
| 78 | "not suitable generator"}, | - |
| 79 | {ERR_PACK(ERR_LIB_DH, 0, DH_R_NO_PARAMETERS_SET), "no parameters set"}, | - |
| 80 | {ERR_PACK(ERR_LIB_DH, 0, DH_R_NO_PRIVATE_VALUE), "no private value"}, | - |
| 81 | {ERR_PACK(ERR_LIB_DH, 0, DH_R_PARAMETER_ENCODING_ERROR), | - |
| 82 | "parameter encoding error"}, | - |
| 83 | {ERR_PACK(ERR_LIB_DH, 0, DH_R_PEER_KEY_ERROR), "peer key error"}, | - |
| 84 | {ERR_PACK(ERR_LIB_DH, 0, DH_R_SHARED_INFO_ERROR), "shared info error"}, | - |
| 85 | {ERR_PACK(ERR_LIB_DH, 0, DH_R_UNABLE_TO_CHECK_GENERATOR), | - |
| 86 | "unable to check generator"}, | - |
| 87 | {0, NULL} | - |
| 88 | }; | - |
| 89 | | - |
| 90 | #endif | - |
| 91 | | - |
| 92 | int ERR_load_DH_strings(void) | - |
| 93 | { | - |
| 94 | #ifndef OPENSSL_NO_ERR | - |
| 95 | if (ERR_func_error_string(DH_str_functs[0].error) == NULL) {| TRUE | evaluated 2074 times by 11 testsEvaluated by:- asn1_internal_test
- chacha_internal_test
- ctype_internal_test
- curve448_internal_test
- libcrypto.so.1.1
- modes_internal_test
- poly1305_internal_test
- siphash_internal_test
- sm2_internal_test
- sm4_internal_test
- x509_internal_test
| | FALSE | never evaluated |
| 0-2074 |
| 96 | ERR_load_strings_const(DH_str_functs); | - |
| 97 | ERR_load_strings_const(DH_str_reasons); | - |
| 98 | }executed 2074 times by 11 tests: end of blockExecuted by:- asn1_internal_test
- chacha_internal_test
- ctype_internal_test
- curve448_internal_test
- libcrypto.so.1.1
- modes_internal_test
- poly1305_internal_test
- siphash_internal_test
- sm2_internal_test
- sm4_internal_test
- x509_internal_test
| 2074 |
| 99 | #endif | - |
| 100 | return 1;executed 2074 times by 11 tests: return 1;Executed by:- asn1_internal_test
- chacha_internal_test
- ctype_internal_test
- curve448_internal_test
- libcrypto.so.1.1
- modes_internal_test
- poly1305_internal_test
- siphash_internal_test
- sm2_internal_test
- sm4_internal_test
- x509_internal_test
| 2074 |
| 101 | } | - |
| | |