| Line | Source | Count |
| 1 | | - |
| 2 | | - |
| 3 | | - |
| 4 | | - |
| 5 | | - |
| 6 | | - |
| 7 | | - |
| 8 | | - |
| 9 | | - |
| 10 | | - |
| 11 | | - |
| 12 | | - |
| 13 | | - |
| 14 | | - |
| 15 | | - |
| 16 | | - |
| 17 | | - |
| 18 | | - |
| 19 | | - |
| 20 | | - |
| 21 | | - |
| 22 | | - |
| 23 | | - |
| 24 | | - |
| 25 | | - |
| 26 | | - |
| 27 | | - |
| 28 | | - |
| 29 | | - |
| 30 | | - |
| 31 | | - |
| 32 | | - |
| 33 | | - |
| 34 | | - |
| 35 | | - |
| 36 | | - |
| 37 | | - |
| 38 | | - |
| 39 | | - |
| 40 | | - |
| 41 | | - |
| 42 | | - |
| 43 | | - |
| 44 | | - |
| 45 | | - |
| 46 | | - |
| 47 | | - |
| 48 | | - |
| 49 | | - |
| 50 | | - |
| 51 | | - |
| 52 | | - |
| 53 | | - |
| 54 | | - |
| 55 | | - |
| 56 | | - |
| 57 | | - |
| 58 | | - |
| 59 | | - |
| 60 | | - |
| 61 | #include <stdio.h> | - |
| 62 | | - |
| 63 | #include <openssl/opensslconf.h> | - |
| 64 | | - |
| 65 | #include <openssl/err.h> | - |
| 66 | #include <openssl/ecdsa.h> | - |
| 67 | | - |
| 68 | | - |
| 69 | #ifndef OPENSSL_NO_ERR | - |
| 70 | | - |
| 71 | #define ERR_FUNC(func) ERR_PACK(ERR_LIB_ECDSA,func,0) | - |
| 72 | #define ERR_REASON(reason) ERR_PACK(ERR_LIB_ECDSA,0,reason) | - |
| 73 | | - |
| 74 | static ERR_STRING_DATA ECDSA_str_functs[]= { | - |
| 75 | {ERR_FUNC(0xfff), "CRYPTO_internal"}, | - |
| 76 | {0, NULL} | - |
| 77 | }; | - |
| 78 | | - |
| 79 | static ERR_STRING_DATA ECDSA_str_reasons[]= { | - |
| 80 | {ERR_REASON(ECDSA_R_BAD_SIGNATURE) , "bad signature"}, | - |
| 81 | {ERR_REASON(ECDSA_R_DATA_TOO_LARGE_FOR_KEY_SIZE), "data too large for key size"}, | - |
| 82 | {ERR_REASON(ECDSA_R_ERR_EC_LIB) , "err ec lib"}, | - |
| 83 | {ERR_REASON(ECDSA_R_MISSING_PARAMETERS) , "missing parameters"}, | - |
| 84 | {ERR_REASON(ECDSA_R_NEED_NEW_SETUP_VALUES), "need new setup values"}, | - |
| 85 | {ERR_REASON(ECDSA_R_NON_FIPS_METHOD) , "non fips method"}, | - |
| 86 | {ERR_REASON(ECDSA_R_RANDOM_NUMBER_GENERATION_FAILED), "random number generation failed"}, | - |
| 87 | {ERR_REASON(ECDSA_R_SIGNATURE_MALLOC_FAILED), "signature malloc failed"}, | - |
| 88 | {0, NULL} | - |
| 89 | }; | - |
| 90 | | - |
| 91 | #endif | - |
| 92 | | - |
| 93 | void | - |
| 94 | ERR_load_ECDSA_strings(void) | - |
| 95 | { | - |
| 96 | #ifndef OPENSSL_NO_ERR | - |
| 97 | if (ERR_func_error_string(ECDSA_str_functs[0].error) == NULL) {| TRUE | evaluated 290 times by 31 testsEvaluated by:- asn1test
- base64test
- bnaddsub
- bntest
- cipher_list
- cipherstest
- clienttest
- configtest
- dhtest
- dsatest
- ecdhtest
- ecdsatest
- ectest
- enginetest
- evptest
- exptest
- gost2814789t
- keypairtest
- libcrypto.so.44.0.1
- mont
- pbkdf2
- pkcs7test
- rsa_test
- servertest
- ssl_versions
- ...
| | FALSE | never evaluated |
| 0-290 |
| 98 | ERR_load_strings(0, ECDSA_str_functs); | - |
| 99 | ERR_load_strings(0, ECDSA_str_reasons); | - |
| 100 | }executed 290 times by 31 tests: end of blockExecuted by:- asn1test
- base64test
- bnaddsub
- bntest
- cipher_list
- cipherstest
- clienttest
- configtest
- dhtest
- dsatest
- ecdhtest
- ecdsatest
- ectest
- enginetest
- evptest
- exptest
- gost2814789t
- keypairtest
- libcrypto.so.44.0.1
- mont
- pbkdf2
- pkcs7test
- rsa_test
- servertest
- ssl_versions
- ...
| 290 |
| 101 | #endif | - |
| 102 | }executed 290 times by 31 tests: end of blockExecuted by:- asn1test
- base64test
- bnaddsub
- bntest
- cipher_list
- cipherstest
- clienttest
- configtest
- dhtest
- dsatest
- ecdhtest
- ecdsatest
- ectest
- enginetest
- evptest
- exptest
- gost2814789t
- keypairtest
- libcrypto.so.44.0.1
- mont
- pbkdf2
- pkcs7test
- rsa_test
- servertest
- ssl_versions
- ...
| 290 |
| | |