| 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/asn1.h> | - |
| 67 | | - |
| 68 | | - |
| 69 | #ifndef OPENSSL_NO_ERR | - |
| 70 | | - |
| 71 | #define ERR_FUNC(func) ERR_PACK(ERR_LIB_ASN1,func,0) | - |
| 72 | #define ERR_REASON(reason) ERR_PACK(ERR_LIB_ASN1,0,reason) | - |
| 73 | | - |
| 74 | static ERR_STRING_DATA ASN1_str_functs[] = { | - |
| 75 | {ERR_FUNC(0xfff), "CRYPTO_internal"}, | - |
| 76 | {0, NULL} | - |
| 77 | }; | - |
| 78 | | - |
| 79 | static ERR_STRING_DATA ASN1_str_reasons[] = { | - |
| 80 | {ERR_REASON(ASN1_R_ADDING_OBJECT) , "adding object"}, | - |
| 81 | {ERR_REASON(ASN1_R_ASN1_PARSE_ERROR) , "asn1 parse error"}, | - |
| 82 | {ERR_REASON(ASN1_R_ASN1_SIG_PARSE_ERROR) , "asn1 sig parse error"}, | - |
| 83 | {ERR_REASON(ASN1_R_AUX_ERROR) , "aux error"}, | - |
| 84 | {ERR_REASON(ASN1_R_BAD_CLASS) , "bad class"}, | - |
| 85 | {ERR_REASON(ASN1_R_BAD_OBJECT_HEADER) , "bad object header"}, | - |
| 86 | {ERR_REASON(ASN1_R_BAD_PASSWORD_READ) , "bad password read"}, | - |
| 87 | {ERR_REASON(ASN1_R_BAD_TAG) , "bad tag"}, | - |
| 88 | {ERR_REASON(ASN1_R_BMPSTRING_IS_WRONG_LENGTH), "bmpstring is wrong length"}, | - |
| 89 | {ERR_REASON(ASN1_R_BN_LIB) , "bn lib"}, | - |
| 90 | {ERR_REASON(ASN1_R_BOOLEAN_IS_WRONG_LENGTH), "boolean is wrong length"}, | - |
| 91 | {ERR_REASON(ASN1_R_BUFFER_TOO_SMALL) , "buffer too small"}, | - |
| 92 | {ERR_REASON(ASN1_R_CIPHER_HAS_NO_OBJECT_IDENTIFIER), "cipher has no object identifier"}, | - |
| 93 | {ERR_REASON(ASN1_R_CONTEXT_NOT_INITIALISED), "context not initialised"}, | - |
| 94 | {ERR_REASON(ASN1_R_DATA_IS_WRONG) , "data is wrong"}, | - |
| 95 | {ERR_REASON(ASN1_R_DECODE_ERROR) , "decode error"}, | - |
| 96 | {ERR_REASON(ASN1_R_DECODING_ERROR) , "decoding error"}, | - |
| 97 | {ERR_REASON(ASN1_R_DEPTH_EXCEEDED) , "depth exceeded"}, | - |
| 98 | {ERR_REASON(ASN1_R_DIGEST_AND_KEY_TYPE_NOT_SUPPORTED), "digest and key type not supported"}, | - |
| 99 | {ERR_REASON(ASN1_R_ENCODE_ERROR) , "encode error"}, | - |
| 100 | {ERR_REASON(ASN1_R_ERROR_GETTING_TIME) , "error getting time"}, | - |
| 101 | {ERR_REASON(ASN1_R_ERROR_LOADING_SECTION), "error loading section"}, | - |
| 102 | {ERR_REASON(ASN1_R_ERROR_PARSING_SET_ELEMENT), "error parsing set element"}, | - |
| 103 | {ERR_REASON(ASN1_R_ERROR_SETTING_CIPHER_PARAMS), "error setting cipher params"}, | - |
| 104 | {ERR_REASON(ASN1_R_EXPECTING_AN_INTEGER) , "expecting an integer"}, | - |
| 105 | {ERR_REASON(ASN1_R_EXPECTING_AN_OBJECT) , "expecting an object"}, | - |
| 106 | {ERR_REASON(ASN1_R_EXPECTING_A_BOOLEAN) , "expecting a boolean"}, | - |
| 107 | {ERR_REASON(ASN1_R_EXPECTING_A_TIME) , "expecting a time"}, | - |
| 108 | {ERR_REASON(ASN1_R_EXPLICIT_LENGTH_MISMATCH), "explicit length mismatch"}, | - |
| 109 | {ERR_REASON(ASN1_R_EXPLICIT_TAG_NOT_CONSTRUCTED), "explicit tag not constructed"}, | - |
| 110 | {ERR_REASON(ASN1_R_FIELD_MISSING) , "field missing"}, | - |
| 111 | {ERR_REASON(ASN1_R_FIRST_NUM_TOO_LARGE) , "first num too large"}, | - |
| 112 | {ERR_REASON(ASN1_R_HEADER_TOO_LONG) , "header too long"}, | - |
| 113 | {ERR_REASON(ASN1_R_ILLEGAL_BITSTRING_FORMAT), "illegal bitstring format"}, | - |
| 114 | {ERR_REASON(ASN1_R_ILLEGAL_BOOLEAN) , "illegal boolean"}, | - |
| 115 | {ERR_REASON(ASN1_R_ILLEGAL_CHARACTERS) , "illegal characters"}, | - |
| 116 | {ERR_REASON(ASN1_R_ILLEGAL_FORMAT) , "illegal format"}, | - |
| 117 | {ERR_REASON(ASN1_R_ILLEGAL_HEX) , "illegal hex"}, | - |
| 118 | {ERR_REASON(ASN1_R_ILLEGAL_IMPLICIT_TAG) , "illegal implicit tag"}, | - |
| 119 | {ERR_REASON(ASN1_R_ILLEGAL_INTEGER) , "illegal integer"}, | - |
| 120 | {ERR_REASON(ASN1_R_ILLEGAL_NESTED_TAGGING), "illegal nested tagging"}, | - |
| 121 | {ERR_REASON(ASN1_R_ILLEGAL_NULL) , "illegal null"}, | - |
| 122 | {ERR_REASON(ASN1_R_ILLEGAL_NULL_VALUE) , "illegal null value"}, | - |
| 123 | {ERR_REASON(ASN1_R_ILLEGAL_OBJECT) , "illegal object"}, | - |
| 124 | {ERR_REASON(ASN1_R_ILLEGAL_OPTIONAL_ANY) , "illegal optional any"}, | - |
| 125 | {ERR_REASON(ASN1_R_ILLEGAL_OPTIONS_ON_ITEM_TEMPLATE), "illegal options on item template"}, | - |
| 126 | {ERR_REASON(ASN1_R_ILLEGAL_TAGGED_ANY) , "illegal tagged any"}, | - |
| 127 | {ERR_REASON(ASN1_R_ILLEGAL_TIME_VALUE) , "illegal time value"}, | - |
| 128 | {ERR_REASON(ASN1_R_INTEGER_NOT_ASCII_FORMAT), "integer not ascii format"}, | - |
| 129 | {ERR_REASON(ASN1_R_INTEGER_TOO_LARGE_FOR_LONG), "integer too large for long"}, | - |
| 130 | {ERR_REASON(ASN1_R_INVALID_BIT_STRING_BITS_LEFT), "invalid bit string bits left"}, | - |
| 131 | {ERR_REASON(ASN1_R_INVALID_BMPSTRING_LENGTH), "invalid bmpstring length"}, | - |
| 132 | {ERR_REASON(ASN1_R_INVALID_DIGIT) , "invalid digit"}, | - |
| 133 | {ERR_REASON(ASN1_R_INVALID_MIME_TYPE) , "invalid mime type"}, | - |
| 134 | {ERR_REASON(ASN1_R_INVALID_MODIFIER) , "invalid modifier"}, | - |
| 135 | {ERR_REASON(ASN1_R_INVALID_NUMBER) , "invalid number"}, | - |
| 136 | {ERR_REASON(ASN1_R_INVALID_OBJECT_ENCODING), "invalid object encoding"}, | - |
| 137 | {ERR_REASON(ASN1_R_INVALID_SEPARATOR) , "invalid separator"}, | - |
| 138 | {ERR_REASON(ASN1_R_INVALID_TIME_FORMAT) , "invalid time format"}, | - |
| 139 | {ERR_REASON(ASN1_R_INVALID_UNIVERSALSTRING_LENGTH), "invalid universalstring length"}, | - |
| 140 | {ERR_REASON(ASN1_R_INVALID_UTF8STRING) , "invalid utf8string"}, | - |
| 141 | {ERR_REASON(ASN1_R_IV_TOO_LARGE) , "iv too large"}, | - |
| 142 | {ERR_REASON(ASN1_R_LENGTH_ERROR) , "length error"}, | - |
| 143 | {ERR_REASON(ASN1_R_LIST_ERROR) , "list error"}, | - |
| 144 | {ERR_REASON(ASN1_R_MIME_NO_CONTENT_TYPE) , "mime no content type"}, | - |
| 145 | {ERR_REASON(ASN1_R_MIME_PARSE_ERROR) , "mime parse error"}, | - |
| 146 | {ERR_REASON(ASN1_R_MIME_SIG_PARSE_ERROR) , "mime sig parse error"}, | - |
| 147 | {ERR_REASON(ASN1_R_MISSING_EOC) , "missing eoc"}, | - |
| 148 | {ERR_REASON(ASN1_R_MISSING_SECOND_NUMBER), "missing second number"}, | - |
| 149 | {ERR_REASON(ASN1_R_MISSING_VALUE) , "missing value"}, | - |
| 150 | {ERR_REASON(ASN1_R_MSTRING_NOT_UNIVERSAL), "mstring not universal"}, | - |
| 151 | {ERR_REASON(ASN1_R_MSTRING_WRONG_TAG) , "mstring wrong tag"}, | - |
| 152 | {ERR_REASON(ASN1_R_NESTED_ASN1_STRING) , "nested asn1 string"}, | - |
| 153 | {ERR_REASON(ASN1_R_NESTED_TOO_DEEP) , "nested too deep"}, | - |
| 154 | {ERR_REASON(ASN1_R_NON_HEX_CHARACTERS) , "non hex characters"}, | - |
| 155 | {ERR_REASON(ASN1_R_NOT_ASCII_FORMAT) , "not ascii format"}, | - |
| 156 | {ERR_REASON(ASN1_R_NOT_ENOUGH_DATA) , "not enough data"}, | - |
| 157 | {ERR_REASON(ASN1_R_NO_CONTENT_TYPE) , "no content type"}, | - |
| 158 | {ERR_REASON(ASN1_R_NO_DEFAULT_DIGEST) , "no default digest"}, | - |
| 159 | {ERR_REASON(ASN1_R_NO_MATCHING_CHOICE_TYPE), "no matching choice type"}, | - |
| 160 | {ERR_REASON(ASN1_R_NO_MULTIPART_BODY_FAILURE), "no multipart body failure"}, | - |
| 161 | {ERR_REASON(ASN1_R_NO_MULTIPART_BOUNDARY), "no multipart boundary"}, | - |
| 162 | {ERR_REASON(ASN1_R_NO_SIG_CONTENT_TYPE) , "no sig content type"}, | - |
| 163 | {ERR_REASON(ASN1_R_NULL_IS_WRONG_LENGTH) , "null is wrong length"}, | - |
| 164 | {ERR_REASON(ASN1_R_OBJECT_NOT_ASCII_FORMAT), "object not ascii format"}, | - |
| 165 | {ERR_REASON(ASN1_R_ODD_NUMBER_OF_CHARS) , "odd number of chars"}, | - |
| 166 | {ERR_REASON(ASN1_R_PRIVATE_KEY_HEADER_MISSING), "private key header missing"}, | - |
| 167 | {ERR_REASON(ASN1_R_SECOND_NUMBER_TOO_LARGE), "second number too large"}, | - |
| 168 | {ERR_REASON(ASN1_R_SEQUENCE_LENGTH_MISMATCH), "sequence length mismatch"}, | - |
| 169 | {ERR_REASON(ASN1_R_SEQUENCE_NOT_CONSTRUCTED), "sequence not constructed"}, | - |
| 170 | {ERR_REASON(ASN1_R_SEQUENCE_OR_SET_NEEDS_CONFIG), "sequence or set needs config"}, | - |
| 171 | {ERR_REASON(ASN1_R_SHORT_LINE) , "short line"}, | - |
| 172 | {ERR_REASON(ASN1_R_SIG_INVALID_MIME_TYPE), "sig invalid mime type"}, | - |
| 173 | {ERR_REASON(ASN1_R_STREAMING_NOT_SUPPORTED), "streaming not supported"}, | - |
| 174 | {ERR_REASON(ASN1_R_STRING_TOO_LONG) , "string too long"}, | - |
| 175 | {ERR_REASON(ASN1_R_STRING_TOO_SHORT) , "string too short"}, | - |
| 176 | {ERR_REASON(ASN1_R_TAG_VALUE_TOO_HIGH) , "tag value too high"}, | - |
| 177 | {ERR_REASON(ASN1_R_THE_ASN1_OBJECT_IDENTIFIER_IS_NOT_KNOWN_FOR_THIS_MD), "the asn1 object identifier is not known for this md"}, | - |
| 178 | {ERR_REASON(ASN1_R_TIME_NOT_ASCII_FORMAT), "time not ascii format"}, | - |
| 179 | {ERR_REASON(ASN1_R_TOO_LONG) , "too long"}, | - |
| 180 | {ERR_REASON(ASN1_R_TYPE_NOT_CONSTRUCTED) , "type not constructed"}, | - |
| 181 | {ERR_REASON(ASN1_R_UNABLE_TO_DECODE_RSA_KEY), "unable to decode rsa key"}, | - |
| 182 | {ERR_REASON(ASN1_R_UNABLE_TO_DECODE_RSA_PRIVATE_KEY), "unable to decode rsa private key"}, | - |
| 183 | {ERR_REASON(ASN1_R_UNEXPECTED_EOC) , "unexpected eoc"}, | - |
| 184 | {ERR_REASON(ASN1_R_UNIVERSALSTRING_IS_WRONG_LENGTH), "universalstring is wrong length"}, | - |
| 185 | {ERR_REASON(ASN1_R_UNKNOWN_FORMAT) , "unknown format"}, | - |
| 186 | {ERR_REASON(ASN1_R_UNKNOWN_MESSAGE_DIGEST_ALGORITHM), "unknown message digest algorithm"}, | - |
| 187 | {ERR_REASON(ASN1_R_UNKNOWN_OBJECT_TYPE) , "unknown object type"}, | - |
| 188 | {ERR_REASON(ASN1_R_UNKNOWN_PUBLIC_KEY_TYPE), "unknown public key type"}, | - |
| 189 | {ERR_REASON(ASN1_R_UNKNOWN_SIGNATURE_ALGORITHM), "unknown signature algorithm"}, | - |
| 190 | {ERR_REASON(ASN1_R_UNKNOWN_TAG) , "unknown tag"}, | - |
| 191 | {ERR_REASON(ASN1_R_UNKOWN_FORMAT) , "unknown format"}, | - |
| 192 | {ERR_REASON(ASN1_R_UNSUPPORTED_ANY_DEFINED_BY_TYPE), "unsupported any defined by type"}, | - |
| 193 | {ERR_REASON(ASN1_R_UNSUPPORTED_CIPHER) , "unsupported cipher"}, | - |
| 194 | {ERR_REASON(ASN1_R_UNSUPPORTED_ENCRYPTION_ALGORITHM), "unsupported encryption algorithm"}, | - |
| 195 | {ERR_REASON(ASN1_R_UNSUPPORTED_PUBLIC_KEY_TYPE), "unsupported public key type"}, | - |
| 196 | {ERR_REASON(ASN1_R_UNSUPPORTED_TYPE) , "unsupported type"}, | - |
| 197 | {ERR_REASON(ASN1_R_WRONG_PUBLIC_KEY_TYPE), "wrong public key type"}, | - |
| 198 | {ERR_REASON(ASN1_R_WRONG_TAG) , "wrong tag"}, | - |
| 199 | {ERR_REASON(ASN1_R_WRONG_TYPE) , "wrong type"}, | - |
| 200 | {0, NULL} | - |
| 201 | }; | - |
| 202 | | - |
| 203 | #endif | - |
| 204 | | - |
| 205 | void | - |
| 206 | ERR_load_ASN1_strings(void) | - |
| 207 | { | - |
| 208 | #ifndef OPENSSL_NO_ERR | - |
| 209 | if (ERR_func_error_string(ASN1_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 |
| 210 | ERR_load_strings(0, ASN1_str_functs); | - |
| 211 | ERR_load_strings(0, ASN1_str_reasons); | - |
| 212 | }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 |
| 213 | #endif | - |
| 214 | }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 |
| | |