| Line | Source | Count |
| 1 | | - |
| 2 | | - |
| 3 | | - |
| 4 | | - |
| 5 | | - |
| 6 | | - |
| 7 | typedef struct { | - |
| 8 | | - |
| 9 | int nbits; | - |
| 10 | BIGNUM *pub_exp; | - |
| 11 | int primes; | - |
| 12 | | - |
| 13 | int gentmp[2]; | - |
| 14 | | - |
| 15 | int pad_mode; | - |
| 16 | | - |
| 17 | const EVP_MD *md; | - |
| 18 | | - |
| 19 | const EVP_MD *mgf1md; | - |
| 20 | | - |
| 21 | int saltlen; | - |
| 22 | | - |
| 23 | int min_saltlen; | - |
| 24 | | - |
| 25 | unsigned char *tbuf; | - |
| 26 | | - |
| 27 | unsigned char *oaep_label; | - |
| 28 | size_t oaep_labellen; | - |
| 29 | } RSA_PKEY_CTX; | - |
| 30 | | - |
| 31 | | - |
| 32 | | - |
| 33 | | - |
| 34 | static int pkey_rsa_init(EVP_PKEY_CTX *ctx) | - |
| 35 | { | - |
| 36 | RSA_PKEY_CTX *rctx = CRYPTO_zalloc(sizeof(*rctx), __FILE__, 53); | - |
| 37 | | - |
| 38 | if (rctx == | TRUE | never evaluated | | FALSE | evaluated 9344 times by 1 test |
| 0-9344 |
| 39 | ((void *)0)| TRUE | never evaluated | | FALSE | evaluated 9344 times by 1 test |
| 0-9344 |
| 40 | ) | - |
| 41 | return never executed: return 0; 0;never executed: return 0; | 0 |
| 42 | rctx->nbits = 1024; | - |
| 43 | rctx->primes = 2; | - |
| 44 | if ((| TRUE | evaluated 28 times by 1 test | | FALSE | evaluated 9316 times by 1 test |
ctx->pmeth->pkey_id == 912)| TRUE | evaluated 28 times by 1 test | | FALSE | evaluated 9316 times by 1 test |
) | 28-9316 |
| 45 | rctx->pad_mode = 6;executed 28 times by 1 test: rctx->pad_mode = 6; | 28 |
| 46 | else | - |
| 47 | rctx->pad_mode = 1;executed 9316 times by 1 test: rctx->pad_mode = 1; | 9316 |
| 48 | | - |
| 49 | rctx->saltlen = -2; | - |
| 50 | rctx->min_saltlen = -1; | - |
| 51 | ctx->data = rctx; | - |
| 52 | ctx->keygen_info = rctx->gentmp; | - |
| 53 | ctx->keygen_info_count = 2; | - |
| 54 | | - |
| 55 | returnexecuted 9344 times by 1 test: return 1; 1;executed 9344 times by 1 test: return 1; | 9344 |
| 56 | } | - |
| 57 | | - |
| 58 | static int pkey_rsa_copy(EVP_PKEY_CTX *dst, EVP_PKEY_CTX *src) | - |
| 59 | { | - |
| 60 | RSA_PKEY_CTX *dctx, *sctx; | - |
| 61 | | - |
| 62 | if (!pkey_rsa_init(dst)| TRUE | never evaluated | | FALSE | evaluated 4304 times by 1 test |
) | 0-4304 |
| 63 | return never executed: return 0; 0;never executed: return 0; | 0 |
| 64 | sctx = src->data; | - |
| 65 | dctx = dst->data; | - |
| 66 | dctx->nbits = sctx->nbits; | - |
| 67 | if (sctx->pub_exp| TRUE | never evaluated | | FALSE | evaluated 4304 times by 1 test |
) { | 0-4304 |
| 68 | dctx->pub_exp = BN_dup(sctx->pub_exp); | - |
| 69 | if (!dctx->pub_exp| TRUE | never evaluated | | FALSE | never evaluated |
) | 0 |
| 70 | return never executed: return 0; 0;never executed: return 0; | 0 |
| 71 | } never executed: end of block | 0 |
| 72 | dctx->pad_mode = sctx->pad_mode; | - |
| 73 | dctx->md = sctx->md; | - |
| 74 | dctx->mgf1md = sctx->mgf1md; | - |
| 75 | if (sctx->oaep_label| TRUE | never evaluated | | FALSE | evaluated 4304 times by 1 test |
) { | 0-4304 |
| 76 | CRYPTO_free(dctx->oaep_label, __FILE__, 91); | - |
| 77 | dctx->oaep_label = CRYPTO_memdup((sctx->oaep_label), sctx->oaep_labellen, __FILE__, 92); | - |
| 78 | if (!dctx->oaep_label| TRUE | never evaluated | | FALSE | never evaluated |
) | 0 |
| 79 | return never executed: return 0; 0;never executed: return 0; | 0 |
| 80 | dctx->oaep_labellen = sctx->oaep_labellen; | - |
| 81 | } never executed: end of block | 0 |
| 82 | returnexecuted 4304 times by 1 test: return 1; 1;executed 4304 times by 1 test: return 1; | 4304 |
| 83 | } | - |
| 84 | | - |
| 85 | static int setup_tbuf(RSA_PKEY_CTX *ctx, EVP_PKEY_CTX *pk) | - |
| 86 | { | - |
| 87 | if (ctx->tbuf != | TRUE | never evaluated | | FALSE | evaluated 2170 times by 1 test |
| 0-2170 |
| 88 | ((void *)0)| TRUE | never evaluated | | FALSE | evaluated 2170 times by 1 test |
| 0-2170 |
| 89 | ) | - |
| 90 | return never executed: return 1; 1;never executed: return 1; | 0 |
| 91 | if ((| TRUE | never evaluated | | FALSE | evaluated 2170 times by 1 test |
ctx->tbuf = CRYPTO_malloc(EVP_PKEY_size(pk->pkey), __FILE__, 104)) == | TRUE | never evaluated | | FALSE | evaluated 2170 times by 1 test |
| 0-2170 |
| 92 | ((void *)0)| TRUE | never evaluated | | FALSE | evaluated 2170 times by 1 test |
| 0-2170 |
| 93 | ) { | - |
| 94 | ERR_put_error(4,(167),((1|64)),__FILE__,105); | - |
| 95 | return never executed: return 0; 0;never executed: return 0; | 0 |
| 96 | } | - |
| 97 | returnexecuted 2170 times by 1 test: return 1; 1;executed 2170 times by 1 test: return 1; | 2170 |
| 98 | } | - |
| 99 | | - |
| 100 | static void pkey_rsa_cleanup(EVP_PKEY_CTX *ctx) | - |
| 101 | { | - |
| 102 | RSA_PKEY_CTX *rctx = ctx->data; | - |
| 103 | if (rctx| TRUE | evaluated 9344 times by 1 test | | FALSE | never evaluated |
) { | 0-9344 |
| 104 | BN_free(rctx->pub_exp); | - |
| 105 | CRYPTO_free(rctx->tbuf, __FILE__, 116); | - |
| 106 | CRYPTO_free(rctx->oaep_label, __FILE__, 117); | - |
| 107 | CRYPTO_free(rctx, __FILE__, 118); | - |
| 108 | }executed 9344 times by 1 test: end of block | 9344 |
| 109 | }executed 9344 times by 1 test: end of block | 9344 |
| 110 | | - |
| 111 | static int pkey_rsa_sign(EVP_PKEY_CTX *ctx, unsigned char *sig, | - |
| 112 | size_t *siglen, const unsigned char *tbs, | - |
| 113 | size_t tbslen) | - |
| 114 | { | - |
| 115 | int ret; | - |
| 116 | RSA_PKEY_CTX *rctx = ctx->data; | - |
| 117 | RSA *rsa = ctx->pkey->pkey.rsa; | - |
| 118 | | - |
| 119 | if (rctx->md| TRUE | evaluated 1655 times by 1 test | | FALSE | never evaluated |
) { | 0-1655 |
| 120 | if (tbslen != (size_t)EVP_MD_size(rctx->md)| TRUE | evaluated 2 times by 1 test | | FALSE | evaluated 1653 times by 1 test |
) { | 2-1653 |
| 121 | ERR_put_error(4,(142),(143),__FILE__,132); | - |
| 122 | returnexecuted 2 times by 1 test: return -1; -1;executed 2 times by 1 test: return -1; | 2 |
| 123 | } | - |
| 124 | | - |
| 125 | if (EVP_MD_type(rctx->md) == 95| TRUE | never evaluated | | FALSE | evaluated 1653 times by 1 test |
) { | 0-1653 |
| 126 | unsigned int sltmp; | - |
| 127 | if (rctx->pad_mode != 1| TRUE | never evaluated | | FALSE | never evaluated |
) | 0 |
| 128 | return never executed: return -1; -1;never executed: return -1; | 0 |
| 129 | ret = RSA_sign_ASN1_OCTET_STRING(0, | - |
| 130 | tbs, tbslen, sig, &sltmp, rsa); | - |
| 131 | | - |
| 132 | if (ret <= 0| TRUE | never evaluated | | FALSE | never evaluated |
) | 0 |
| 133 | return never executed: return ret; ret;never executed: return ret; | 0 |
| 134 | ret = sltmp; | - |
| 135 | } never executed: end of block else if (rctx->pad_mode == 5| TRUE | never evaluated | | FALSE | evaluated 1653 times by 1 test |
) { | 0-1653 |
| 136 | if ((| TRUE | never evaluated | | FALSE | never evaluated |
size_t)EVP_PKEY_size(ctx->pkey) < tbslen + 1| TRUE | never evaluated | | FALSE | never evaluated |
) { | 0 |
| 137 | ERR_put_error(4,(142),(120),__FILE__,148); | - |
| 138 | return never executed: return -1; -1;never executed: return -1; | 0 |
| 139 | } | - |
| 140 | if (!setup_tbuf(rctx, ctx)| TRUE | never evaluated | | FALSE | never evaluated |
) { | 0 |
| 141 | ERR_put_error(4,(142),((1|64)),__FILE__,152); | - |
| 142 | return never executed: return -1; -1;never executed: return -1; | 0 |
| 143 | } | - |
| 144 | memcpy(rctx->tbuf, tbs, tbslen); | - |
| 145 | rctx->tbuf[tbslen] = RSA_X931_hash_id(EVP_MD_type(rctx->md)); | - |
| 146 | ret = RSA_private_encrypt(tbslen + 1, rctx->tbuf, | - |
| 147 | sig, rsa, 5); | - |
| 148 | } never executed: end of block else if (rctx->pad_mode == 1| TRUE | evaluated 559 times by 1 test | | FALSE | evaluated 1094 times by 1 test |
) { | 0-1094 |
| 149 | unsigned int sltmp; | - |
| 150 | ret = RSA_sign(EVP_MD_type(rctx->md), | - |
| 151 | tbs, tbslen, sig, &sltmp, rsa); | - |
| 152 | if (ret <= 0| TRUE | never evaluated | | FALSE | evaluated 559 times by 1 test |
) | 0-559 |
| 153 | return never executed: return ret; ret;never executed: return ret; | 0 |
| 154 | ret = sltmp; | - |
| 155 | }executed 559 times by 1 test: end of block else if (rctx->pad_mode == 6| TRUE | evaluated 1094 times by 1 test | | FALSE | never evaluated |
) { | 0-1094 |
| 156 | if (!setup_tbuf(rctx, ctx)| TRUE | never evaluated | | FALSE | evaluated 1094 times by 1 test |
) | 0-1094 |
| 157 | return never executed: return -1; -1;never executed: return -1; | 0 |
| 158 | if (!RSA_padding_add_PKCS1_PSS_mgf1(rsa,| TRUE | evaluated 2 times by 1 test | | FALSE | evaluated 1092 times by 1 test |
| 2-1092 |
| 159 | rctx->tbuf, tbs,| TRUE | evaluated 2 times by 1 test | | FALSE | evaluated 1092 times by 1 test |
| 2-1092 |
| 160 | rctx->md, rctx->mgf1md,| TRUE | evaluated 2 times by 1 test | | FALSE | evaluated 1092 times by 1 test |
| 2-1092 |
| 161 | rctx->saltlen)| TRUE | evaluated 2 times by 1 test | | FALSE | evaluated 1092 times by 1 test |
) | 2-1092 |
| 162 | returnexecuted 2 times by 1 test: return -1; -1;executed 2 times by 1 test: return -1; | 2 |
| 163 | ret = RSA_private_encrypt(RSA_size(rsa), rctx->tbuf, | - |
| 164 | sig, rsa, 3); | - |
| 165 | }executed 1092 times by 1 test: end of block else { | 1092 |
| 166 | return never executed: return -1; -1;never executed: return -1; | 0 |
| 167 | } | - |
| 168 | } else { | - |
| 169 | ret = RSA_private_encrypt(tbslen, tbs, sig, ctx->pkey->pkey.rsa, | - |
| 170 | rctx->pad_mode); | - |
| 171 | } never executed: end of block | 0 |
| 172 | if (ret < 0| TRUE | never evaluated | | FALSE | evaluated 1651 times by 1 test |
) | 0-1651 |
| 173 | return never executed: return ret; ret;never executed: return ret; | 0 |
| 174 | *siglen = ret; | - |
| 175 | returnexecuted 1651 times by 1 test: return 1; 1;executed 1651 times by 1 test: return 1; | 1651 |
| 176 | } | - |
| 177 | | - |
| 178 | static int pkey_rsa_verifyrecover(EVP_PKEY_CTX *ctx, | - |
| 179 | unsigned char *rout, size_t *routlen, | - |
| 180 | const unsigned char *sig, size_t siglen) | - |
| 181 | { | - |
| 182 | int ret; | - |
| 183 | RSA_PKEY_CTX *rctx = ctx->data; | - |
| 184 | | - |
| 185 | if (rctx->md| TRUE | evaluated 11 times by 1 test | | FALSE | never evaluated |
) { | 0-11 |
| 186 | if (rctx->pad_mode == 5| TRUE | never evaluated | | FALSE | evaluated 11 times by 1 test |
) { | 0-11 |
| 187 | if (!setup_tbuf(rctx, ctx)| TRUE | never evaluated | | FALSE | never evaluated |
) | 0 |
| 188 | return never executed: return -1; -1;never executed: return -1; | 0 |
| 189 | ret = RSA_public_decrypt(siglen, sig, | - |
| 190 | rctx->tbuf, ctx->pkey->pkey.rsa, | - |
| 191 | 5); | - |
| 192 | if (ret < 1| TRUE | never evaluated | | FALSE | never evaluated |
) | 0 |
| 193 | return never executed: return 0; 0;never executed: return 0; | 0 |
| 194 | ret--; | - |
| 195 | if (rctx->tbuf[ret] != RSA_X931_hash_id(EVP_MD_type(rctx->md))| TRUE | never evaluated | | FALSE | never evaluated |
) { | 0 |
| 196 | ERR_put_error(4,(141),(100),__FILE__,208) | - |
| 197 | ; | - |
| 198 | return never executed: return 0; 0;never executed: return 0; | 0 |
| 199 | } | - |
| 200 | if (ret != EVP_MD_size(rctx->md)| TRUE | never evaluated | | FALSE | never evaluated |
) { | 0 |
| 201 | ERR_put_error(4,(141),(143),__FILE__,213) | - |
| 202 | ; | - |
| 203 | return never executed: return 0; 0;never executed: return 0; | 0 |
| 204 | } | - |
| 205 | if (rout| TRUE | never evaluated | | FALSE | never evaluated |
) | 0 |
| 206 | memcpy(rout, rctx->tbuf, ret); never executed: memcpy(rout, rctx->tbuf, ret); | 0 |
| 207 | } never executed: end of block else if (rctx->pad_mode == 1| TRUE | evaluated 11 times by 1 test | | FALSE | never evaluated |
) { | 0-11 |
| 208 | size_t sltmp; | - |
| 209 | ret = int_rsa_verify(EVP_MD_type(rctx->md), | - |
| 210 | | - |
| 211 | ((void *)0) | - |
| 212 | , 0, rout, &sltmp, | - |
| 213 | sig, siglen, ctx->pkey->pkey.rsa); | - |
| 214 | if (ret <= 0| TRUE | evaluated 7 times by 1 test | | FALSE | evaluated 4 times by 1 test |
) | 4-7 |
| 215 | returnexecuted 7 times by 1 test: return 0; 0;executed 7 times by 1 test: return 0; | 7 |
| 216 | ret = sltmp; | - |
| 217 | }executed 4 times by 1 test: end of block else { | 4 |
| 218 | return never executed: return -1; -1;never executed: return -1; | 0 |
| 219 | } | - |
| 220 | } else { | - |
| 221 | ret = RSA_public_decrypt(siglen, sig, rout, ctx->pkey->pkey.rsa, | - |
| 222 | rctx->pad_mode); | - |
| 223 | } never executed: end of block | 0 |
| 224 | if (ret < 0| TRUE | never evaluated | | FALSE | evaluated 4 times by 1 test |
) | 0-4 |
| 225 | return never executed: return ret; ret;never executed: return ret; | 0 |
| 226 | *routlen = ret; | - |
| 227 | returnexecuted 4 times by 1 test: return 1; 1;executed 4 times by 1 test: return 1; | 4 |
| 228 | } | - |
| 229 | | - |
| 230 | static int pkey_rsa_verify(EVP_PKEY_CTX *ctx, | - |
| 231 | const unsigned char *sig, size_t siglen, | - |
| 232 | const unsigned char *tbs, size_t tbslen) | - |
| 233 | { | - |
| 234 | RSA_PKEY_CTX *rctx = ctx->data; | - |
| 235 | RSA *rsa = ctx->pkey->pkey.rsa; | - |
| 236 | size_t rslen; | - |
| 237 | | - |
| 238 | if (rctx->md| TRUE | evaluated 2770 times by 1 test | | FALSE | never evaluated |
) { | 0-2770 |
| 239 | if (rctx->pad_mode == 1| TRUE | evaluated 1758 times by 1 test | | FALSE | evaluated 1012 times by 1 test |
) | 1012-1758 |
| 240 | returnexecuted 1758 times by 1 test: return RSA_verify(EVP_MD_type(rctx->md), tbs, tbslen, sig, siglen, rsa); RSA_verify(EVP_MD_type(rctx->md), tbs, tbslen,executed 1758 times by 1 test: return RSA_verify(EVP_MD_type(rctx->md), tbs, tbslen, sig, siglen, rsa); | 1758 |
| 241 | sig, siglen, rsa);executed 1758 times by 1 test: return RSA_verify(EVP_MD_type(rctx->md), tbs, tbslen, sig, siglen, rsa); | 1758 |
| 242 | if (tbslen != (size_t)EVP_MD_size(rctx->md)| TRUE | evaluated 2 times by 1 test | | FALSE | evaluated 1010 times by 1 test |
) { | 2-1010 |
| 243 | ERR_put_error(4,(149),(143),__FILE__,252); | - |
| 244 | returnexecuted 2 times by 1 test: return -1; -1;executed 2 times by 1 test: return -1; | 2 |
| 245 | } | - |
| 246 | if (rctx->pad_mode == 5| TRUE | never evaluated | | FALSE | evaluated 1010 times by 1 test |
) { | 0-1010 |
| 247 | if (pkey_rsa_verifyrecover(ctx, | TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 248 | ((void *)0)| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 249 | , &rslen, sig, siglen) <= 0| TRUE | never evaluated | | FALSE | never evaluated |
) | 0 |
| 250 | return never executed: return 0; 0;never executed: return 0; | 0 |
| 251 | } never executed: end of block else if (rctx->pad_mode == 6| TRUE | evaluated 1010 times by 1 test | | FALSE | never evaluated |
) { | 0-1010 |
| 252 | int ret; | - |
| 253 | if (!setup_tbuf(rctx, ctx)| TRUE | never evaluated | | FALSE | evaluated 1010 times by 1 test |
) | 0-1010 |
| 254 | return never executed: return -1; -1;never executed: return -1; | 0 |
| 255 | ret = RSA_public_decrypt(siglen, sig, rctx->tbuf, | - |
| 256 | rsa, 3); | - |
| 257 | if (ret <= 0| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1009 times by 1 test |
) | 1-1009 |
| 258 | returnexecuted 1 time by 1 test: return 0; 0;executed 1 time by 1 test: return 0; | 1 |
| 259 | ret = RSA_verify_PKCS1_PSS_mgf1(rsa, tbs, | - |
| 260 | rctx->md, rctx->mgf1md, | - |
| 261 | rctx->tbuf, rctx->saltlen); | - |
| 262 | if (ret <= 0| TRUE | evaluated 20 times by 1 test | | FALSE | evaluated 989 times by 1 test |
) | 20-989 |
| 263 | returnexecuted 20 times by 1 test: return 0; 0;executed 20 times by 1 test: return 0; | 20 |
| 264 | returnexecuted 989 times by 1 test: return 1; 1;executed 989 times by 1 test: return 1; | 989 |
| 265 | } else { | - |
| 266 | return never executed: return -1; -1;never executed: return -1; | 0 |
| 267 | } | - |
| 268 | } else { | - |
| 269 | if (!setup_tbuf(rctx, ctx)| TRUE | never evaluated | | FALSE | never evaluated |
) | 0 |
| 270 | return never executed: return -1; -1;never executed: return -1; | 0 |
| 271 | rslen = RSA_public_decrypt(siglen, sig, rctx->tbuf, | - |
| 272 | rsa, rctx->pad_mode); | - |
| 273 | if (rslen == 0| TRUE | never evaluated | | FALSE | never evaluated |
) | 0 |
| 274 | return never executed: return 0; 0;never executed: return 0; | 0 |
| 275 | } never executed: end of block | 0 |
| 276 | | - |
| 277 | if ((| TRUE | never evaluated | | FALSE | never evaluated |
rslen != tbslen)| TRUE | never evaluated | | FALSE | never evaluated |
|| memcmp(tbs, rctx->tbuf, rslen)| TRUE | never evaluated | | FALSE | never evaluated |
) | 0 |
| 278 | return never executed: return 0; 0;never executed: return 0; | 0 |
| 279 | | - |
| 280 | return never executed: return 1; 1;never executed: return 1; | 0 |
| 281 | | - |
| 282 | } | - |
| 283 | | - |
| 284 | static int pkey_rsa_encrypt(EVP_PKEY_CTX *ctx, | - |
| 285 | unsigned char *out, size_t *outlen, | - |
| 286 | const unsigned char *in, size_t inlen) | - |
| 287 | { | - |
| 288 | int ret; | - |
| 289 | RSA_PKEY_CTX *rctx = ctx->data; | - |
| 290 | | - |
| 291 | if (rctx->pad_mode == 4| TRUE | evaluated 2 times by 1 test | | FALSE | evaluated 486 times by 1 test |
) { | 2-486 |
| 292 | int klen = RSA_size(ctx->pkey->pkey.rsa); | - |
| 293 | if (!setup_tbuf(rctx, ctx)| TRUE | never evaluated | | FALSE | evaluated 2 times by 1 test |
) | 0-2 |
| 294 | return never executed: return -1; -1;never executed: return -1; | 0 |
| 295 | if (!RSA_padding_add_PKCS1_OAEP_mgf1(rctx->tbuf, klen,| TRUE | never evaluated | | FALSE | evaluated 2 times by 1 test |
| 0-2 |
| 296 | in, inlen,| TRUE | never evaluated | | FALSE | evaluated 2 times by 1 test |
| 0-2 |
| 297 | rctx->oaep_label,| TRUE | never evaluated | | FALSE | evaluated 2 times by 1 test |
| 0-2 |
| 298 | rctx->oaep_labellen,| TRUE | never evaluated | | FALSE | evaluated 2 times by 1 test |
| 0-2 |
| 299 | rctx->md, rctx->mgf1md)| TRUE | never evaluated | | FALSE | evaluated 2 times by 1 test |
) | 0-2 |
| 300 | return never executed: return -1; -1;never executed: return -1; | 0 |
| 301 | ret = RSA_public_encrypt(klen, rctx->tbuf, out, | - |
| 302 | ctx->pkey->pkey.rsa, 3); | - |
| 303 | }executed 2 times by 1 test: end of block else { | 2 |
| 304 | ret = RSA_public_encrypt(inlen, in, out, ctx->pkey->pkey.rsa, | - |
| 305 | rctx->pad_mode); | - |
| 306 | }executed 486 times by 1 test: end of block | 486 |
| 307 | if (ret < 0| TRUE | evaluated 17 times by 1 test | | FALSE | evaluated 471 times by 1 test |
) | 17-471 |
| 308 | returnexecuted 17 times by 1 test: return ret; ret;executed 17 times by 1 test: return ret; | 17 |
| 309 | *outlen = ret; | - |
| 310 | returnexecuted 471 times by 1 test: return 1; 1;executed 471 times by 1 test: return 1; | 471 |
| 311 | } | - |
| 312 | | - |
| 313 | static int pkey_rsa_decrypt(EVP_PKEY_CTX *ctx, | - |
| 314 | unsigned char *out, size_t *outlen, | - |
| 315 | const unsigned char *in, size_t inlen) | - |
| 316 | { | - |
| 317 | int ret; | - |
| 318 | RSA_PKEY_CTX *rctx = ctx->data; | - |
| 319 | | - |
| 320 | if (rctx->pad_mode == 4| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 25 times by 1 test |
) { | 25-64 |
| 321 | if (!setup_tbuf(rctx, ctx)| TRUE | never evaluated | | FALSE | evaluated 64 times by 1 test |
) | 0-64 |
| 322 | return never executed: return -1; -1;never executed: return -1; | 0 |
| 323 | ret = RSA_private_decrypt(inlen, in, rctx->tbuf, | - |
| 324 | ctx->pkey->pkey.rsa, 3); | - |
| 325 | if (ret <= 0| TRUE | never evaluated | | FALSE | evaluated 64 times by 1 test |
) | 0-64 |
| 326 | return never executed: return ret; ret;never executed: return ret; | 0 |
| 327 | ret = RSA_padding_check_PKCS1_OAEP_mgf1(out, ret, rctx->tbuf, | - |
| 328 | ret, ret, | - |
| 329 | rctx->oaep_label, | - |
| 330 | rctx->oaep_labellen, | - |
| 331 | rctx->md, rctx->mgf1md); | - |
| 332 | }executed 64 times by 1 test: end of block else { | 64 |
| 333 | ret = RSA_private_decrypt(inlen, in, out, ctx->pkey->pkey.rsa, | - |
| 334 | rctx->pad_mode); | - |
| 335 | }executed 25 times by 1 test: end of block | 25 |
| 336 | if (ret < 0| TRUE | evaluated 8 times by 1 test | | FALSE | evaluated 81 times by 1 test |
) | 8-81 |
| 337 | returnexecuted 8 times by 1 test: return ret; ret;executed 8 times by 1 test: return ret; | 8 |
| 338 | *outlen = ret; | - |
| 339 | returnexecuted 81 times by 1 test: return 1; 1;executed 81 times by 1 test: return 1; | 81 |
| 340 | } | - |
| 341 | | - |
| 342 | static int check_padding_md(const EVP_MD *md, int padding) | - |
| 343 | { | - |
| 344 | int mdnid; | - |
| 345 | | - |
| 346 | if (!md| TRUE | evaluated 133 times by 1 test | | FALSE | evaluated 6412 times by 1 test |
) | 133-6412 |
| 347 | returnexecuted 133 times by 1 test: return 1; 1;executed 133 times by 1 test: return 1; | 133 |
| 348 | | - |
| 349 | mdnid = EVP_MD_type(md); | - |
| 350 | | - |
| 351 | if (padding == 3| TRUE | never evaluated | | FALSE | evaluated 6412 times by 1 test |
) { | 0-6412 |
| 352 | ERR_put_error(4,(140),(141),__FILE__,359); | - |
| 353 | return never executed: return 0; 0;never executed: return 0; | 0 |
| 354 | } | - |
| 355 | | - |
| 356 | if (padding == 5| TRUE | never evaluated | | FALSE | evaluated 6412 times by 1 test |
) { | 0-6412 |
| 357 | if (RSA_X931_hash_id(mdnid) == -1| TRUE | never evaluated | | FALSE | never evaluated |
) { | 0 |
| 358 | ERR_put_error(4,(140),(142),__FILE__,365); | - |
| 359 | return never executed: return 0; 0;never executed: return 0; | 0 |
| 360 | } | - |
| 361 | } never executed: end of block else { | 0 |
| 362 | switch(mdnid) { | - |
| 363 | | - |
| 364 | caseexecuted 273 times by 1 test: case 64: 64:executed 273 times by 1 test: case 64: | 273 |
| 365 | caseexecuted 3 times by 1 test: case 675: 675:executed 3 times by 1 test: case 675: | 3 |
| 366 | caseexecuted 5321 times by 1 test: case 672: 672:executed 5321 times by 1 test: case 672: | 5321 |
| 367 | caseexecuted 31 times by 1 test: case 673: 673:executed 31 times by 1 test: case 673: | 31 |
| 368 | caseexecuted 37 times by 1 test: case 674: 674:executed 37 times by 1 test: case 674: | 37 |
| 369 | caseexecuted 3 times by 1 test: case 4: 4:executed 3 times by 1 test: case 4: | 3 |
| 370 | caseexecuted 735 times by 1 test: case 114: 114:executed 735 times by 1 test: case 114: | 735 |
| 371 | case never executed: case 3: 3:never executed: case 3: | 0 |
| 372 | case never executed: case 257: 257:never executed: case 257: | 0 |
| 373 | caseexecuted 9 times by 1 test: case 95: 95:executed 9 times by 1 test: case 95: | 9 |
| 374 | case never executed: case 117: 117:never executed: case 117: | 0 |
| 375 | case never executed: case 1096: 1096:never executed: case 1096: | 0 |
| 376 | case never executed: case 1097: 1097:never executed: case 1097: | 0 |
| 377 | case never executed: case 1098: 1098:never executed: case 1098: | 0 |
| 378 | case never executed: case 1099: 1099:never executed: case 1099: | 0 |
| 379 | returnexecuted 6412 times by 1 test: return 1; 1;executed 6412 times by 1 test: return 1; | 6412 |
| 380 | | - |
| 381 | default never executed: default: :never executed: default: | 0 |
| 382 | ERR_put_error(4,(140),(157),__FILE__,389); | - |
| 383 | return never executed: return 0; 0;never executed: return 0; | 0 |
| 384 | | - |
| 385 | } | - |
| 386 | } | - |
| 387 | | - |
| 388 | return never executed: return 1; 1;never executed: return 1; | 0 |
| 389 | } | - |
| 390 | | - |
| 391 | static int pkey_rsa_ctrl(EVP_PKEY_CTX *ctx, int type, int p1, void *p2) | - |
| 392 | { | - |
| 393 | RSA_PKEY_CTX *rctx = ctx->data; | - |
| 394 | | - |
| 395 | switch (type) { | - |
| 396 | caseexecuted 2169 times by 1 test: case (0x1000 + 1): (0x1000 + 1):executed 2169 times by 1 test: case (0x1000 + 1): | 2169 |
| 397 | if ((| TRUE | evaluated 2169 times by 1 test | | FALSE | never evaluated |
p1 >= 1)| TRUE | evaluated 2169 times by 1 test | | FALSE | never evaluated |
&& (| TRUE | evaluated 2169 times by 1 test | | FALSE | never evaluated |
p1 <= 6)| TRUE | evaluated 2169 times by 1 test | | FALSE | never evaluated |
) { | 0-2169 |
| 398 | if (!check_padding_md(rctx->md, p1)| TRUE | never evaluated | | FALSE | evaluated 2169 times by 1 test |
) | 0-2169 |
| 399 | return never executed: return 0; 0;never executed: return 0; | 0 |
| 400 | if (p1 == 6| TRUE | evaluated 2102 times by 1 test | | FALSE | evaluated 67 times by 1 test |
) { | 67-2102 |
| 401 | if (!(ctx->operation &| TRUE | never evaluated | | FALSE | evaluated 2102 times by 1 test |
| 0-2102 |
| 402 | ((1<<3) | (1<<4)))| TRUE | never evaluated | | FALSE | evaluated 2102 times by 1 test |
) | 0-2102 |
| 403 | goto never executed: goto bad_pad; bad_pad;never executed: goto bad_pad; | 0 |
| 404 | if (!rctx->md| TRUE | evaluated 67 times by 1 test | | FALSE | evaluated 2035 times by 1 test |
) | 67-2035 |
| 405 | rctx->md = EVP_sha1();executed 67 times by 1 test: rctx->md = EVP_sha1(); | 67 |
| 406 | }executed 2102 times by 1 test: end of block else if ((| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 66 times by 1 test |
ctx->pmeth->pkey_id == 912)| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 66 times by 1 test |
) { | 1-2102 |
| 407 | gotoexecuted 1 time by 1 test: goto bad_pad; bad_pad;executed 1 time by 1 test: goto bad_pad; | 1 |
| 408 | } | - |
| 409 | if (p1 == 4| TRUE | evaluated 66 times by 1 test | | FALSE | evaluated 2102 times by 1 test |
) { | 66-2102 |
| 410 | if (!(ctx->operation & ((1<<8) | (1<<9)))| TRUE | never evaluated | | FALSE | evaluated 66 times by 1 test |
) | 0-66 |
| 411 | goto never executed: goto bad_pad; bad_pad;never executed: goto bad_pad; | 0 |
| 412 | if (!rctx->md| TRUE | evaluated 66 times by 1 test | | FALSE | never evaluated |
) | 0-66 |
| 413 | rctx->md = EVP_sha1();executed 66 times by 1 test: rctx->md = EVP_sha1(); | 66 |
| 414 | }executed 66 times by 1 test: end of block | 66 |
| 415 | rctx->pad_mode = p1; | - |
| 416 | returnexecuted 2168 times by 1 test: return 1; 1;executed 2168 times by 1 test: return 1; | 2168 |
| 417 | } | - |
| 418 | bad_pad: code before this statement never executed: bad_pad: | 0 |
| 419 | ERR_put_error(4,(143),(144),__FILE__,427) | - |
| 420 | ; | - |
| 421 | returnexecuted 1 time by 1 test: return -2; -2;executed 1 time by 1 test: return -2; | 1 |
| 422 | | - |
| 423 | caseexecuted 25 times by 1 test: case (0x1000 + 6): (0x1000 + 6):executed 25 times by 1 test: case (0x1000 + 6): | 25 |
| 424 | *(int *)p2 = rctx->pad_mode; | - |
| 425 | returnexecuted 25 times by 1 test: return 1; 1;executed 25 times by 1 test: return 1; | 25 |
| 426 | | - |
| 427 | caseexecuted 2042 times by 1 test: case (0x1000 + 2): (0x1000 + 2):executed 2042 times by 1 test: case (0x1000 + 2): | 2042 |
| 428 | caseexecuted 3 times by 1 test: case (0x1000 + 7): (0x1000 + 7):executed 3 times by 1 test: case (0x1000 + 7): | 3 |
| 429 | if (rctx->pad_mode != 6| TRUE | never evaluated | | FALSE | evaluated 2045 times by 1 test |
) { | 0-2045 |
| 430 | ERR_put_error(4,(143),(146),__FILE__,437); | - |
| 431 | return never executed: return -2; -2;never executed: return -2; | 0 |
| 432 | } | - |
| 433 | if (type == (0x1000 + 7)| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 2042 times by 1 test |
) { | 3-2042 |
| 434 | *(int *)p2 = rctx->saltlen; | - |
| 435 | }executed 3 times by 1 test: end of block else { | 3 |
| 436 | if (p1 < -3| TRUE | never evaluated | | FALSE | evaluated 2042 times by 1 test |
) | 0-2042 |
| 437 | return never executed: return -2; -2;never executed: return -2; | 0 |
| 438 | if ((| TRUE | evaluated 5 times by 1 test | | FALSE | evaluated 2037 times by 1 test |
rctx->min_saltlen != -1)| TRUE | evaluated 5 times by 1 test | | FALSE | evaluated 2037 times by 1 test |
) { | 5-2037 |
| 439 | if (p1 == -2| TRUE | never evaluated | | FALSE | evaluated 5 times by 1 test |
| 0-5 |
| 440 | && ctx->operation == (1<<4)| TRUE | never evaluated | | FALSE | never evaluated |
) { | 0 |
| 441 | ERR_put_error(4,(143),(146),__FILE__,448); | - |
| 442 | return never executed: return -2; -2;never executed: return -2; | 0 |
| 443 | } | - |
| 444 | if ((p1 == -1| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 4 times by 1 test |
| 1-4 |
| 445 | && rctx->min_saltlen > EVP_MD_size(rctx->md)| TRUE | never evaluated | | FALSE | evaluated 1 time by 1 test |
) | 0-1 |
| 446 | || (p1 >= 0| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 2 times by 1 test |
&& p1 < rctx->min_saltlen| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 2 times by 1 test |
)) { | 1-3 |
| 447 | ERR_put_error(4,(143),(164),__FILE__,454); | - |
| 448 | returnexecuted 1 time by 1 test: return 0; 0;executed 1 time by 1 test: return 0; | 1 |
| 449 | } | - |
| 450 | }executed 4 times by 1 test: end of block | 4 |
| 451 | rctx->saltlen = p1; | - |
| 452 | }executed 2041 times by 1 test: end of block | 2041 |
| 453 | returnexecuted 2044 times by 1 test: return 1; 1;executed 2044 times by 1 test: return 1; | 2044 |
| 454 | | - |
| 455 | caseexecuted 13 times by 1 test: case (0x1000 + 3): (0x1000 + 3):executed 13 times by 1 test: case (0x1000 + 3): | 13 |
| 456 | if (p1 < 512| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 12 times by 1 test |
) { | 1-12 |
| 457 | ERR_put_error(4,(143),(120),__FILE__,464); | - |
| 458 | returnexecuted 1 time by 1 test: return -2; -2;executed 1 time by 1 test: return -2; | 1 |
| 459 | } | - |
| 460 | rctx->nbits = p1; | - |
| 461 | returnexecuted 12 times by 1 test: return 1; 1;executed 12 times by 1 test: return 1; | 12 |
| 462 | | - |
| 463 | case never executed: case (0x1000 + 4): (0x1000 + 4):never executed: case (0x1000 + 4): | 0 |
| 464 | if (p2 == | TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 465 | ((void *)0)| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 466 | || !BN_is_odd((BIGNUM *)p2)| TRUE | never evaluated | | FALSE | never evaluated |
|| BN_is_one((BIGNUM *)p2)| TRUE | never evaluated | | FALSE | never evaluated |
) { | 0 |
| 467 | ERR_put_error(4,(143),(101),__FILE__,472); | - |
| 468 | return never executed: return -2; -2;never executed: return -2; | 0 |
| 469 | } | - |
| 470 | BN_free(rctx->pub_exp); | - |
| 471 | rctx->pub_exp = p2; | - |
| 472 | return never executed: return 1; 1;never executed: return 1; | 0 |
| 473 | | - |
| 474 | caseexecuted 3 times by 1 test: case (0x1000 + 13): (0x1000 + 13):executed 3 times by 1 test: case (0x1000 + 13): | 3 |
| 475 | if (p1 < 2| TRUE | never evaluated | | FALSE | evaluated 3 times by 1 test |
|| p1 > 5| TRUE | never evaluated | | FALSE | evaluated 3 times by 1 test |
) { | 0-3 |
| 476 | ERR_put_error(4,(143),(165),__FILE__,481); | - |
| 477 | return never executed: return -2; -2;never executed: return -2; | 0 |
| 478 | } | - |
| 479 | rctx->primes = p1; | - |
| 480 | returnexecuted 3 times by 1 test: return 1; 1;executed 3 times by 1 test: return 1; | 3 |
| 481 | | - |
| 482 | caseexecuted 3 times by 1 test: case (0x1000 + 9): (0x1000 + 9):executed 3 times by 1 test: case (0x1000 + 9): | 3 |
| 483 | caseexecuted 2 times by 1 test: case (0x1000 + 11): (0x1000 + 11):executed 2 times by 1 test: case (0x1000 + 11): | 2 |
| 484 | if (rctx->pad_mode != 4| TRUE | never evaluated | | FALSE | evaluated 5 times by 1 test |
) { | 0-5 |
| 485 | ERR_put_error(4,(143),(141),__FILE__,490); | - |
| 486 | return never executed: return -2; -2;never executed: return -2; | 0 |
| 487 | } | - |
| 488 | if (type == (0x1000 + 11)| TRUE | evaluated 2 times by 1 test | | FALSE | evaluated 3 times by 1 test |
) | 2-3 |
| 489 | *(constexecuted 2 times by 1 test: *(const EVP_MD **)p2 = rctx->md; EVP_MD **)p2 = rctx->md;executed 2 times by 1 test: *(const EVP_MD **)p2 = rctx->md; | 2 |
| 490 | else | - |
| 491 | rctx->md = p2;executed 3 times by 1 test: rctx->md = p2; | 3 |
| 492 | returnexecuted 5 times by 1 test: return 1; 1;executed 5 times by 1 test: return 1; | 5 |
| 493 | | - |
| 494 | caseexecuted 4376 times by 1 test: case 1: 1:executed 4376 times by 1 test: case 1: | 4376 |
| 495 | if (!check_padding_md(p2, rctx->pad_mode)| TRUE | never evaluated | | FALSE | evaluated 4376 times by 1 test |
) | 0-4376 |
| 496 | return never executed: return 0; 0;never executed: return 0; | 0 |
| 497 | if ((| TRUE | evaluated 6 times by 1 test | | FALSE | evaluated 4370 times by 1 test |
rctx->min_saltlen != -1)| TRUE | evaluated 6 times by 1 test | | FALSE | evaluated 4370 times by 1 test |
) { | 6-4370 |
| 498 | if (EVP_MD_type(rctx->md) == EVP_MD_type(p2)| TRUE | evaluated 5 times by 1 test | | FALSE | evaluated 1 time by 1 test |
) | 1-5 |
| 499 | returnexecuted 5 times by 1 test: return 1; 1;executed 5 times by 1 test: return 1; | 5 |
| 500 | ERR_put_error(4,(143),(145),__FILE__,505); | - |
| 501 | returnexecuted 1 time by 1 test: return 0; 0;executed 1 time by 1 test: return 0; | 1 |
| 502 | } | - |
| 503 | rctx->md = p2; | - |
| 504 | returnexecuted 4370 times by 1 test: return 1; 1;executed 4370 times by 1 test: return 1; | 4370 |
| 505 | | - |
| 506 | caseexecuted 6 times by 1 test: case 13: 13:executed 6 times by 1 test: case 13: | 6 |
| 507 | *(const EVP_MD **)p2 = rctx->md; | - |
| 508 | returnexecuted 6 times by 1 test: return 1; 1;executed 6 times by 1 test: return 1; | 6 |
| 509 | | - |
| 510 | caseexecuted 140 times by 1 test: case (0x1000 + 5): (0x1000 + 5):executed 140 times by 1 test: case (0x1000 + 5): | 140 |
| 511 | caseexecuted 5 times by 1 test: case (0x1000 + 8): (0x1000 + 8):executed 5 times by 1 test: case (0x1000 + 8): | 5 |
| 512 | if (rctx->pad_mode != 6| TRUE | evaluated 65 times by 1 test | | FALSE | evaluated 80 times by 1 test |
| 65-80 |
| 513 | && rctx->pad_mode != 4| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 64 times by 1 test |
) { | 1-64 |
| 514 | ERR_put_error(4,(143),(156),__FILE__,519); | - |
| 515 | returnexecuted 1 time by 1 test: return -2; -2;executed 1 time by 1 test: return -2; | 1 |
| 516 | } | - |
| 517 | if (type == (0x1000 + 8)| TRUE | evaluated 5 times by 1 test | | FALSE | evaluated 139 times by 1 test |
) { | 5-139 |
| 518 | if (rctx->mgf1md| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 4 times by 1 test |
) | 1-4 |
| 519 | *(constexecuted 1 time by 1 test: *(const EVP_MD **)p2 = rctx->mgf1md; EVP_MD **)p2 = rctx->mgf1md;executed 1 time by 1 test: *(const EVP_MD **)p2 = rctx->mgf1md; | 1 |
| 520 | else | - |
| 521 | *(constexecuted 4 times by 1 test: *(const EVP_MD **)p2 = rctx->md; EVP_MD **)p2 = rctx->md;executed 4 times by 1 test: *(const EVP_MD **)p2 = rctx->md; | 4 |
| 522 | } else { | - |
| 523 | if ((| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 136 times by 1 test |
rctx->min_saltlen != -1)| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 136 times by 1 test |
) { | 3-136 |
| 524 | if (EVP_MD_type(rctx->mgf1md) == EVP_MD_type(p2)| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 2 times by 1 test |
) | 1-2 |
| 525 | returnexecuted 1 time by 1 test: return 1; 1;executed 1 time by 1 test: return 1; | 1 |
| 526 | ERR_put_error(4,(143),(152),__FILE__,531); | - |
| 527 | returnexecuted 2 times by 1 test: return 0; 0;executed 2 times by 1 test: return 0; | 2 |
| 528 | } | - |
| 529 | rctx->mgf1md = p2; | - |
| 530 | }executed 136 times by 1 test: end of block | 136 |
| 531 | returnexecuted 141 times by 1 test: return 1; 1;executed 141 times by 1 test: return 1; | 141 |
| 532 | | - |
| 533 | caseexecuted 2 times by 1 test: case (0x1000 + 10): (0x1000 + 10):executed 2 times by 1 test: case (0x1000 + 10): | 2 |
| 534 | if (rctx->pad_mode != 4| TRUE | never evaluated | | FALSE | evaluated 2 times by 1 test |
) { | 0-2 |
| 535 | ERR_put_error(4,(143),(141),__FILE__,540); | - |
| 536 | return never executed: return -2; -2;never executed: return -2; | 0 |
| 537 | } | - |
| 538 | CRYPTO_free(rctx->oaep_label, __FILE__, 543); | - |
| 539 | if (p2| TRUE | never evaluated | | FALSE | evaluated 2 times by 1 test |
&& p1 > 0| TRUE | never evaluated | | FALSE | never evaluated |
) { | 0-2 |
| 540 | rctx->oaep_label = p2; | - |
| 541 | rctx->oaep_labellen = p1; | - |
| 542 | } never executed: end of block else { | 0 |
| 543 | rctx->oaep_label = | - |
| 544 | ((void *)0) | - |
| 545 | ; | - |
| 546 | rctx->oaep_labellen = 0; | - |
| 547 | }executed 2 times by 1 test: end of block | 2 |
| 548 | returnexecuted 2 times by 1 test: return 1; 1;executed 2 times by 1 test: return 1; | 2 |
| 549 | | - |
| 550 | caseexecuted 2 times by 1 test: case (0x1000 + 12): (0x1000 + 12):executed 2 times by 1 test: case (0x1000 + 12): | 2 |
| 551 | if (rctx->pad_mode != 4| TRUE | never evaluated | | FALSE | evaluated 2 times by 1 test |
) { | 0-2 |
| 552 | ERR_put_error(4,(143),(141),__FILE__,555); | - |
| 553 | return never executed: return -2; -2;never executed: return -2; | 0 |
| 554 | } | - |
| 555 | *(unsigned char **)p2 = rctx->oaep_label; | - |
| 556 | returnexecuted 2 times by 1 test: return rctx->oaep_labellen; rctx->oaep_labellen;executed 2 times by 1 test: return rctx->oaep_labellen; | 2 |
| 557 | | - |
| 558 | caseexecuted 4311 times by 1 test: case 7: 7:executed 4311 times by 1 test: case 7: | 4311 |
| 559 | caseexecuted 22 times by 1 test: case 5: 5:executed 22 times by 1 test: case 5: | 22 |
| 560 | | - |
| 561 | caseexecuted 60 times by 1 test: case 11: 11:executed 60 times by 1 test: case 11: | 60 |
| 562 | | - |
| 563 | returnexecuted 4393 times by 1 test: return 1; 1;executed 4393 times by 1 test: return 1; | 4393 |
| 564 | | - |
| 565 | caseexecuted 12 times by 1 test: case 3: 3:executed 12 times by 1 test: case 3: | 12 |
| 566 | caseexecuted 6 times by 1 test: case 4: 4:executed 6 times by 1 test: case 4: | 6 |
| 567 | | - |
| 568 | caseexecuted 16 times by 1 test: case 10: 10:executed 16 times by 1 test: case 10: | 16 |
| 569 | caseexecuted 30 times by 1 test: case 9: 9:executed 30 times by 1 test: case 9: | 30 |
| 570 | | - |
| 571 | if (!(ctx->pmeth->pkey_id == 912)| TRUE | evaluated 64 times by 1 test | | FALSE | never evaluated |
) | 0-64 |
| 572 | returnexecuted 64 times by 1 test: return 1; 1;executed 64 times by 1 test: return 1; | 64 |
| 573 | | - |
| 574 | case never executed: case 2: 2:never executed: case 2: code before this statement never executed: case 2: | 0 |
| 575 | ERR_put_error(4,(143),(148),__FILE__,579) | - |
| 576 | ; | - |
| 577 | return never executed: return -2; -2;never executed: return -2; | 0 |
| 578 | | - |
| 579 | default never executed: default: :never executed: default: | 0 |
| 580 | return never executed: return -2; -2;never executed: return -2; | 0 |
| 581 | | - |
| 582 | } | - |
| 583 | } | - |
| 584 | | - |
| 585 | static int pkey_rsa_ctrl_str(EVP_PKEY_CTX *ctx, | - |
| 586 | const char *type, const char *value) | - |
| 587 | { | - |
| 588 | if (value == | TRUE | never evaluated | | FALSE | evaluated 302 times by 1 test |
| 0-302 |
| 589 | ((void *)0)| TRUE | never evaluated | | FALSE | evaluated 302 times by 1 test |
| 0-302 |
| 590 | ) { | - |
| 591 | ERR_put_error(4,(144),(147),__FILE__,592); | - |
| 592 | return never executed: return 0; 0;never executed: return 0; | 0 |
| 593 | } | - |
| 594 | if ( | - |
| 595 | __extension__ ({ size_t __s1_len, __s2_len; (__builtin_constant_p (| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 596 | type| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 597 | ) && __builtin_constant_p (| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 598 | "rsa_padding_mode"| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 599 | ) && (__s1_len = __builtin_strlen (| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 600 | type| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 601 | ), __s2_len = __builtin_strlen (| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 602 | "rsa_padding_mode"| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 603 | ), (!((size_t)(const void *)((| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 604 | type| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 605 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 606 | type| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 607 | ) == 1) || __s1_len >= 4) && (!((size_t)(const void *)((| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 608 | "rsa_padding_mode"| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 609 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 610 | "rsa_padding_mode"| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 611 | ) == 1) || __s2_len >= 4)) ? __builtin_strcmp (| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 612 | type| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 613 | , | TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 614 | "rsa_padding_mode"| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 615 | ) : (__builtin_constant_p (| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 616 | type| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 617 | ) && ((size_t)(const void *)((| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 618 | type| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 619 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 620 | type| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 621 | ) == 1) && (__s1_len = __builtin_strlen (| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 622 | type| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 623 | ), __s1_len < 4) ? (__builtin_constant_p (| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 624 | "rsa_padding_mode"| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 625 | ) && ((size_t)(const void *)((| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 626 | "rsa_padding_mode"| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 627 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 628 | "rsa_padding_mode"| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 629 | ) == 1) ? __builtin_strcmp (| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 630 | type| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 631 | , | TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 632 | "rsa_padding_mode"| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 633 | ) : (__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 634 | "rsa_padding_mode"| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 635 | ); int __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 636 | type| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 637 | ))[0] - __s2[0]); if (__s1_len > 0| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 0-159 |
| 638 | type| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 639 | ))[1] - __s2[1]); if (__s1_len > 1| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 0-159 |
| 640 | type| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 641 | ))[2] - __s2[2]); if (__s1_len > 2| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) __result = (((const unsigned char *) (const char *) (never executed: __result = (((const unsigned char *) (const char *) ( type ))[3] - __s2[3]); | TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 0-159 |
| 642 | type| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( type ))[3] - __s2[3]); | 0-159 |
| 643 | ))[3] - __s2[3]);| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( type ))[3] - __s2[3]); }never executed: end of block }never executed: end of block __result; }))) : (__builtin_constant_p (| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 0-159 |
| 644 | "rsa_padding_mode"| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 645 | ) && ((size_t)(const void *)((| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 646 | "rsa_padding_mode"| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 647 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 648 | "rsa_padding_mode"| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 649 | ) == 1) && (__s2_len = __builtin_strlen (| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 650 | "rsa_padding_mode"| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 651 | ), __s2_len < 4) ? (__builtin_constant_p (| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 652 | type| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 653 | ) && ((size_t)(const void *)((| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 654 | type| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 655 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 656 | type| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 657 | ) == 1) ? __builtin_strcmp (| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 658 | type| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 659 | , | TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 660 | "rsa_padding_mode"| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 661 | ) : -(__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 662 | type| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 663 | ); int __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 664 | "rsa_padding_mode"| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 665 | ))[0] - __s2[0]); if (__s2_len > 0| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 0-159 |
| 666 | "rsa_padding_mode"| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 667 | ))[1] - __s2[1]); if (__s2_len > 1| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 0-159 |
| 668 | "rsa_padding_mode"| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 669 | ))[2] - __s2[2]); if (__s2_len > 2| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) __result = (((const unsigned char *) (const char *) (never executed: __result = (((const unsigned char *) (const char *) ( "rsa_padding_mode" ))[3] - __s2[3]); | TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 0-159 |
| 670 | "rsa_padding_mode"| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( "rsa_padding_mode" ))[3] - __s2[3]); | 0-159 |
| 671 | ))[3] - __s2[3]);| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( "rsa_padding_mode" ))[3] - __s2[3]); }never executed: end of block }never executed: end of block __result; }))) : __builtin_strcmp (| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 0-159 |
| 672 | type| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 673 | , | TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 674 | "rsa_padding_mode"| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 675 | )))); }) | TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
| 143-159 |
| 676 | == 0| TRUE | evaluated 143 times by 1 test | | FALSE | evaluated 159 times by 1 test |
) { | 143-159 |
| 677 | int pm; | - |
| 678 | | - |
| 679 | if ( | - |
| 680 | __extension__ ({ size_t __s1_len, __s2_len; (__builtin_constant_p (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 681 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 682 | ) && __builtin_constant_p (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 683 | "pkcs1"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 684 | ) && (__s1_len = __builtin_strlen (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 685 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 686 | ), __s2_len = __builtin_strlen (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 687 | "pkcs1"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 688 | ), (!((size_t)(const void *)((| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 689 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 690 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 691 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 692 | ) == 1) || __s1_len >= 4) && (!((size_t)(const void *)((| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 693 | "pkcs1"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 694 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 695 | "pkcs1"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 696 | ) == 1) || __s2_len >= 4)) ? __builtin_strcmp (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 697 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 698 | , | TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 699 | "pkcs1"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 700 | ) : (__builtin_constant_p (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 701 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 702 | ) && ((size_t)(const void *)((| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 703 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 704 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 705 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 706 | ) == 1) && (__s1_len = __builtin_strlen (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 707 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 708 | ), __s1_len < 4) ? (__builtin_constant_p (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 709 | "pkcs1"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 710 | ) && ((size_t)(const void *)((| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 711 | "pkcs1"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 712 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 713 | "pkcs1"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 714 | ) == 1) ? __builtin_strcmp (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 715 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 716 | , | TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 717 | "pkcs1"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 718 | ) : (__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 719 | "pkcs1"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 720 | ); int __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 721 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 722 | ))[0] - __s2[0]); if (__s1_len > 0| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 723 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 724 | ))[1] - __s2[1]); if (__s1_len > 1| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 725 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 726 | ))[2] - __s2[2]); if (__s1_len > 2| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) __result = (((const unsigned char *) (const char *) (never executed: __result = (((const unsigned char *) (const char *) ( value ))[3] - __s2[3]); | TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 727 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( value ))[3] - __s2[3]); | 0-142 |
| 728 | ))[3] - __s2[3]);| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( value ))[3] - __s2[3]); }never executed: end of block }never executed: end of block __result; }))) : (__builtin_constant_p (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 729 | "pkcs1"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 730 | ) && ((size_t)(const void *)((| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 731 | "pkcs1"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 732 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 733 | "pkcs1"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 734 | ) == 1) && (__s2_len = __builtin_strlen (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 735 | "pkcs1"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 736 | ), __s2_len < 4) ? (__builtin_constant_p (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 737 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 738 | ) && ((size_t)(const void *)((| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 739 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 740 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 741 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 742 | ) == 1) ? __builtin_strcmp (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 743 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 744 | , | TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 745 | "pkcs1"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 746 | ) : -(__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 747 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 748 | ); int __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 749 | "pkcs1"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 750 | ))[0] - __s2[0]); if (__s2_len > 0| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 751 | "pkcs1"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 752 | ))[1] - __s2[1]); if (__s2_len > 1| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 753 | "pkcs1"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 754 | ))[2] - __s2[2]); if (__s2_len > 2| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) __result = (((const unsigned char *) (const char *) (never executed: __result = (((const unsigned char *) (const char *) ( "pkcs1" ))[3] - __s2[3]); | TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 755 | "pkcs1"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( "pkcs1" ))[3] - __s2[3]); | 0-142 |
| 756 | ))[3] - __s2[3]);| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( "pkcs1" ))[3] - __s2[3]); }never executed: end of block }never executed: end of block __result; }))) : __builtin_strcmp (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 757 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 758 | , | TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 759 | "pkcs1"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 760 | )))); }) | TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
| 1-142 |
| 761 | == 0| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 142 times by 1 test |
) { | 1-142 |
| 762 | pm = 1; | - |
| 763 | }executed 1 time by 1 test: end of block else if ( | 1 |
| 764 | __extension__ ({ size_t __s1_len, __s2_len; (__builtin_constant_p (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 765 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 766 | ) && __builtin_constant_p (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 767 | "sslv23"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 768 | ) && (__s1_len = __builtin_strlen (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 769 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 770 | ), __s2_len = __builtin_strlen (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 771 | "sslv23"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 772 | ), (!((size_t)(const void *)((| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 773 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 774 | ) + 1) - (size_t)(const void *)(| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 775 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 776 | ) == 1) || __s1_len >= 4) && (!((size_t)(const void *)((| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 777 | "sslv23"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 778 | ) + 1) - (size_t)(const void *)(| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 779 | "sslv23"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 780 | ) == 1) || __s2_len >= 4)) ? __builtin_strcmp (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 781 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 782 | , | TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 783 | "sslv23"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 784 | ) : (__builtin_constant_p (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 785 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 786 | ) && ((size_t)(const void *)((| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 787 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 788 | ) + 1) - (size_t)(const void *)(| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 789 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 790 | ) == 1) && (__s1_len = __builtin_strlen (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 791 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 792 | ), __s1_len < 4) ? (__builtin_constant_p (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 793 | "sslv23"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 794 | ) && ((size_t)(const void *)((| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 795 | "sslv23"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 796 | ) + 1) - (size_t)(const void *)(| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 797 | "sslv23"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 798 | ) == 1) ? __builtin_strcmp (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 799 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 800 | , | TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 801 | "sslv23"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 802 | ) : (__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 803 | "sslv23"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 804 | ); int __result = (((const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 805 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 806 | ))[0] - __s2[0]); if (__s1_len > 0| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 807 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 808 | ))[1] - __s2[1]); if (__s1_len > 1| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 809 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 810 | ))[2] - __s2[2]); if (__s1_len > 2| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) __result = (((const unsigned char *) (const char *) (never executed: __result = (((const unsigned char *) (const char *) ( value ))[3] - __s2[3]); | TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 811 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( value ))[3] - __s2[3]); | 0-142 |
| 812 | ))[3] - __s2[3]);| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( value ))[3] - __s2[3]); }never executed: end of block }never executed: end of block __result; }))) : (__builtin_constant_p (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 813 | "sslv23"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 814 | ) && ((size_t)(const void *)((| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 815 | "sslv23"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 816 | ) + 1) - (size_t)(const void *)(| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 817 | "sslv23"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 818 | ) == 1) && (__s2_len = __builtin_strlen (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 819 | "sslv23"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 820 | ), __s2_len < 4) ? (__builtin_constant_p (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 821 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 822 | ) && ((size_t)(const void *)((| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 823 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 824 | ) + 1) - (size_t)(const void *)(| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 825 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 826 | ) == 1) ? __builtin_strcmp (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 827 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 828 | , | TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 829 | "sslv23"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 830 | ) : -(__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 831 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 832 | ); int __result = (((const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 833 | "sslv23"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 834 | ))[0] - __s2[0]); if (__s2_len > 0| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 835 | "sslv23"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 836 | ))[1] - __s2[1]); if (__s2_len > 1| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 837 | "sslv23"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 838 | ))[2] - __s2[2]); if (__s2_len > 2| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) __result = (((const unsigned char *) (const char *) (never executed: __result = (((const unsigned char *) (const char *) ( "sslv23" ))[3] - __s2[3]); | TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 839 | "sslv23"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( "sslv23" ))[3] - __s2[3]); | 0-142 |
| 840 | ))[3] - __s2[3]);| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( "sslv23" ))[3] - __s2[3]); }never executed: end of block }never executed: end of block __result; }))) : __builtin_strcmp (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 841 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 842 | , | TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 843 | "sslv23"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 844 | )))); }) | TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 845 | == 0| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
) { | 0-142 |
| 846 | pm = 2; | - |
| 847 | } never executed: end of block else if ( | 0 |
| 848 | __extension__ ({ size_t __s1_len, __s2_len; (__builtin_constant_p (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 849 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 850 | ) && __builtin_constant_p (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 851 | "none"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 852 | ) && (__s1_len = __builtin_strlen (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 853 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 854 | ), __s2_len = __builtin_strlen (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 855 | "none"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 856 | ), (!((size_t)(const void *)((| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 857 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 858 | ) + 1) - (size_t)(const void *)(| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 859 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 860 | ) == 1) || __s1_len >= 4) && (!((size_t)(const void *)((| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 861 | "none"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 862 | ) + 1) - (size_t)(const void *)(| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 863 | "none"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 864 | ) == 1) || __s2_len >= 4)) ? __builtin_strcmp (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 865 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 866 | , | TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 867 | "none"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 868 | ) : (__builtin_constant_p (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 869 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 870 | ) && ((size_t)(const void *)((| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 871 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 872 | ) + 1) - (size_t)(const void *)(| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 873 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 874 | ) == 1) && (__s1_len = __builtin_strlen (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 875 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 876 | ), __s1_len < 4) ? (__builtin_constant_p (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 877 | "none"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 878 | ) && ((size_t)(const void *)((| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 879 | "none"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 880 | ) + 1) - (size_t)(const void *)(| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 881 | "none"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 882 | ) == 1) ? __builtin_strcmp (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 883 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 884 | , | TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 885 | "none"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 886 | ) : (__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 887 | "none"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 888 | ); int __result = (((const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 889 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 890 | ))[0] - __s2[0]); if (__s1_len > 0| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 891 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 892 | ))[1] - __s2[1]); if (__s1_len > 1| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 893 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 894 | ))[2] - __s2[2]); if (__s1_len > 2| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) __result = (((const unsigned char *) (const char *) (never executed: __result = (((const unsigned char *) (const char *) ( value ))[3] - __s2[3]); | TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 895 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( value ))[3] - __s2[3]); | 0-142 |
| 896 | ))[3] - __s2[3]);| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( value ))[3] - __s2[3]); }never executed: end of block }never executed: end of block __result; }))) : (__builtin_constant_p (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 897 | "none"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 898 | ) && ((size_t)(const void *)((| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 899 | "none"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 900 | ) + 1) - (size_t)(const void *)(| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 901 | "none"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 902 | ) == 1) && (__s2_len = __builtin_strlen (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 903 | "none"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 904 | ), __s2_len < 4) ? (__builtin_constant_p (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 905 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 906 | ) && ((size_t)(const void *)((| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 907 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 908 | ) + 1) - (size_t)(const void *)(| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 909 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 910 | ) == 1) ? __builtin_strcmp (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 911 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 912 | , | TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 913 | "none"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 914 | ) : -(__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 915 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 916 | ); int __result = (((const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 917 | "none"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 918 | ))[0] - __s2[0]); if (__s2_len > 0| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 919 | "none"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 920 | ))[1] - __s2[1]); if (__s2_len > 1| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 921 | "none"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 922 | ))[2] - __s2[2]); if (__s2_len > 2| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) __result = (((const unsigned char *) (const char *) (never executed: __result = (((const unsigned char *) (const char *) ( "none" ))[3] - __s2[3]); | TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 923 | "none"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( "none" ))[3] - __s2[3]); | 0-142 |
| 924 | ))[3] - __s2[3]);| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( "none" ))[3] - __s2[3]); }never executed: end of block }never executed: end of block __result; }))) : __builtin_strcmp (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 925 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 926 | , | TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 927 | "none"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 928 | )))); }) | TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 929 | == 0| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
) { | 0-142 |
| 930 | pm = 3; | - |
| 931 | } never executed: end of block else if ( | 0 |
| 932 | __extension__ ({ size_t __s1_len, __s2_len; (__builtin_constant_p (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 933 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 934 | ) && __builtin_constant_p (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 935 | "oeap"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 936 | ) && (__s1_len = __builtin_strlen (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 937 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 938 | ), __s2_len = __builtin_strlen (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 939 | "oeap"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 940 | ), (!((size_t)(const void *)((| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 941 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 942 | ) + 1) - (size_t)(const void *)(| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 943 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 944 | ) == 1) || __s1_len >= 4) && (!((size_t)(const void *)((| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 945 | "oeap"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 946 | ) + 1) - (size_t)(const void *)(| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 947 | "oeap"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 948 | ) == 1) || __s2_len >= 4)) ? __builtin_strcmp (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 949 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 950 | , | TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 951 | "oeap"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 952 | ) : (__builtin_constant_p (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 953 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 954 | ) && ((size_t)(const void *)((| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 955 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 956 | ) + 1) - (size_t)(const void *)(| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 957 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 958 | ) == 1) && (__s1_len = __builtin_strlen (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 959 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 960 | ), __s1_len < 4) ? (__builtin_constant_p (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 961 | "oeap"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 962 | ) && ((size_t)(const void *)((| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 963 | "oeap"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 964 | ) + 1) - (size_t)(const void *)(| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 965 | "oeap"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 966 | ) == 1) ? __builtin_strcmp (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 967 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 968 | , | TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 969 | "oeap"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 970 | ) : (__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 971 | "oeap"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 972 | ); int __result = (((const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 973 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 974 | ))[0] - __s2[0]); if (__s1_len > 0| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 975 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 976 | ))[1] - __s2[1]); if (__s1_len > 1| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 977 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 978 | ))[2] - __s2[2]); if (__s1_len > 2| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) __result = (((const unsigned char *) (const char *) (never executed: __result = (((const unsigned char *) (const char *) ( value ))[3] - __s2[3]); | TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 979 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( value ))[3] - __s2[3]); | 0-142 |
| 980 | ))[3] - __s2[3]);| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( value ))[3] - __s2[3]); }never executed: end of block }never executed: end of block __result; }))) : (__builtin_constant_p (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 981 | "oeap"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 982 | ) && ((size_t)(const void *)((| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 983 | "oeap"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 984 | ) + 1) - (size_t)(const void *)(| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 985 | "oeap"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 986 | ) == 1) && (__s2_len = __builtin_strlen (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 987 | "oeap"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 988 | ), __s2_len < 4) ? (__builtin_constant_p (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 989 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 990 | ) && ((size_t)(const void *)((| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 991 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 992 | ) + 1) - (size_t)(const void *)(| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 993 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 994 | ) == 1) ? __builtin_strcmp (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 995 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 996 | , | TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 997 | "oeap"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 998 | ) : -(__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 999 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 1000 | ); int __result = (((const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 1001 | "oeap"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 1002 | ))[0] - __s2[0]); if (__s2_len > 0| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 1003 | "oeap"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 1004 | ))[1] - __s2[1]); if (__s2_len > 1| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 1005 | "oeap"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 1006 | ))[2] - __s2[2]); if (__s2_len > 2| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) __result = (((const unsigned char *) (const char *) (never executed: __result = (((const unsigned char *) (const char *) ( "oeap" ))[3] - __s2[3]); | TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 1007 | "oeap"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( "oeap" ))[3] - __s2[3]); | 0-142 |
| 1008 | ))[3] - __s2[3]);| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( "oeap" ))[3] - __s2[3]); }never executed: end of block }never executed: end of block __result; }))) : __builtin_strcmp (| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 1009 | value| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 1010 | , | TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 1011 | "oeap"| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 1012 | )))); }) | TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
| 0-142 |
| 1013 | == 0| TRUE | never evaluated | | FALSE | evaluated 142 times by 1 test |
) { | 0-142 |
| 1014 | pm = 4; | - |
| 1015 | } never executed: end of block else if ( | 0 |
| 1016 | __extension__ ({ size_t __s1_len, __s2_len; (__builtin_constant_p (| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1017 | value| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1018 | ) && __builtin_constant_p (| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1019 | "oaep"| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1020 | ) && (__s1_len = __builtin_strlen (| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1021 | value| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1022 | ), __s2_len = __builtin_strlen (| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1023 | "oaep"| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1024 | ), (!((size_t)(const void *)((| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1025 | value| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1026 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1027 | value| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1028 | ) == 1) || __s1_len >= 4) && (!((size_t)(const void *)((| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1029 | "oaep"| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1030 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1031 | "oaep"| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1032 | ) == 1) || __s2_len >= 4)) ? __builtin_strcmp (| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1033 | value| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1034 | , | TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1035 | "oaep"| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1036 | ) : (__builtin_constant_p (| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1037 | value| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1038 | ) && ((size_t)(const void *)((| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1039 | value| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1040 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1041 | value| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1042 | ) == 1) && (__s1_len = __builtin_strlen (| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1043 | value| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1044 | ), __s1_len < 4) ? (__builtin_constant_p (| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1045 | "oaep"| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1046 | ) && ((size_t)(const void *)((| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1047 | "oaep"| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1048 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1049 | "oaep"| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1050 | ) == 1) ? __builtin_strcmp (| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1051 | value| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1052 | , | TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1053 | "oaep"| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1054 | ) : (__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1055 | "oaep"| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1056 | ); int __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1057 | value| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1058 | ))[0] - __s2[0]); if (__s1_len > 0| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1059 | value| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1060 | ))[1] - __s2[1]); if (__s1_len > 1| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1061 | value| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1062 | ))[2] - __s2[2]); if (__s1_len > 2| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) __result = (((const unsigned char *) (const char *) (never executed: __result = (((const unsigned char *) (const char *) ( value ))[3] - __s2[3]); | TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1063 | value| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( value ))[3] - __s2[3]); | 0-78 |
| 1064 | ))[3] - __s2[3]);| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( value ))[3] - __s2[3]); }never executed: end of block }never executed: end of block __result; }))) : (__builtin_constant_p (| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1065 | "oaep"| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1066 | ) && ((size_t)(const void *)((| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1067 | "oaep"| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1068 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1069 | "oaep"| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1070 | ) == 1) && (__s2_len = __builtin_strlen (| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1071 | "oaep"| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1072 | ), __s2_len < 4) ? (__builtin_constant_p (| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1073 | value| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1074 | ) && ((size_t)(const void *)((| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1075 | value| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1076 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1077 | value| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1078 | ) == 1) ? __builtin_strcmp (| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1079 | value| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1080 | , | TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1081 | "oaep"| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1082 | ) : -(__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1083 | value| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1084 | ); int __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1085 | "oaep"| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1086 | ))[0] - __s2[0]); if (__s2_len > 0| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1087 | "oaep"| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1088 | ))[1] - __s2[1]); if (__s2_len > 1| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1089 | "oaep"| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1090 | ))[2] - __s2[2]); if (__s2_len > 2| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) __result = (((const unsigned char *) (const char *) (never executed: __result = (((const unsigned char *) (const char *) ( "oaep" ))[3] - __s2[3]); | TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1091 | "oaep"| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( "oaep" ))[3] - __s2[3]); | 0-78 |
| 1092 | ))[3] - __s2[3]);| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( "oaep" ))[3] - __s2[3]); }never executed: end of block }never executed: end of block __result; }))) : __builtin_strcmp (| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1093 | value| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1094 | , | TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1095 | "oaep"| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1096 | )))); }) | TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
| 64-78 |
| 1097 | == 0| TRUE | evaluated 64 times by 1 test | | FALSE | evaluated 78 times by 1 test |
) { | 64-78 |
| 1098 | pm = 4; | - |
| 1099 | }executed 64 times by 1 test: end of block else if ( | 64 |
| 1100 | __extension__ ({ size_t __s1_len, __s2_len; (__builtin_constant_p (| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1101 | value| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1102 | ) && __builtin_constant_p (| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1103 | "x931"| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1104 | ) && (__s1_len = __builtin_strlen (| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1105 | value| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1106 | ), __s2_len = __builtin_strlen (| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1107 | "x931"| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1108 | ), (!((size_t)(const void *)((| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1109 | value| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1110 | ) + 1) - (size_t)(const void *)(| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1111 | value| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1112 | ) == 1) || __s1_len >= 4) && (!((size_t)(const void *)((| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1113 | "x931"| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1114 | ) + 1) - (size_t)(const void *)(| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1115 | "x931"| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1116 | ) == 1) || __s2_len >= 4)) ? __builtin_strcmp (| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1117 | value| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1118 | , | TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1119 | "x931"| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1120 | ) : (__builtin_constant_p (| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1121 | value| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1122 | ) && ((size_t)(const void *)((| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1123 | value| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1124 | ) + 1) - (size_t)(const void *)(| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1125 | value| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1126 | ) == 1) && (__s1_len = __builtin_strlen (| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1127 | value| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1128 | ), __s1_len < 4) ? (__builtin_constant_p (| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1129 | "x931"| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1130 | ) && ((size_t)(const void *)((| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1131 | "x931"| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1132 | ) + 1) - (size_t)(const void *)(| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1133 | "x931"| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1134 | ) == 1) ? __builtin_strcmp (| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1135 | value| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1136 | , | TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1137 | "x931"| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1138 | ) : (__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1139 | "x931"| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1140 | ); int __result = (((const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1141 | value| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1142 | ))[0] - __s2[0]); if (__s1_len > 0| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1143 | value| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1144 | ))[1] - __s2[1]); if (__s1_len > 1| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1145 | value| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1146 | ))[2] - __s2[2]); if (__s1_len > 2| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) __result = (((const unsigned char *) (const char *) (never executed: __result = (((const unsigned char *) (const char *) ( value ))[3] - __s2[3]); | TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1147 | value| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( value ))[3] - __s2[3]); | 0-78 |
| 1148 | ))[3] - __s2[3]);| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( value ))[3] - __s2[3]); }never executed: end of block }never executed: end of block __result; }))) : (__builtin_constant_p (| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1149 | "x931"| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1150 | ) && ((size_t)(const void *)((| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1151 | "x931"| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1152 | ) + 1) - (size_t)(const void *)(| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1153 | "x931"| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1154 | ) == 1) && (__s2_len = __builtin_strlen (| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1155 | "x931"| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1156 | ), __s2_len < 4) ? (__builtin_constant_p (| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1157 | value| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1158 | ) && ((size_t)(const void *)((| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1159 | value| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1160 | ) + 1) - (size_t)(const void *)(| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1161 | value| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1162 | ) == 1) ? __builtin_strcmp (| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1163 | value| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1164 | , | TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1165 | "x931"| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1166 | ) : -(__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1167 | value| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1168 | ); int __result = (((const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1169 | "x931"| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1170 | ))[0] - __s2[0]); if (__s2_len > 0| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1171 | "x931"| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1172 | ))[1] - __s2[1]); if (__s2_len > 1| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1173 | "x931"| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1174 | ))[2] - __s2[2]); if (__s2_len > 2| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) __result = (((const unsigned char *) (const char *) (never executed: __result = (((const unsigned char *) (const char *) ( "x931" ))[3] - __s2[3]); | TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1175 | "x931"| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( "x931" ))[3] - __s2[3]); | 0-78 |
| 1176 | ))[3] - __s2[3]);| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( "x931" ))[3] - __s2[3]); }never executed: end of block }never executed: end of block __result; }))) : __builtin_strcmp (| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1177 | value| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1178 | , | TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1179 | "x931"| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1180 | )))); }) | TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
| 0-78 |
| 1181 | == 0| TRUE | never evaluated | | FALSE | evaluated 78 times by 1 test |
) { | 0-78 |
| 1182 | pm = 5; | - |
| 1183 | } never executed: end of block else if ( | 0 |
| 1184 | __extension__ ({ size_t __s1_len, __s2_len; (__builtin_constant_p (| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1185 | value| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1186 | ) && __builtin_constant_p (| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1187 | "pss"| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1188 | ) && (__s1_len = __builtin_strlen (| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1189 | value| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1190 | ), __s2_len = __builtin_strlen (| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1191 | "pss"| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1192 | ), (!((size_t)(const void *)((| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1193 | value| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1194 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1195 | value| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1196 | ) == 1) || __s1_len >= 4) && (!((size_t)(const void *)((| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1197 | "pss"| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1198 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1199 | "pss"| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1200 | ) == 1) || __s2_len >= 4)) ? __builtin_strcmp (| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1201 | value| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1202 | , | TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1203 | "pss"| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1204 | ) : (__builtin_constant_p (| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1205 | value| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1206 | ) && ((size_t)(const void *)((| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1207 | value| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1208 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1209 | value| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1210 | ) == 1) && (__s1_len = __builtin_strlen (| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1211 | value| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1212 | ), __s1_len < 4) ? (__builtin_constant_p (| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1213 | "pss"| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1214 | ) && ((size_t)(const void *)((| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1215 | "pss"| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1216 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1217 | "pss"| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1218 | ) == 1) ? __builtin_strcmp (| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1219 | value| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1220 | , | TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1221 | "pss"| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1222 | ) : (__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1223 | "pss"| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1224 | ); int __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1225 | value| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1226 | ))[0] - __s2[0]); if (__s1_len > 0| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1227 | value| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1228 | ))[1] - __s2[1]); if (__s1_len > 1| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1229 | value| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1230 | ))[2] - __s2[2]); if (__s1_len > 2| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) __result = (((const unsigned char *) (const char *) (never executed: __result = (((const unsigned char *) (const char *) ( value ))[3] - __s2[3]); | TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1231 | value| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
never executed: __result = (((const unsigned char *) (const char *) ( value ))[3] - __s2[3]); | 0-78 |
| 1232 | ))[3] - __s2[3]);| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
never executed: __result = (((const unsigned char *) (const char *) ( value ))[3] - __s2[3]); }never executed: end of block }never executed: end of block __result; }))) : (__builtin_constant_p (| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1233 | "pss"| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1234 | ) && ((size_t)(const void *)((| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1235 | "pss"| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1236 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1237 | "pss"| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1238 | ) == 1) && (__s2_len = __builtin_strlen (| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1239 | "pss"| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1240 | ), __s2_len < 4) ? (__builtin_constant_p (| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1241 | value| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1242 | ) && ((size_t)(const void *)((| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1243 | value| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1244 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1245 | value| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1246 | ) == 1) ? __builtin_strcmp (| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1247 | value| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1248 | , | TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1249 | "pss"| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1250 | ) : -(__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1251 | value| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1252 | ); int __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1253 | "pss"| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1254 | ))[0] - __s2[0]); if (__s2_len > 0| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
&& __result == 0| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1255 | "pss"| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1256 | ))[1] - __s2[1]); if (__s2_len > 1| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
&& __result == 0| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1257 | "pss"| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1258 | ))[2] - __s2[2]); if (__s2_len > 2| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
&& __result == 0| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
) __result = (((const unsigned char *) (const char *) (executed 78 times by 1 test: __result = (((const unsigned char *) (const char *) ( "pss" ))[3] - __s2[3]); | TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1259 | "pss"| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
executed 78 times by 1 test: __result = (((const unsigned char *) (const char *) ( "pss" ))[3] - __s2[3]); | 0-78 |
| 1260 | ))[3] - __s2[3]);| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
executed 78 times by 1 test: __result = (((const unsigned char *) (const char *) ( "pss" ))[3] - __s2[3]); }executed 78 times by 1 test: end of block }executed 78 times by 1 test: end of block __result; }))) : __builtin_strcmp (| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1261 | value| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1262 | , | TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1263 | "pss"| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1264 | )))); }) | TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
| 0-78 |
| 1265 | == 0| TRUE | evaluated 78 times by 1 test | | FALSE | never evaluated |
) { | 0-78 |
| 1266 | pm = 6; | - |
| 1267 | }executed 78 times by 1 test: end of block else { | 78 |
| 1268 | ERR_put_error(4,(144),(118),__FILE__,613); | - |
| 1269 | return never executed: return -2; -2;never executed: return -2; | 0 |
| 1270 | } | - |
| 1271 | returnexecuted 143 times by 1 test: return RSA_pkey_ctx_ctrl(ctx, -1, (0x1000 + 1), pm, ((void *)0) ); RSA_pkey_ctx_ctrl(ctx, -1, (0x1000 + 1), pm, executed 143 times by 1 test: return RSA_pkey_ctx_ctrl(ctx, -1, (0x1000 + 1), pm, ((void *)0) ); | 143 |
| 1272 | ((void *)0)executed 143 times by 1 test: return RSA_pkey_ctx_ctrl(ctx, -1, (0x1000 + 1), pm, ((void *)0) ); | 143 |
| 1273 | );executed 143 times by 1 test: return RSA_pkey_ctx_ctrl(ctx, -1, (0x1000 + 1), pm, ((void *)0) ); | 143 |
| 1274 | } | - |
| 1275 | | - |
| 1276 | if ( | - |
| 1277 | __extension__ ({ size_t __s1_len, __s2_len; (__builtin_constant_p (| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1278 | type| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1279 | ) && __builtin_constant_p (| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1280 | "rsa_pss_saltlen"| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1281 | ) && (__s1_len = __builtin_strlen (| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1282 | type| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1283 | ), __s2_len = __builtin_strlen (| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1284 | "rsa_pss_saltlen"| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1285 | ), (!((size_t)(const void *)((| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1286 | type| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1287 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1288 | type| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1289 | ) == 1) || __s1_len >= 4) && (!((size_t)(const void *)((| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1290 | "rsa_pss_saltlen"| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1291 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1292 | "rsa_pss_saltlen"| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1293 | ) == 1) || __s2_len >= 4)) ? __builtin_strcmp (| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1294 | type| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1295 | , | TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1296 | "rsa_pss_saltlen"| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1297 | ) : (__builtin_constant_p (| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1298 | type| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1299 | ) && ((size_t)(const void *)((| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1300 | type| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1301 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1302 | type| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1303 | ) == 1) && (__s1_len = __builtin_strlen (| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1304 | type| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1305 | ), __s1_len < 4) ? (__builtin_constant_p (| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1306 | "rsa_pss_saltlen"| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1307 | ) && ((size_t)(const void *)((| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1308 | "rsa_pss_saltlen"| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1309 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1310 | "rsa_pss_saltlen"| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1311 | ) == 1) ? __builtin_strcmp (| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1312 | type| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1313 | , | TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1314 | "rsa_pss_saltlen"| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1315 | ) : (__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1316 | "rsa_pss_saltlen"| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1317 | ); int __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1318 | type| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1319 | ))[0] - __s2[0]); if (__s1_len > 0| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 0-141 |
| 1320 | type| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1321 | ))[1] - __s2[1]); if (__s1_len > 1| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 0-141 |
| 1322 | type| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1323 | ))[2] - __s2[2]); if (__s1_len > 2| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) __result = (((const unsigned char *) (const char *) (never executed: __result = (((const unsigned char *) (const char *) ( type ))[3] - __s2[3]); | TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 0-141 |
| 1324 | type| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( type ))[3] - __s2[3]); | 0-141 |
| 1325 | ))[3] - __s2[3]);| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( type ))[3] - __s2[3]); }never executed: end of block }never executed: end of block __result; }))) : (__builtin_constant_p (| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 0-141 |
| 1326 | "rsa_pss_saltlen"| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1327 | ) && ((size_t)(const void *)((| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1328 | "rsa_pss_saltlen"| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1329 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1330 | "rsa_pss_saltlen"| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1331 | ) == 1) && (__s2_len = __builtin_strlen (| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1332 | "rsa_pss_saltlen"| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1333 | ), __s2_len < 4) ? (__builtin_constant_p (| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1334 | type| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1335 | ) && ((size_t)(const void *)((| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1336 | type| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1337 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1338 | type| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1339 | ) == 1) ? __builtin_strcmp (| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1340 | type| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1341 | , | TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1342 | "rsa_pss_saltlen"| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1343 | ) : -(__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1344 | type| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1345 | ); int __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1346 | "rsa_pss_saltlen"| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1347 | ))[0] - __s2[0]); if (__s2_len > 0| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 0-141 |
| 1348 | "rsa_pss_saltlen"| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1349 | ))[1] - __s2[1]); if (__s2_len > 1| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 0-141 |
| 1350 | "rsa_pss_saltlen"| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1351 | ))[2] - __s2[2]); if (__s2_len > 2| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) __result = (((const unsigned char *) (const char *) (never executed: __result = (((const unsigned char *) (const char *) ( "rsa_pss_saltlen" ))[3] - __s2[3]); | TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 0-141 |
| 1352 | "rsa_pss_saltlen"| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( "rsa_pss_saltlen" ))[3] - __s2[3]); | 0-141 |
| 1353 | ))[3] - __s2[3]);| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( "rsa_pss_saltlen" ))[3] - __s2[3]); }never executed: end of block }never executed: end of block __result; }))) : __builtin_strcmp (| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 0-141 |
| 1354 | type| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1355 | , | TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1356 | "rsa_pss_saltlen"| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1357 | )))); }) | TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
| 18-141 |
| 1358 | == 0| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 141 times by 1 test |
) { | 18-141 |
| 1359 | int saltlen; | - |
| 1360 | | - |
| 1361 | if (!| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1362 | __extension__ ({ size_t __s1_len, __s2_len; (__builtin_constant_p (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1363 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1364 | ) && __builtin_constant_p (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1365 | "digest"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1366 | ) && (__s1_len = __builtin_strlen (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1367 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1368 | ), __s2_len = __builtin_strlen (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1369 | "digest"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1370 | ), (!((size_t)(const void *)((| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1371 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1372 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1373 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1374 | ) == 1) || __s1_len >= 4) && (!((size_t)(const void *)((| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1375 | "digest"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1376 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1377 | "digest"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1378 | ) == 1) || __s2_len >= 4)) ? __builtin_strcmp (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1379 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1380 | , | TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1381 | "digest"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1382 | ) : (__builtin_constant_p (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1383 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1384 | ) && ((size_t)(const void *)((| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1385 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1386 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1387 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1388 | ) == 1) && (__s1_len = __builtin_strlen (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1389 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1390 | ), __s1_len < 4) ? (__builtin_constant_p (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1391 | "digest"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1392 | ) && ((size_t)(const void *)((| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1393 | "digest"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1394 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1395 | "digest"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1396 | ) == 1) ? __builtin_strcmp (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1397 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1398 | , | TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1399 | "digest"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1400 | ) : (__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1401 | "digest"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1402 | ); int __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1403 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1404 | ))[0] - __s2[0]); if (__s1_len > 0| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 0-17 |
| 1405 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1406 | ))[1] - __s2[1]); if (__s1_len > 1| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 0-17 |
| 1407 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1408 | ))[2] - __s2[2]); if (__s1_len > 2| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) __result = (((const unsigned char *) (const char *) (never executed: __result = (((const unsigned char *) (const char *) ( value ))[3] - __s2[3]); | TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 0-17 |
| 1409 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( value ))[3] - __s2[3]); | 0-17 |
| 1410 | ))[3] - __s2[3]);| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( value ))[3] - __s2[3]); }never executed: end of block }never executed: end of block __result; }))) : (__builtin_constant_p (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 0-17 |
| 1411 | "digest"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1412 | ) && ((size_t)(const void *)((| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1413 | "digest"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1414 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1415 | "digest"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1416 | ) == 1) && (__s2_len = __builtin_strlen (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1417 | "digest"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1418 | ), __s2_len < 4) ? (__builtin_constant_p (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1419 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1420 | ) && ((size_t)(const void *)((| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1421 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1422 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1423 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1424 | ) == 1) ? __builtin_strcmp (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1425 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1426 | , | TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1427 | "digest"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1428 | ) : -(__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1429 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1430 | ); int __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1431 | "digest"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1432 | ))[0] - __s2[0]); if (__s2_len > 0| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 0-17 |
| 1433 | "digest"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1434 | ))[1] - __s2[1]); if (__s2_len > 1| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 0-17 |
| 1435 | "digest"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1436 | ))[2] - __s2[2]); if (__s2_len > 2| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) __result = (((const unsigned char *) (const char *) (never executed: __result = (((const unsigned char *) (const char *) ( "digest" ))[3] - __s2[3]); | TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 0-17 |
| 1437 | "digest"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( "digest" ))[3] - __s2[3]); | 0-17 |
| 1438 | ))[3] - __s2[3]);| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( "digest" ))[3] - __s2[3]); }never executed: end of block }never executed: end of block __result; }))) : __builtin_strcmp (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 0-17 |
| 1439 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1440 | , | TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1441 | "digest"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1442 | )))); })| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 17 times by 1 test |
| 1-17 |
| 1443 | ) | - |
| 1444 | saltlen = -1;executed 1 time by 1 test: saltlen = -1; | 1 |
| 1445 | else if (!| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1446 | __extension__ ({ size_t __s1_len, __s2_len; (__builtin_constant_p (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1447 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1448 | ) && __builtin_constant_p (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1449 | "max"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1450 | ) && (__s1_len = __builtin_strlen (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1451 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1452 | ), __s2_len = __builtin_strlen (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1453 | "max"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1454 | ), (!((size_t)(const void *)((| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1455 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1456 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1457 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1458 | ) == 1) || __s1_len >= 4) && (!((size_t)(const void *)((| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1459 | "max"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1460 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1461 | "max"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1462 | ) == 1) || __s2_len >= 4)) ? __builtin_strcmp (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1463 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1464 | , | TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1465 | "max"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1466 | ) : (__builtin_constant_p (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1467 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1468 | ) && ((size_t)(const void *)((| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1469 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1470 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1471 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1472 | ) == 1) && (__s1_len = __builtin_strlen (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1473 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1474 | ), __s1_len < 4) ? (__builtin_constant_p (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1475 | "max"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1476 | ) && ((size_t)(const void *)((| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1477 | "max"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1478 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1479 | "max"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1480 | ) == 1) ? __builtin_strcmp (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1481 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1482 | , | TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1483 | "max"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1484 | ) : (__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1485 | "max"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1486 | ); int __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1487 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1488 | ))[0] - __s2[0]); if (__s1_len > 0| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 0-16 |
| 1489 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1490 | ))[1] - __s2[1]); if (__s1_len > 1| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 0-16 |
| 1491 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1492 | ))[2] - __s2[2]); if (__s1_len > 2| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) __result = (((const unsigned char *) (const char *) (never executed: __result = (((const unsigned char *) (const char *) ( value ))[3] - __s2[3]); | TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 0-16 |
| 1493 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( value ))[3] - __s2[3]); | 0-16 |
| 1494 | ))[3] - __s2[3]);| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( value ))[3] - __s2[3]); }never executed: end of block }never executed: end of block __result; }))) : (__builtin_constant_p (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 0-16 |
| 1495 | "max"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1496 | ) && ((size_t)(const void *)((| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1497 | "max"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1498 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1499 | "max"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1500 | ) == 1) && (__s2_len = __builtin_strlen (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1501 | "max"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1502 | ), __s2_len < 4) ? (__builtin_constant_p (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1503 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1504 | ) && ((size_t)(const void *)((| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1505 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1506 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1507 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1508 | ) == 1) ? __builtin_strcmp (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1509 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1510 | , | TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1511 | "max"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1512 | ) : -(__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1513 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1514 | ); int __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1515 | "max"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1516 | ))[0] - __s2[0]); if (__s2_len > 0| TRUE | evaluated 17 times by 1 test | | FALSE | never evaluated |
&& __result == 0| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 0-17 |
| 1517 | "max"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1518 | ))[1] - __s2[1]); if (__s2_len > 1| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
&& __result == 0| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 0-16 |
| 1519 | "max"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1520 | ))[2] - __s2[2]); if (__s2_len > 2| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
&& __result == 0| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
) __result = (((const unsigned char *) (const char *) (executed 1 time by 1 test: __result = (((const unsigned char *) (const char *) ( "max" ))[3] - __s2[3]); | 0-16 |
| 1521 | "max"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
executed 1 time by 1 test: __result = (((const unsigned char *) (const char *) ( "max" ))[3] - __s2[3]); | 1-16 |
| 1522 | ))[3] - __s2[3]); } } __result; }))) : __builtin_strcmp (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1523 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1524 | , | TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1525 | "max"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1526 | )))); })| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 16 times by 1 test |
| 1-16 |
| 1527 | ) | - |
| 1528 | saltlen = -3;executed 1 time by 1 test: saltlen = -3; | 1 |
| 1529 | else if (!| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1530 | __extension__ ({ size_t __s1_len, __s2_len; (__builtin_constant_p (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1531 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1532 | ) && __builtin_constant_p (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1533 | "auto"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1534 | ) && (__s1_len = __builtin_strlen (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1535 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1536 | ), __s2_len = __builtin_strlen (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1537 | "auto"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1538 | ), (!((size_t)(const void *)((| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1539 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1540 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1541 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1542 | ) == 1) || __s1_len >= 4) && (!((size_t)(const void *)((| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1543 | "auto"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1544 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1545 | "auto"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1546 | ) == 1) || __s2_len >= 4)) ? __builtin_strcmp (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1547 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1548 | , | TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1549 | "auto"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1550 | ) : (__builtin_constant_p (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1551 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1552 | ) && ((size_t)(const void *)((| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1553 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1554 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1555 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1556 | ) == 1) && (__s1_len = __builtin_strlen (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1557 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1558 | ), __s1_len < 4) ? (__builtin_constant_p (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1559 | "auto"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1560 | ) && ((size_t)(const void *)((| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1561 | "auto"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1562 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1563 | "auto"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1564 | ) == 1) ? __builtin_strcmp (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1565 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1566 | , | TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1567 | "auto"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1568 | ) : (__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1569 | "auto"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1570 | ); int __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1571 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1572 | ))[0] - __s2[0]); if (__s1_len > 0| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 0-15 |
| 1573 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1574 | ))[1] - __s2[1]); if (__s1_len > 1| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 0-15 |
| 1575 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1576 | ))[2] - __s2[2]); if (__s1_len > 2| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) __result = (((const unsigned char *) (const char *) (never executed: __result = (((const unsigned char *) (const char *) ( value ))[3] - __s2[3]); | TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 0-15 |
| 1577 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( value ))[3] - __s2[3]); | 0-15 |
| 1578 | ))[3] - __s2[3]);| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( value ))[3] - __s2[3]); }never executed: end of block }never executed: end of block __result; }))) : (__builtin_constant_p (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 0-15 |
| 1579 | "auto"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1580 | ) && ((size_t)(const void *)((| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1581 | "auto"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1582 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1583 | "auto"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1584 | ) == 1) && (__s2_len = __builtin_strlen (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1585 | "auto"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1586 | ), __s2_len < 4) ? (__builtin_constant_p (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1587 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1588 | ) && ((size_t)(const void *)((| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1589 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1590 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1591 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1592 | ) == 1) ? __builtin_strcmp (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1593 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1594 | , | TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1595 | "auto"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1596 | ) : -(__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1597 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1598 | ); int __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1599 | "auto"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1600 | ))[0] - __s2[0]); if (__s2_len > 0| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 0-15 |
| 1601 | "auto"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1602 | ))[1] - __s2[1]); if (__s2_len > 1| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 0-15 |
| 1603 | "auto"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1604 | ))[2] - __s2[2]); if (__s2_len > 2| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) __result = (((const unsigned char *) (const char *) (never executed: __result = (((const unsigned char *) (const char *) ( "auto" ))[3] - __s2[3]); | TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 0-15 |
| 1605 | "auto"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( "auto" ))[3] - __s2[3]); | 0-15 |
| 1606 | ))[3] - __s2[3]);| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( "auto" ))[3] - __s2[3]); }never executed: end of block }never executed: end of block __result; }))) : __builtin_strcmp (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 0-15 |
| 1607 | value| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1608 | , | TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1609 | "auto"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1610 | )))); })| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 15 times by 1 test |
| 1-15 |
| 1611 | ) | - |
| 1612 | saltlen = -2;executed 1 time by 1 test: saltlen = -2; | 1 |
| 1613 | else | - |
| 1614 | saltlen = atoi(value);executed 15 times by 1 test: saltlen = atoi(value); | 15 |
| 1615 | returnexecuted 18 times by 1 test: return RSA_pkey_ctx_ctrl(ctx, ((1<<3)|(1<<4)), (0x1000 + 2), saltlen, ((void *)0) ); RSA_pkey_ctx_ctrl(ctx, ((1<<3)|(1<<4)), (0x1000 + 2), saltlen, executed 18 times by 1 test: return RSA_pkey_ctx_ctrl(ctx, ((1<<3)|(1<<4)), (0x1000 + 2), saltlen, ((void *)0) ); | 18 |
| 1616 | ((void *)0)executed 18 times by 1 test: return RSA_pkey_ctx_ctrl(ctx, ((1<<3)|(1<<4)), (0x1000 + 2), saltlen, ((void *)0) ); | 18 |
| 1617 | );executed 18 times by 1 test: return RSA_pkey_ctx_ctrl(ctx, ((1<<3)|(1<<4)), (0x1000 + 2), saltlen, ((void *)0) ); | 18 |
| 1618 | } | - |
| 1619 | | - |
| 1620 | if ( | - |
| 1621 | __extension__ ({ size_t __s1_len, __s2_len; (__builtin_constant_p (| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1622 | type| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1623 | ) && __builtin_constant_p (| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1624 | "rsa_keygen_bits"| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1625 | ) && (__s1_len = __builtin_strlen (| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1626 | type| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1627 | ), __s2_len = __builtin_strlen (| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1628 | "rsa_keygen_bits"| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1629 | ), (!((size_t)(const void *)((| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1630 | type| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1631 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1632 | type| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1633 | ) == 1) || __s1_len >= 4) && (!((size_t)(const void *)((| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1634 | "rsa_keygen_bits"| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1635 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1636 | "rsa_keygen_bits"| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1637 | ) == 1) || __s2_len >= 4)) ? __builtin_strcmp (| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1638 | type| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1639 | , | TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1640 | "rsa_keygen_bits"| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1641 | ) : (__builtin_constant_p (| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1642 | type| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1643 | ) && ((size_t)(const void *)((| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1644 | type| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1645 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1646 | type| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1647 | ) == 1) && (__s1_len = __builtin_strlen (| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1648 | type| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1649 | ), __s1_len < 4) ? (__builtin_constant_p (| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1650 | "rsa_keygen_bits"| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1651 | ) && ((size_t)(const void *)((| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1652 | "rsa_keygen_bits"| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1653 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1654 | "rsa_keygen_bits"| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1655 | ) == 1) ? __builtin_strcmp (| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1656 | type| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1657 | , | TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1658 | "rsa_keygen_bits"| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1659 | ) : (__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1660 | "rsa_keygen_bits"| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1661 | ); int __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1662 | type| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1663 | ))[0] - __s2[0]); if (__s1_len > 0| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1664 | type| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1665 | ))[1] - __s2[1]); if (__s1_len > 1| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1666 | type| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1667 | ))[2] - __s2[2]); if (__s1_len > 2| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) __result = (((const unsigned char *) (const char *) (never executed: __result = (((const unsigned char *) (const char *) ( type ))[3] - __s2[3]); | TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1668 | type| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( type ))[3] - __s2[3]); | 0-137 |
| 1669 | ))[3] - __s2[3]);| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( type ))[3] - __s2[3]); }never executed: end of block }never executed: end of block __result; }))) : (__builtin_constant_p (| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1670 | "rsa_keygen_bits"| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1671 | ) && ((size_t)(const void *)((| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1672 | "rsa_keygen_bits"| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1673 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1674 | "rsa_keygen_bits"| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1675 | ) == 1) && (__s2_len = __builtin_strlen (| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1676 | "rsa_keygen_bits"| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1677 | ), __s2_len < 4) ? (__builtin_constant_p (| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1678 | type| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1679 | ) && ((size_t)(const void *)((| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1680 | type| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1681 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1682 | type| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1683 | ) == 1) ? __builtin_strcmp (| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1684 | type| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1685 | , | TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1686 | "rsa_keygen_bits"| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1687 | ) : -(__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1688 | type| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1689 | ); int __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1690 | "rsa_keygen_bits"| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1691 | ))[0] - __s2[0]); if (__s2_len > 0| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1692 | "rsa_keygen_bits"| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1693 | ))[1] - __s2[1]); if (__s2_len > 1| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1694 | "rsa_keygen_bits"| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1695 | ))[2] - __s2[2]); if (__s2_len > 2| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) __result = (((const unsigned char *) (const char *) (never executed: __result = (((const unsigned char *) (const char *) ( "rsa_keygen_bits" ))[3] - __s2[3]); | TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1696 | "rsa_keygen_bits"| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( "rsa_keygen_bits" ))[3] - __s2[3]); | 0-137 |
| 1697 | ))[3] - __s2[3]);| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( "rsa_keygen_bits" ))[3] - __s2[3]); }never executed: end of block }never executed: end of block __result; }))) : __builtin_strcmp (| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1698 | type| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1699 | , | TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1700 | "rsa_keygen_bits"| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1701 | )))); }) | TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
| 4-137 |
| 1702 | == 0| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 137 times by 1 test |
) { | 4-137 |
| 1703 | int nbits = atoi(value); | - |
| 1704 | | - |
| 1705 | returnexecuted 4 times by 1 test: return RSA_pkey_ctx_ctrl(ctx, (1<<2), (0x1000 + 3), nbits, ((void *)0) ); RSA_pkey_ctx_ctrl(ctx, (1<<2), (0x1000 + 3), nbits, executed 4 times by 1 test: return RSA_pkey_ctx_ctrl(ctx, (1<<2), (0x1000 + 3), nbits, ((void *)0) ); | 4 |
| 1706 | ((void *)0)executed 4 times by 1 test: return RSA_pkey_ctx_ctrl(ctx, (1<<2), (0x1000 + 3), nbits, ((void *)0) ); | 4 |
| 1707 | );executed 4 times by 1 test: return RSA_pkey_ctx_ctrl(ctx, (1<<2), (0x1000 + 3), nbits, ((void *)0) ); | 4 |
| 1708 | } | - |
| 1709 | | - |
| 1710 | if ( | - |
| 1711 | __extension__ ({ size_t __s1_len, __s2_len; (__builtin_constant_p (| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1712 | type| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1713 | ) && __builtin_constant_p (| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1714 | "rsa_keygen_pubexp"| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1715 | ) && (__s1_len = __builtin_strlen (| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1716 | type| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1717 | ), __s2_len = __builtin_strlen (| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1718 | "rsa_keygen_pubexp"| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1719 | ), (!((size_t)(const void *)((| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1720 | type| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1721 | ) + 1) - (size_t)(const void *)(| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1722 | type| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1723 | ) == 1) || __s1_len >= 4) && (!((size_t)(const void *)((| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1724 | "rsa_keygen_pubexp"| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1725 | ) + 1) - (size_t)(const void *)(| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1726 | "rsa_keygen_pubexp"| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1727 | ) == 1) || __s2_len >= 4)) ? __builtin_strcmp (| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1728 | type| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1729 | , | TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1730 | "rsa_keygen_pubexp"| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1731 | ) : (__builtin_constant_p (| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1732 | type| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1733 | ) && ((size_t)(const void *)((| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1734 | type| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1735 | ) + 1) - (size_t)(const void *)(| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1736 | type| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1737 | ) == 1) && (__s1_len = __builtin_strlen (| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1738 | type| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1739 | ), __s1_len < 4) ? (__builtin_constant_p (| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1740 | "rsa_keygen_pubexp"| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1741 | ) && ((size_t)(const void *)((| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1742 | "rsa_keygen_pubexp"| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1743 | ) + 1) - (size_t)(const void *)(| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1744 | "rsa_keygen_pubexp"| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1745 | ) == 1) ? __builtin_strcmp (| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1746 | type| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1747 | , | TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1748 | "rsa_keygen_pubexp"| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1749 | ) : (__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1750 | "rsa_keygen_pubexp"| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1751 | ); int __result = (((const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1752 | type| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1753 | ))[0] - __s2[0]); if (__s1_len > 0| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1754 | type| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1755 | ))[1] - __s2[1]); if (__s1_len > 1| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1756 | type| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1757 | ))[2] - __s2[2]); if (__s1_len > 2| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) __result = (((const unsigned char *) (const char *) (never executed: __result = (((const unsigned char *) (const char *) ( type ))[3] - __s2[3]); | TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1758 | type| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( type ))[3] - __s2[3]); | 0-137 |
| 1759 | ))[3] - __s2[3]);| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( type ))[3] - __s2[3]); }never executed: end of block }never executed: end of block __result; }))) : (__builtin_constant_p (| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1760 | "rsa_keygen_pubexp"| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1761 | ) && ((size_t)(const void *)((| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1762 | "rsa_keygen_pubexp"| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1763 | ) + 1) - (size_t)(const void *)(| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1764 | "rsa_keygen_pubexp"| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1765 | ) == 1) && (__s2_len = __builtin_strlen (| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1766 | "rsa_keygen_pubexp"| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1767 | ), __s2_len < 4) ? (__builtin_constant_p (| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1768 | type| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1769 | ) && ((size_t)(const void *)((| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1770 | type| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1771 | ) + 1) - (size_t)(const void *)(| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1772 | type| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1773 | ) == 1) ? __builtin_strcmp (| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1774 | type| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1775 | , | TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1776 | "rsa_keygen_pubexp"| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1777 | ) : -(__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1778 | type| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1779 | ); int __result = (((const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1780 | "rsa_keygen_pubexp"| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1781 | ))[0] - __s2[0]); if (__s2_len > 0| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1782 | "rsa_keygen_pubexp"| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1783 | ))[1] - __s2[1]); if (__s2_len > 1| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1784 | "rsa_keygen_pubexp"| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1785 | ))[2] - __s2[2]); if (__s2_len > 2| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) __result = (((const unsigned char *) (const char *) (never executed: __result = (((const unsigned char *) (const char *) ( "rsa_keygen_pubexp" ))[3] - __s2[3]); | TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1786 | "rsa_keygen_pubexp"| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( "rsa_keygen_pubexp" ))[3] - __s2[3]); | 0-137 |
| 1787 | ))[3] - __s2[3]);| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( "rsa_keygen_pubexp" ))[3] - __s2[3]); }never executed: end of block }never executed: end of block __result; }))) : __builtin_strcmp (| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1788 | type| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1789 | , | TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1790 | "rsa_keygen_pubexp"| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1791 | )))); }) | TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
| 0-137 |
| 1792 | == 0| TRUE | never evaluated | | FALSE | evaluated 137 times by 1 test |
) { | 0-137 |
| 1793 | int ret; | - |
| 1794 | | - |
| 1795 | BIGNUM *pubexp = | - |
| 1796 | ((void *)0) | - |
| 1797 | ; | - |
| 1798 | if (!BN_asc2bn(&pubexp, value)| TRUE | never evaluated | | FALSE | never evaluated |
) | 0 |
| 1799 | return never executed: return 0; 0;never executed: return 0; | 0 |
| 1800 | ret = RSA_pkey_ctx_ctrl(ctx, (1<<2), (0x1000 + 4), 0, pubexp); | - |
| 1801 | if (ret <= 0| TRUE | never evaluated | | FALSE | never evaluated |
) | 0 |
| 1802 | BN_free(pubexp); never executed: BN_free(pubexp); | 0 |
| 1803 | return never executed: return ret; ret;never executed: return ret; | 0 |
| 1804 | } | - |
| 1805 | | - |
| 1806 | if ( | - |
| 1807 | __extension__ ({ size_t __s1_len, __s2_len; (__builtin_constant_p (| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1808 | type| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1809 | ) && __builtin_constant_p (| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1810 | "rsa_keygen_primes"| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1811 | ) && (__s1_len = __builtin_strlen (| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1812 | type| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1813 | ), __s2_len = __builtin_strlen (| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1814 | "rsa_keygen_primes"| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1815 | ), (!((size_t)(const void *)((| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1816 | type| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1817 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1818 | type| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1819 | ) == 1) || __s1_len >= 4) && (!((size_t)(const void *)((| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1820 | "rsa_keygen_primes"| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1821 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1822 | "rsa_keygen_primes"| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1823 | ) == 1) || __s2_len >= 4)) ? __builtin_strcmp (| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1824 | type| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1825 | , | TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1826 | "rsa_keygen_primes"| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1827 | ) : (__builtin_constant_p (| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1828 | type| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1829 | ) && ((size_t)(const void *)((| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1830 | type| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1831 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1832 | type| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1833 | ) == 1) && (__s1_len = __builtin_strlen (| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1834 | type| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1835 | ), __s1_len < 4) ? (__builtin_constant_p (| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1836 | "rsa_keygen_primes"| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1837 | ) && ((size_t)(const void *)((| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1838 | "rsa_keygen_primes"| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1839 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1840 | "rsa_keygen_primes"| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1841 | ) == 1) ? __builtin_strcmp (| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1842 | type| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1843 | , | TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1844 | "rsa_keygen_primes"| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1845 | ) : (__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1846 | "rsa_keygen_primes"| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1847 | ); int __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1848 | type| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1849 | ))[0] - __s2[0]); if (__s1_len > 0| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 0-134 |
| 1850 | type| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1851 | ))[1] - __s2[1]); if (__s1_len > 1| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 0-134 |
| 1852 | type| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1853 | ))[2] - __s2[2]); if (__s1_len > 2| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) __result = (((const unsigned char *) (const char *) (never executed: __result = (((const unsigned char *) (const char *) ( type ))[3] - __s2[3]); | TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 0-134 |
| 1854 | type| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( type ))[3] - __s2[3]); | 0-134 |
| 1855 | ))[3] - __s2[3]);| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( type ))[3] - __s2[3]); }never executed: end of block }never executed: end of block __result; }))) : (__builtin_constant_p (| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 0-134 |
| 1856 | "rsa_keygen_primes"| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1857 | ) && ((size_t)(const void *)((| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1858 | "rsa_keygen_primes"| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1859 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1860 | "rsa_keygen_primes"| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1861 | ) == 1) && (__s2_len = __builtin_strlen (| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1862 | "rsa_keygen_primes"| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1863 | ), __s2_len < 4) ? (__builtin_constant_p (| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1864 | type| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1865 | ) && ((size_t)(const void *)((| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1866 | type| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1867 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1868 | type| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1869 | ) == 1) ? __builtin_strcmp (| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1870 | type| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1871 | , | TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1872 | "rsa_keygen_primes"| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1873 | ) : -(__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1874 | type| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1875 | ); int __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1876 | "rsa_keygen_primes"| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1877 | ))[0] - __s2[0]); if (__s2_len > 0| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 0-134 |
| 1878 | "rsa_keygen_primes"| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1879 | ))[1] - __s2[1]); if (__s2_len > 1| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 0-134 |
| 1880 | "rsa_keygen_primes"| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1881 | ))[2] - __s2[2]); if (__s2_len > 2| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) __result = (((const unsigned char *) (const char *) (never executed: __result = (((const unsigned char *) (const char *) ( "rsa_keygen_primes" ))[3] - __s2[3]); | TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 0-134 |
| 1882 | "rsa_keygen_primes"| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( "rsa_keygen_primes" ))[3] - __s2[3]); | 0-134 |
| 1883 | ))[3] - __s2[3]);| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( "rsa_keygen_primes" ))[3] - __s2[3]); }never executed: end of block }never executed: end of block __result; }))) : __builtin_strcmp (| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 0-134 |
| 1884 | type| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1885 | , | TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1886 | "rsa_keygen_primes"| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1887 | )))); }) | TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
| 3-134 |
| 1888 | == 0| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 134 times by 1 test |
) { | 3-134 |
| 1889 | int nprimes = atoi(value); | - |
| 1890 | | - |
| 1891 | returnexecuted 3 times by 1 test: return RSA_pkey_ctx_ctrl(ctx, (1<<2), (0x1000 + 13), nprimes, ((void *)0) ); RSA_pkey_ctx_ctrl(ctx, (1<<2), (0x1000 + 13), nprimes, executed 3 times by 1 test: return RSA_pkey_ctx_ctrl(ctx, (1<<2), (0x1000 + 13), nprimes, ((void *)0) ); | 3 |
| 1892 | ((void *)0)executed 3 times by 1 test: return RSA_pkey_ctx_ctrl(ctx, (1<<2), (0x1000 + 13), nprimes, ((void *)0) ); | 3 |
| 1893 | );executed 3 times by 1 test: return RSA_pkey_ctx_ctrl(ctx, (1<<2), (0x1000 + 13), nprimes, ((void *)0) ); | 3 |
| 1894 | } | - |
| 1895 | | - |
| 1896 | if ( | - |
| 1897 | __extension__ ({ size_t __s1_len, __s2_len; (__builtin_constant_p (| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1898 | type| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1899 | ) && __builtin_constant_p (| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1900 | "rsa_mgf1_md"| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1901 | ) && (__s1_len = __builtin_strlen (| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1902 | type| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1903 | ), __s2_len = __builtin_strlen (| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1904 | "rsa_mgf1_md"| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1905 | ), (!((size_t)(const void *)((| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1906 | type| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1907 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1908 | type| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1909 | ) == 1) || __s1_len >= 4) && (!((size_t)(const void *)((| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1910 | "rsa_mgf1_md"| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1911 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1912 | "rsa_mgf1_md"| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1913 | ) == 1) || __s2_len >= 4)) ? __builtin_strcmp (| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1914 | type| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1915 | , | TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1916 | "rsa_mgf1_md"| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1917 | ) : (__builtin_constant_p (| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1918 | type| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1919 | ) && ((size_t)(const void *)((| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1920 | type| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1921 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1922 | type| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1923 | ) == 1) && (__s1_len = __builtin_strlen (| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1924 | type| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1925 | ), __s1_len < 4) ? (__builtin_constant_p (| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1926 | "rsa_mgf1_md"| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1927 | ) && ((size_t)(const void *)((| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1928 | "rsa_mgf1_md"| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1929 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1930 | "rsa_mgf1_md"| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1931 | ) == 1) ? __builtin_strcmp (| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1932 | type| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1933 | , | TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1934 | "rsa_mgf1_md"| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1935 | ) : (__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1936 | "rsa_mgf1_md"| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1937 | ); int __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1938 | type| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1939 | ))[0] - __s2[0]); if (__s1_len > 0| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 0-131 |
| 1940 | type| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1941 | ))[1] - __s2[1]); if (__s1_len > 1| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 0-131 |
| 1942 | type| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1943 | ))[2] - __s2[2]); if (__s1_len > 2| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) __result = (((const unsigned char *) (const char *) (never executed: __result = (((const unsigned char *) (const char *) ( type ))[3] - __s2[3]); | TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 0-131 |
| 1944 | type| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( type ))[3] - __s2[3]); | 0-131 |
| 1945 | ))[3] - __s2[3]);| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( type ))[3] - __s2[3]); }never executed: end of block }never executed: end of block __result; }))) : (__builtin_constant_p (| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 0-131 |
| 1946 | "rsa_mgf1_md"| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1947 | ) && ((size_t)(const void *)((| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1948 | "rsa_mgf1_md"| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1949 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1950 | "rsa_mgf1_md"| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1951 | ) == 1) && (__s2_len = __builtin_strlen (| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1952 | "rsa_mgf1_md"| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1953 | ), __s2_len < 4) ? (__builtin_constant_p (| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1954 | type| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1955 | ) && ((size_t)(const void *)((| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1956 | type| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1957 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1958 | type| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1959 | ) == 1) ? __builtin_strcmp (| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1960 | type| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1961 | , | TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1962 | "rsa_mgf1_md"| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1963 | ) : -(__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1964 | type| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1965 | ); int __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1966 | "rsa_mgf1_md"| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1967 | ))[0] - __s2[0]); if (__s2_len > 0| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 0-131 |
| 1968 | "rsa_mgf1_md"| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1969 | ))[1] - __s2[1]); if (__s2_len > 1| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 0-131 |
| 1970 | "rsa_mgf1_md"| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1971 | ))[2] - __s2[2]); if (__s2_len > 2| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) __result = (((const unsigned char *) (const char *) (never executed: __result = (((const unsigned char *) (const char *) ( "rsa_mgf1_md" ))[3] - __s2[3]); | TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 0-131 |
| 1972 | "rsa_mgf1_md"| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( "rsa_mgf1_md" ))[3] - __s2[3]); | 0-131 |
| 1973 | ))[3] - __s2[3]);| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( "rsa_mgf1_md" ))[3] - __s2[3]); }never executed: end of block }never executed: end of block __result; }))) : __builtin_strcmp (| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 0-131 |
| 1974 | type| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1975 | , | TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1976 | "rsa_mgf1_md"| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1977 | )))); }) | TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 3-131 |
| 1978 | == 0| TRUE | evaluated 131 times by 1 test | | FALSE | evaluated 3 times by 1 test |
) | 3-131 |
| 1979 | returnexecuted 131 times by 1 test: return EVP_PKEY_CTX_md(ctx, ((1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7)) | ((1<<8) | (1<<9)), (0x1000 + 5), value); EVP_PKEY_CTX_md(ctx,executed 131 times by 1 test: return EVP_PKEY_CTX_md(ctx, ((1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7)) | ((1<<8) | (1<<9)), (0x1000 + 5), value); | 131 |
| 1980 | ((1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7)) | ((1<<8) | (1<<9)),executed 131 times by 1 test: return EVP_PKEY_CTX_md(ctx, ((1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7)) | ((1<<8) | (1<<9)), (0x1000 + 5), value); | 131 |
| 1981 | (0x1000 + 5), value);executed 131 times by 1 test: return EVP_PKEY_CTX_md(ctx, ((1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7)) | ((1<<8) | (1<<9)), (0x1000 + 5), value); | 131 |
| 1982 | | - |
| 1983 | if ((| TRUE | evaluated 2 times by 1 test | | FALSE | evaluated 1 time by 1 test |
ctx->pmeth->pkey_id == 912)| TRUE | evaluated 2 times by 1 test | | FALSE | evaluated 1 time by 1 test |
) { | 1-2 |
| 1984 | | - |
| 1985 | if ( | - |
| 1986 | __extension__ ({ size_t __s1_len, __s2_len; (__builtin_constant_p (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 1987 | type| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 1988 | ) && __builtin_constant_p (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 1989 | "rsa_pss_keygen_mgf1_md"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 1990 | ) && (__s1_len = __builtin_strlen (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 1991 | type| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 1992 | ), __s2_len = __builtin_strlen (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 1993 | "rsa_pss_keygen_mgf1_md"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 1994 | ), (!((size_t)(const void *)((| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 1995 | type| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 1996 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 1997 | type| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 1998 | ) == 1) || __s1_len >= 4) && (!((size_t)(const void *)((| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 1999 | "rsa_pss_keygen_mgf1_md"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2000 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2001 | "rsa_pss_keygen_mgf1_md"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2002 | ) == 1) || __s2_len >= 4)) ? __builtin_strcmp (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2003 | type| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2004 | , | TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2005 | "rsa_pss_keygen_mgf1_md"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2006 | ) : (__builtin_constant_p (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2007 | type| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2008 | ) && ((size_t)(const void *)((| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2009 | type| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2010 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2011 | type| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2012 | ) == 1) && (__s1_len = __builtin_strlen (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2013 | type| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2014 | ), __s1_len < 4) ? (__builtin_constant_p (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2015 | "rsa_pss_keygen_mgf1_md"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2016 | ) && ((size_t)(const void *)((| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2017 | "rsa_pss_keygen_mgf1_md"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2018 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2019 | "rsa_pss_keygen_mgf1_md"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2020 | ) == 1) ? __builtin_strcmp (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2021 | type| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2022 | , | TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2023 | "rsa_pss_keygen_mgf1_md"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2024 | ) : (__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2025 | "rsa_pss_keygen_mgf1_md"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2026 | ); int __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2027 | type| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2028 | ))[0] - __s2[0]); if (__s1_len > 0| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 0-1 |
| 2029 | type| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2030 | ))[1] - __s2[1]); if (__s1_len > 1| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 0-1 |
| 2031 | type| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2032 | ))[2] - __s2[2]); if (__s1_len > 2| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) __result = (((const unsigned char *) (const char *) (never executed: __result = (((const unsigned char *) (const char *) ( type ))[3] - __s2[3]); | TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 0-1 |
| 2033 | type| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( type ))[3] - __s2[3]); | 0-1 |
| 2034 | ))[3] - __s2[3]);| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( type ))[3] - __s2[3]); }never executed: end of block }never executed: end of block __result; }))) : (__builtin_constant_p (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 0-1 |
| 2035 | "rsa_pss_keygen_mgf1_md"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2036 | ) && ((size_t)(const void *)((| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2037 | "rsa_pss_keygen_mgf1_md"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2038 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2039 | "rsa_pss_keygen_mgf1_md"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2040 | ) == 1) && (__s2_len = __builtin_strlen (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2041 | "rsa_pss_keygen_mgf1_md"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2042 | ), __s2_len < 4) ? (__builtin_constant_p (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2043 | type| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2044 | ) && ((size_t)(const void *)((| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2045 | type| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2046 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2047 | type| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2048 | ) == 1) ? __builtin_strcmp (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2049 | type| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2050 | , | TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2051 | "rsa_pss_keygen_mgf1_md"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2052 | ) : -(__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2053 | type| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2054 | ); int __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2055 | "rsa_pss_keygen_mgf1_md"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2056 | ))[0] - __s2[0]); if (__s2_len > 0| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 0-1 |
| 2057 | "rsa_pss_keygen_mgf1_md"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2058 | ))[1] - __s2[1]); if (__s2_len > 1| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 0-1 |
| 2059 | "rsa_pss_keygen_mgf1_md"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2060 | ))[2] - __s2[2]); if (__s2_len > 2| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) __result = (((const unsigned char *) (const char *) (never executed: __result = (((const unsigned char *) (const char *) ( "rsa_pss_keygen_mgf1_md" ))[3] - __s2[3]); | TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 0-1 |
| 2061 | "rsa_pss_keygen_mgf1_md"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( "rsa_pss_keygen_mgf1_md" ))[3] - __s2[3]); | 0-1 |
| 2062 | ))[3] - __s2[3]);| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
never executed: __result = (((const unsigned char *) (const char *) ( "rsa_pss_keygen_mgf1_md" ))[3] - __s2[3]); }never executed: end of block }never executed: end of block __result; }))) : __builtin_strcmp (| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 0-1 |
| 2063 | type| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2064 | , | TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2065 | "rsa_pss_keygen_mgf1_md"| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2066 | )))); }) | TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 2067 | == 0| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
) | 1 |
| 2068 | returnexecuted 1 time by 1 test: return EVP_PKEY_CTX_md(ctx, (1<<2), (0x1000 + 5), value); EVP_PKEY_CTX_md(ctx, (1<<2),executed 1 time by 1 test: return EVP_PKEY_CTX_md(ctx, (1<<2), (0x1000 + 5), value); | 1 |
| 2069 | (0x1000 + 5), value);executed 1 time by 1 test: return EVP_PKEY_CTX_md(ctx, (1<<2), (0x1000 + 5), value); | 1 |
| 2070 | | - |
| 2071 | if ( | - |
| 2072 | __extension__ ({ size_t __s1_len, __s2_len; (__builtin_constant_p (| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2073 | type| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2074 | ) && __builtin_constant_p (| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2075 | "rsa_pss_keygen_md"| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2076 | ) && (__s1_len = __builtin_strlen (| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2077 | type| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2078 | ), __s2_len = __builtin_strlen (| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2079 | "rsa_pss_keygen_md"| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2080 | ), (!((size_t)(const void *)((| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2081 | type| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2082 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2083 | type| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2084 | ) == 1) || __s1_len >= 4) && (!((size_t)(const void *)((| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2085 | "rsa_pss_keygen_md"| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2086 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2087 | "rsa_pss_keygen_md"| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2088 | ) == 1) || __s2_len >= 4)) ? __builtin_strcmp (| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2089 | type| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2090 | , | TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2091 | "rsa_pss_keygen_md"| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2092 | ) : (__builtin_constant_p (| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2093 | type| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2094 | ) && ((size_t)(const void *)((| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2095 | type| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2096 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2097 | type| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2098 | ) == 1) && (__s1_len = __builtin_strlen (| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2099 | type| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2100 | ), __s1_len < 4) ? (__builtin_constant_p (| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2101 | "rsa_pss_keygen_md"| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2102 | ) && ((size_t)(const void *)((| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2103 | "rsa_pss_keygen_md"| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2104 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2105 | "rsa_pss_keygen_md"| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2106 | ) == 1) ? __builtin_strcmp (| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2107 | type| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2108 | , | TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2109 | "rsa_pss_keygen_md"| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2110 | ) : (__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2111 | "rsa_pss_keygen_md"| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2112 | ); int __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2113 | type| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2114 | ))[0] - __s2[0]); if (__s1_len > 0| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2115 | type| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2116 | ))[1] - __s2[1]); if (__s1_len > 1| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2117 | type| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2118 | ))[2] - __s2[2]); if (__s1_len > 2| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) __result = (((const unsigned char *) (const char *) (never executed: __result = (((const unsigned char *) (const char *) ( type ))[3] - __s2[3]); | TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2119 | type| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
never executed: __result = (((const unsigned char *) (const char *) ( type ))[3] - __s2[3]); | 0-1 |
| 2120 | ))[3] - __s2[3]);| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
never executed: __result = (((const unsigned char *) (const char *) ( type ))[3] - __s2[3]); }never executed: end of block }never executed: end of block __result; }))) : (__builtin_constant_p (| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2121 | "rsa_pss_keygen_md"| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2122 | ) && ((size_t)(const void *)((| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2123 | "rsa_pss_keygen_md"| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2124 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2125 | "rsa_pss_keygen_md"| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2126 | ) == 1) && (__s2_len = __builtin_strlen (| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2127 | "rsa_pss_keygen_md"| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2128 | ), __s2_len < 4) ? (__builtin_constant_p (| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2129 | type| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2130 | ) && ((size_t)(const void *)((| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2131 | type| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2132 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2133 | type| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2134 | ) == 1) ? __builtin_strcmp (| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2135 | type| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2136 | , | TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2137 | "rsa_pss_keygen_md"| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2138 | ) : -(__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2139 | type| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2140 | ); int __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2141 | "rsa_pss_keygen_md"| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2142 | ))[0] - __s2[0]); if (__s2_len > 0| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2143 | "rsa_pss_keygen_md"| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2144 | ))[1] - __s2[1]); if (__s2_len > 1| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2145 | "rsa_pss_keygen_md"| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2146 | ))[2] - __s2[2]); if (__s2_len > 2| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) __result = (((const unsigned char *) (const char *) (never executed: __result = (((const unsigned char *) (const char *) ( "rsa_pss_keygen_md" ))[3] - __s2[3]); | TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2147 | "rsa_pss_keygen_md"| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
never executed: __result = (((const unsigned char *) (const char *) ( "rsa_pss_keygen_md" ))[3] - __s2[3]); | 0-1 |
| 2148 | ))[3] - __s2[3]);| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
never executed: __result = (((const unsigned char *) (const char *) ( "rsa_pss_keygen_md" ))[3] - __s2[3]); }never executed: end of block }never executed: end of block __result; }))) : __builtin_strcmp (| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2149 | type| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2150 | , | TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2151 | "rsa_pss_keygen_md"| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2152 | )))); }) | TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2153 | == 0| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
) | 0-1 |
| 2154 | returnexecuted 1 time by 1 test: return EVP_PKEY_CTX_md(ctx, (1<<2), 1, value); EVP_PKEY_CTX_md(ctx, (1<<2),executed 1 time by 1 test: return EVP_PKEY_CTX_md(ctx, (1<<2), 1, value); | 1 |
| 2155 | 1, value);executed 1 time by 1 test: return EVP_PKEY_CTX_md(ctx, (1<<2), 1, value); | 1 |
| 2156 | | - |
| 2157 | if ( | - |
| 2158 | __extension__ ({ size_t __s1_len, __s2_len; (__builtin_constant_p (| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2159 | type| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2160 | ) && __builtin_constant_p (| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2161 | "rsa_pss_keygen_saltlen"| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2162 | ) && (__s1_len = __builtin_strlen (| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2163 | type| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2164 | ), __s2_len = __builtin_strlen (| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2165 | "rsa_pss_keygen_saltlen"| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2166 | ), (!((size_t)(const void *)((| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2167 | type| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2168 | ) + 1) - (size_t)(const void *)(| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2169 | type| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2170 | ) == 1) || __s1_len >= 4) && (!((size_t)(const void *)((| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2171 | "rsa_pss_keygen_saltlen"| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2172 | ) + 1) - (size_t)(const void *)(| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2173 | "rsa_pss_keygen_saltlen"| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2174 | ) == 1) || __s2_len >= 4)) ? __builtin_strcmp (| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2175 | type| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2176 | , | TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2177 | "rsa_pss_keygen_saltlen"| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2178 | ) : (__builtin_constant_p (| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2179 | type| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2180 | ) && ((size_t)(const void *)((| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2181 | type| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2182 | ) + 1) - (size_t)(const void *)(| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2183 | type| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2184 | ) == 1) && (__s1_len = __builtin_strlen (| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2185 | type| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2186 | ), __s1_len < 4) ? (__builtin_constant_p (| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2187 | "rsa_pss_keygen_saltlen"| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2188 | ) && ((size_t)(const void *)((| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2189 | "rsa_pss_keygen_saltlen"| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2190 | ) + 1) - (size_t)(const void *)(| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2191 | "rsa_pss_keygen_saltlen"| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2192 | ) == 1) ? __builtin_strcmp (| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2193 | type| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2194 | , | TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2195 | "rsa_pss_keygen_saltlen"| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2196 | ) : (__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2197 | "rsa_pss_keygen_saltlen"| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2198 | ); int __result = (((const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2199 | type| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2200 | ))[0] - __s2[0]); if (__s1_len > 0| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2201 | type| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2202 | ))[1] - __s2[1]); if (__s1_len > 1| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2203 | type| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2204 | ))[2] - __s2[2]); if (__s1_len > 2| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) __result = (((const unsigned char *) (const char *) (never executed: __result = (((const unsigned char *) (const char *) ( type ))[3] - __s2[3]); | 0 |
| 2205 | type| TRUE | never evaluated | | FALSE | never evaluated |
never executed: __result = (((const unsigned char *) (const char *) ( type ))[3] - __s2[3]); | 0 |
| 2206 | ))[3] - __s2[3]); } } __result; }))) : (__builtin_constant_p (| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2207 | "rsa_pss_keygen_saltlen"| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2208 | ) && ((size_t)(const void *)((| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2209 | "rsa_pss_keygen_saltlen"| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2210 | ) + 1) - (size_t)(const void *)(| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2211 | "rsa_pss_keygen_saltlen"| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2212 | ) == 1) && (__s2_len = __builtin_strlen (| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2213 | "rsa_pss_keygen_saltlen"| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2214 | ), __s2_len < 4) ? (__builtin_constant_p (| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2215 | type| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2216 | ) && ((size_t)(const void *)((| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2217 | type| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2218 | ) + 1) - (size_t)(const void *)(| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2219 | type| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2220 | ) == 1) ? __builtin_strcmp (| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2221 | type| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2222 | , | TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2223 | "rsa_pss_keygen_saltlen"| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2224 | ) : -(__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2225 | type| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2226 | ); int __result = (((const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2227 | "rsa_pss_keygen_saltlen"| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2228 | ))[0] - __s2[0]); if (__s2_len > 0| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2229 | "rsa_pss_keygen_saltlen"| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2230 | ))[1] - __s2[1]); if (__s2_len > 1| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2231 | "rsa_pss_keygen_saltlen"| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2232 | ))[2] - __s2[2]); if (__s2_len > 2| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) __result = (((const unsigned char *) (const char *) (never executed: __result = (((const unsigned char *) (const char *) ( "rsa_pss_keygen_saltlen" ))[3] - __s2[3]); | 0 |
| 2233 | "rsa_pss_keygen_saltlen"| TRUE | never evaluated | | FALSE | never evaluated |
never executed: __result = (((const unsigned char *) (const char *) ( "rsa_pss_keygen_saltlen" ))[3] - __s2[3]); | 0 |
| 2234 | ))[3] - __s2[3]); } } __result; }))) : __builtin_strcmp (| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2235 | type| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2236 | , | TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2237 | "rsa_pss_keygen_saltlen"| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2238 | )))); }) | TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2239 | == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { | 0 |
| 2240 | int saltlen = atoi(value); | - |
| 2241 | | - |
| 2242 | return never executed: return EVP_PKEY_CTX_ctrl(ctx, 912, (1<<2), (0x1000 + 2), saltlen, ((void *)0) ); EVP_PKEY_CTX_ctrl(ctx, 912, (1<<2), (0x1000 + 2), saltlen, never executed: return EVP_PKEY_CTX_ctrl(ctx, 912, (1<<2), (0x1000 + 2), saltlen, ((void *)0) ); | 0 |
| 2243 | ((void *)0) never executed: return EVP_PKEY_CTX_ctrl(ctx, 912, (1<<2), (0x1000 + 2), saltlen, ((void *)0) ); | 0 |
| 2244 | ); never executed: return EVP_PKEY_CTX_ctrl(ctx, 912, (1<<2), (0x1000 + 2), saltlen, ((void *)0) ); | 0 |
| 2245 | } | - |
| 2246 | } never executed: end of block | 0 |
| 2247 | | - |
| 2248 | if ( | - |
| 2249 | __extension__ ({ size_t __s1_len, __s2_len; (__builtin_constant_p (| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2250 | type| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2251 | ) && __builtin_constant_p (| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2252 | "rsa_oaep_md"| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2253 | ) && (__s1_len = __builtin_strlen (| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2254 | type| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2255 | ), __s2_len = __builtin_strlen (| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2256 | "rsa_oaep_md"| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2257 | ), (!((size_t)(const void *)((| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2258 | type| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2259 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2260 | type| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2261 | ) == 1) || __s1_len >= 4) && (!((size_t)(const void *)((| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2262 | "rsa_oaep_md"| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2263 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2264 | "rsa_oaep_md"| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2265 | ) == 1) || __s2_len >= 4)) ? __builtin_strcmp (| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2266 | type| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2267 | , | TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2268 | "rsa_oaep_md"| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2269 | ) : (__builtin_constant_p (| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2270 | type| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2271 | ) && ((size_t)(const void *)((| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2272 | type| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2273 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2274 | type| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2275 | ) == 1) && (__s1_len = __builtin_strlen (| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2276 | type| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2277 | ), __s1_len < 4) ? (__builtin_constant_p (| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2278 | "rsa_oaep_md"| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2279 | ) && ((size_t)(const void *)((| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2280 | "rsa_oaep_md"| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2281 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2282 | "rsa_oaep_md"| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2283 | ) == 1) ? __builtin_strcmp (| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2284 | type| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2285 | , | TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2286 | "rsa_oaep_md"| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2287 | ) : (__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2288 | "rsa_oaep_md"| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2289 | ); int __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2290 | type| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2291 | ))[0] - __s2[0]); if (__s1_len > 0| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2292 | type| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2293 | ))[1] - __s2[1]); if (__s1_len > 1| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2294 | type| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2295 | ))[2] - __s2[2]); if (__s1_len > 2| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) __result = (((const unsigned char *) (const char *) (never executed: __result = (((const unsigned char *) (const char *) ( type ))[3] - __s2[3]); | TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2296 | type| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
never executed: __result = (((const unsigned char *) (const char *) ( type ))[3] - __s2[3]); | 0-1 |
| 2297 | ))[3] - __s2[3]);| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
never executed: __result = (((const unsigned char *) (const char *) ( type ))[3] - __s2[3]); }never executed: end of block }never executed: end of block __result; }))) : (__builtin_constant_p (| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2298 | "rsa_oaep_md"| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2299 | ) && ((size_t)(const void *)((| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2300 | "rsa_oaep_md"| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2301 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2302 | "rsa_oaep_md"| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2303 | ) == 1) && (__s2_len = __builtin_strlen (| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2304 | "rsa_oaep_md"| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2305 | ), __s2_len < 4) ? (__builtin_constant_p (| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2306 | type| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2307 | ) && ((size_t)(const void *)((| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2308 | type| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2309 | ) + 1) - (size_t)(const void *)(| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2310 | type| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2311 | ) == 1) ? __builtin_strcmp (| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2312 | type| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2313 | , | TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2314 | "rsa_oaep_md"| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2315 | ) : -(__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2316 | type| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2317 | ); int __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2318 | "rsa_oaep_md"| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2319 | ))[0] - __s2[0]); if (__s2_len > 0| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2320 | "rsa_oaep_md"| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2321 | ))[1] - __s2[1]); if (__s2_len > 1| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2322 | "rsa_oaep_md"| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2323 | ))[2] - __s2[2]); if (__s2_len > 2| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) __result = (((const unsigned char *) (const char *) (never executed: __result = (((const unsigned char *) (const char *) ( "rsa_oaep_md" ))[3] - __s2[3]); | TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2324 | "rsa_oaep_md"| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
never executed: __result = (((const unsigned char *) (const char *) ( "rsa_oaep_md" ))[3] - __s2[3]); | 0-1 |
| 2325 | ))[3] - __s2[3]);| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
never executed: __result = (((const unsigned char *) (const char *) ( "rsa_oaep_md" ))[3] - __s2[3]); }never executed: end of block }never executed: end of block __result; }))) : __builtin_strcmp (| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2326 | type| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2327 | , | TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2328 | "rsa_oaep_md"| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2329 | )))); }) | TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 2330 | == 0| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
) | 0-1 |
| 2331 | returnexecuted 1 time by 1 test: return EVP_PKEY_CTX_md(ctx, ((1<<8) | (1<<9)), (0x1000 + 9), value); EVP_PKEY_CTX_md(ctx, ((1<<8) | (1<<9)),executed 1 time by 1 test: return EVP_PKEY_CTX_md(ctx, ((1<<8) | (1<<9)), (0x1000 + 9), value); | 1 |
| 2332 | (0x1000 + 9), value);executed 1 time by 1 test: return EVP_PKEY_CTX_md(ctx, ((1<<8) | (1<<9)), (0x1000 + 9), value); | 1 |
| 2333 | | - |
| 2334 | if ( | - |
| 2335 | __extension__ ({ size_t __s1_len, __s2_len; (__builtin_constant_p (| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2336 | type| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2337 | ) && __builtin_constant_p (| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2338 | "rsa_oaep_label"| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2339 | ) && (__s1_len = __builtin_strlen (| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2340 | type| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2341 | ), __s2_len = __builtin_strlen (| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2342 | "rsa_oaep_label"| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2343 | ), (!((size_t)(const void *)((| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2344 | type| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2345 | ) + 1) - (size_t)(const void *)(| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2346 | type| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2347 | ) == 1) || __s1_len >= 4) && (!((size_t)(const void *)((| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2348 | "rsa_oaep_label"| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2349 | ) + 1) - (size_t)(const void *)(| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2350 | "rsa_oaep_label"| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2351 | ) == 1) || __s2_len >= 4)) ? __builtin_strcmp (| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2352 | type| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2353 | , | TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2354 | "rsa_oaep_label"| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2355 | ) : (__builtin_constant_p (| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2356 | type| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2357 | ) && ((size_t)(const void *)((| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2358 | type| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2359 | ) + 1) - (size_t)(const void *)(| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2360 | type| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2361 | ) == 1) && (__s1_len = __builtin_strlen (| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2362 | type| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2363 | ), __s1_len < 4) ? (__builtin_constant_p (| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2364 | "rsa_oaep_label"| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2365 | ) && ((size_t)(const void *)((| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2366 | "rsa_oaep_label"| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2367 | ) + 1) - (size_t)(const void *)(| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2368 | "rsa_oaep_label"| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2369 | ) == 1) ? __builtin_strcmp (| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2370 | type| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2371 | , | TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2372 | "rsa_oaep_label"| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2373 | ) : (__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2374 | "rsa_oaep_label"| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2375 | ); int __result = (((const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2376 | type| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2377 | ))[0] - __s2[0]); if (__s1_len > 0| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2378 | type| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2379 | ))[1] - __s2[1]); if (__s1_len > 1| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2380 | type| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2381 | ))[2] - __s2[2]); if (__s1_len > 2| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) __result = (((const unsigned char *) (const char *) (never executed: __result = (((const unsigned char *) (const char *) ( type ))[3] - __s2[3]); | 0 |
| 2382 | type| TRUE | never evaluated | | FALSE | never evaluated |
never executed: __result = (((const unsigned char *) (const char *) ( type ))[3] - __s2[3]); | 0 |
| 2383 | ))[3] - __s2[3]); } } __result; }))) : (__builtin_constant_p (| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2384 | "rsa_oaep_label"| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2385 | ) && ((size_t)(const void *)((| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2386 | "rsa_oaep_label"| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2387 | ) + 1) - (size_t)(const void *)(| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2388 | "rsa_oaep_label"| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2389 | ) == 1) && (__s2_len = __builtin_strlen (| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2390 | "rsa_oaep_label"| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2391 | ), __s2_len < 4) ? (__builtin_constant_p (| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2392 | type| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2393 | ) && ((size_t)(const void *)((| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2394 | type| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2395 | ) + 1) - (size_t)(const void *)(| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2396 | type| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2397 | ) == 1) ? __builtin_strcmp (| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2398 | type| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2399 | , | TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2400 | "rsa_oaep_label"| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2401 | ) : -(__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2402 | type| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2403 | ); int __result = (((const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2404 | "rsa_oaep_label"| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2405 | ))[0] - __s2[0]); if (__s2_len > 0| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2406 | "rsa_oaep_label"| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2407 | ))[1] - __s2[1]); if (__s2_len > 1| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { __result = (((const unsigned char *) (const char *) (| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2408 | "rsa_oaep_label"| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2409 | ))[2] - __s2[2]); if (__s2_len > 2| TRUE | never evaluated | | FALSE | never evaluated |
&& __result == 0| TRUE | never evaluated | | FALSE | never evaluated |
) __result = (((const unsigned char *) (const char *) (never executed: __result = (((const unsigned char *) (const char *) ( "rsa_oaep_label" ))[3] - __s2[3]); | 0 |
| 2410 | "rsa_oaep_label"| TRUE | never evaluated | | FALSE | never evaluated |
never executed: __result = (((const unsigned char *) (const char *) ( "rsa_oaep_label" ))[3] - __s2[3]); | 0 |
| 2411 | ))[3] - __s2[3]); } } __result; }))) : __builtin_strcmp (| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2412 | type| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2413 | , | TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2414 | "rsa_oaep_label"| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2415 | )))); }) | TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2416 | == 0| TRUE | never evaluated | | FALSE | never evaluated |
) { | 0 |
| 2417 | unsigned char *lab; | - |
| 2418 | long lablen; | - |
| 2419 | int ret; | - |
| 2420 | | - |
| 2421 | lab = OPENSSL_hexstr2buf(value, &lablen); | - |
| 2422 | if (!lab| TRUE | never evaluated | | FALSE | never evaluated |
) | 0 |
| 2423 | return never executed: return 0; 0;never executed: return 0; | 0 |
| 2424 | ret = EVP_PKEY_CTX_ctrl(ctx, 6, ((1<<8) | (1<<9)), (0x1000 + 10), lablen, (void *)(lab)); | - |
| 2425 | if (ret <= 0| TRUE | never evaluated | | FALSE | never evaluated |
) | 0 |
| 2426 | CRYPTO_free(lab, __FILE__, 693); never executed: CRYPTO_free(lab, __FILE__, 693); | 0 |
| 2427 | return never executed: return ret; ret;never executed: return ret; | 0 |
| 2428 | } | - |
| 2429 | | - |
| 2430 | return never executed: return -2; -2;never executed: return -2; | 0 |
| 2431 | } | - |
| 2432 | | - |
| 2433 | | - |
| 2434 | static int rsa_set_pss_param(RSA *rsa, EVP_PKEY_CTX *ctx) | - |
| 2435 | { | - |
| 2436 | RSA_PKEY_CTX *rctx = ctx->data; | - |
| 2437 | | - |
| 2438 | if (!(ctx->pmeth->pkey_id == 912)| TRUE | evaluated 12 times by 1 test | | FALSE | evaluated 1 time by 1 test |
) | 1-12 |
| 2439 | returnexecuted 12 times by 1 test: return 1; 1;executed 12 times by 1 test: return 1; | 12 |
| 2440 | | - |
| 2441 | if (rctx->md == | TRUE | never evaluated | | FALSE | evaluated 1 time by 1 test |
| 0-1 |
| 2442 | ((void *)0)| TRUE | never evaluated | | FALSE | evaluated 1 time by 1 test |
| 0-1 |
| 2443 | && rctx->mgf1md == | TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2444 | ((void *)0)| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 2445 | && rctx->saltlen == -2| TRUE | never evaluated | | FALSE | never evaluated |
) | 0 |
| 2446 | return never executed: return 1; 1;never executed: return 1; | 0 |
| 2447 | rsa->pss = rsa_pss_params_create(rctx->md, rctx->mgf1md, | - |
| 2448 | rctx->saltlen == -2 ? 0 : rctx->saltlen); | - |
| 2449 | if (rsa->pss == | TRUE | never evaluated | | FALSE | evaluated 1 time by 1 test |
| 0-1 |
| 2450 | ((void *)0)| TRUE | never evaluated | | FALSE | evaluated 1 time by 1 test |
| 0-1 |
| 2451 | ) | - |
| 2452 | return never executed: return 0; 0;never executed: return 0; | 0 |
| 2453 | returnexecuted 1 time by 1 test: return 1; 1;executed 1 time by 1 test: return 1; | 1 |
| 2454 | } | - |
| 2455 | | - |
| 2456 | static int pkey_rsa_keygen(EVP_PKEY_CTX *ctx, EVP_PKEY *pkey) | - |
| 2457 | { | - |
| 2458 | RSA *rsa = | - |
| 2459 | ((void *)0) | - |
| 2460 | ; | - |
| 2461 | RSA_PKEY_CTX *rctx = ctx->data; | - |
| 2462 | BN_GENCB *pcb; | - |
| 2463 | int ret; | - |
| 2464 | | - |
| 2465 | if (rctx->pub_exp == | TRUE | evaluated 13 times by 1 test | | FALSE | never evaluated |
| 0-13 |
| 2466 | ((void *)0)| TRUE | evaluated 13 times by 1 test | | FALSE | never evaluated |
| 0-13 |
| 2467 | ) { | - |
| 2468 | rctx->pub_exp = BN_new(); | - |
| 2469 | if (rctx->pub_exp == | TRUE | never evaluated | | FALSE | evaluated 13 times by 1 test |
| 0-13 |
| 2470 | ((void *)0)| TRUE | never evaluated | | FALSE | evaluated 13 times by 1 test |
| 0-13 |
| 2471 | || !BN_set_word(rctx->pub_exp, 0x10001L)| TRUE | never evaluated | | FALSE | evaluated 13 times by 1 test |
) | 0-13 |
| 2472 | return never executed: return 0; 0;never executed: return 0; | 0 |
| 2473 | }executed 13 times by 1 test: end of block | 13 |
| 2474 | rsa = RSA_new(); | - |
| 2475 | if (rsa == | TRUE | never evaluated | | FALSE | evaluated 13 times by 1 test |
| 0-13 |
| 2476 | ((void *)0)| TRUE | never evaluated | | FALSE | evaluated 13 times by 1 test |
| 0-13 |
| 2477 | ) | - |
| 2478 | return never executed: return 0; 0;never executed: return 0; | 0 |
| 2479 | if (ctx->pkey_gencb| TRUE | evaluated 12 times by 1 test | | FALSE | evaluated 1 time by 1 test |
) { | 1-12 |
| 2480 | pcb = BN_GENCB_new(); | - |
| 2481 | if (pcb == | TRUE | never evaluated | | FALSE | evaluated 12 times by 1 test |
| 0-12 |
| 2482 | ((void *)0)| TRUE | never evaluated | | FALSE | evaluated 12 times by 1 test |
| 0-12 |
| 2483 | ) { | - |
| 2484 | RSA_free(rsa); | - |
| 2485 | return never executed: return 0; 0;never executed: return 0; | 0 |
| 2486 | } | - |
| 2487 | evp_pkey_set_cb_translate(pcb, ctx); | - |
| 2488 | }executed 12 times by 1 test: end of block else { | 12 |
| 2489 | pcb = | - |
| 2490 | ((void *)0) | - |
| 2491 | ; | - |
| 2492 | }executed 1 time by 1 test: end of block | 1 |
| 2493 | ret = RSA_generate_multi_prime_key(rsa, rctx->nbits, rctx->primes, | - |
| 2494 | rctx->pub_exp, pcb); | - |
| 2495 | BN_GENCB_free(pcb); | - |
| 2496 | if (ret > 0| TRUE | evaluated 13 times by 1 test | | FALSE | never evaluated |
&& !rsa_set_pss_param(rsa, ctx)| TRUE | never evaluated | | FALSE | evaluated 13 times by 1 test |
) { | 0-13 |
| 2497 | RSA_free(rsa); | - |
| 2498 | return never executed: return 0; 0;never executed: return 0; | 0 |
| 2499 | } | - |
| 2500 | if (ret > 0| TRUE | evaluated 13 times by 1 test | | FALSE | never evaluated |
) | 0-13 |
| 2501 | EVP_PKEY_assign(pkey, ctx->pmeth->pkey_id, rsa);executed 13 times by 1 test: EVP_PKEY_assign(pkey, ctx->pmeth->pkey_id, rsa); | 13 |
| 2502 | else | - |
| 2503 | RSA_free(rsa); never executed: RSA_free(rsa); | 0 |
| 2504 | returnexecuted 13 times by 1 test: return ret; ret;executed 13 times by 1 test: return ret; | 13 |
| 2505 | } | - |
| 2506 | | - |
| 2507 | const EVP_PKEY_METHOD rsa_pkey_meth = { | - |
| 2508 | 6, | - |
| 2509 | 2, | - |
| 2510 | pkey_rsa_init, | - |
| 2511 | pkey_rsa_copy, | - |
| 2512 | pkey_rsa_cleanup, | - |
| 2513 | | - |
| 2514 | 0, 0, | - |
| 2515 | | - |
| 2516 | 0, | - |
| 2517 | pkey_rsa_keygen, | - |
| 2518 | | - |
| 2519 | 0, | - |
| 2520 | pkey_rsa_sign, | - |
| 2521 | | - |
| 2522 | 0, | - |
| 2523 | pkey_rsa_verify, | - |
| 2524 | | - |
| 2525 | 0, | - |
| 2526 | pkey_rsa_verifyrecover, | - |
| 2527 | | - |
| 2528 | 0, 0, 0, 0, | - |
| 2529 | | - |
| 2530 | 0, | - |
| 2531 | pkey_rsa_encrypt, | - |
| 2532 | | - |
| 2533 | 0, | - |
| 2534 | pkey_rsa_decrypt, | - |
| 2535 | | - |
| 2536 | 0, 0, | - |
| 2537 | | - |
| 2538 | pkey_rsa_ctrl, | - |
| 2539 | pkey_rsa_ctrl_str | - |
| 2540 | }; | - |
| 2541 | | - |
| 2542 | | - |
| 2543 | | - |
| 2544 | | - |
| 2545 | | - |
| 2546 | | - |
| 2547 | static int pkey_pss_init(EVP_PKEY_CTX *ctx) | - |
| 2548 | { | - |
| 2549 | RSA *rsa; | - |
| 2550 | RSA_PKEY_CTX *rctx = ctx->data; | - |
| 2551 | const EVP_MD *md; | - |
| 2552 | const EVP_MD *mgf1md; | - |
| 2553 | int min_saltlen, max_saltlen; | - |
| 2554 | | - |
| 2555 | | - |
| 2556 | if (!(ctx->pmeth->pkey_id == 912)| TRUE | never evaluated | | FALSE | evaluated 19 times by 1 test |
) | 0-19 |
| 2557 | return never executed: return 0; 0;never executed: return 0; | 0 |
| 2558 | rsa = ctx->pkey->pkey.rsa; | - |
| 2559 | | - |
| 2560 | if (rsa->pss == | TRUE | evaluated 6 times by 1 test | | FALSE | evaluated 13 times by 1 test |
| 6-13 |
| 2561 | ((void *)0)| TRUE | evaluated 6 times by 1 test | | FALSE | evaluated 13 times by 1 test |
| 6-13 |
| 2562 | ) | - |
| 2563 | returnexecuted 6 times by 1 test: return 1; 1;executed 6 times by 1 test: return 1; | 6 |
| 2564 | | - |
| 2565 | if (!rsa_pss_get_param(rsa->pss, &md, &mgf1md, &min_saltlen)| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 12 times by 1 test |
) | 1-12 |
| 2566 | returnexecuted 1 time by 1 test: return 0; 0;executed 1 time by 1 test: return 0; | 1 |
| 2567 | | - |
| 2568 | | - |
| 2569 | max_saltlen = RSA_size(rsa) - EVP_MD_size(md); | - |
| 2570 | if ((| TRUE | never evaluated | | FALSE | evaluated 12 times by 1 test |
RSA_bits(rsa) & 0x7) == 1| TRUE | never evaluated | | FALSE | evaluated 12 times by 1 test |
) | 0-12 |
| 2571 | max_saltlen--; never executed: max_saltlen--; | 0 |
| 2572 | if (min_saltlen > max_saltlen| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 11 times by 1 test |
) { | 1-11 |
| 2573 | ERR_put_error(4,(165),(150),__FILE__,820); | - |
| 2574 | returnexecuted 1 time by 1 test: return 0; 0;executed 1 time by 1 test: return 0; | 1 |
| 2575 | } | - |
| 2576 | | - |
| 2577 | rctx->min_saltlen = min_saltlen; | - |
| 2578 | | - |
| 2579 | | - |
| 2580 | | - |
| 2581 | | - |
| 2582 | | - |
| 2583 | | - |
| 2584 | rctx->md = md; | - |
| 2585 | rctx->mgf1md = mgf1md; | - |
| 2586 | rctx->saltlen = min_saltlen; | - |
| 2587 | | - |
| 2588 | returnexecuted 11 times by 1 test: return 1; 1;executed 11 times by 1 test: return 1; | 11 |
| 2589 | } | - |
| 2590 | | - |
| 2591 | const EVP_PKEY_METHOD rsa_pss_pkey_meth = { | - |
| 2592 | 912, | - |
| 2593 | 2, | - |
| 2594 | pkey_rsa_init, | - |
| 2595 | pkey_rsa_copy, | - |
| 2596 | pkey_rsa_cleanup, | - |
| 2597 | | - |
| 2598 | 0, 0, | - |
| 2599 | | - |
| 2600 | 0, | - |
| 2601 | pkey_rsa_keygen, | - |
| 2602 | | - |
| 2603 | pkey_pss_init, | - |
| 2604 | pkey_rsa_sign, | - |
| 2605 | | - |
| 2606 | pkey_pss_init, | - |
| 2607 | pkey_rsa_verify, | - |
| 2608 | | - |
| 2609 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | - |
| 2610 | | - |
| 2611 | pkey_rsa_ctrl, | - |
| 2612 | pkey_rsa_ctrl_str | - |
| 2613 | }; | - |
| | |