| Absolute File Name: | /home/opencoverage/opencoverage/guest-scripts/openssl/src/crypto/seed/seed_cbc.c |
| Switch to Source code | Preprocessed file |
| Line | Source | Count | ||||||
|---|---|---|---|---|---|---|---|---|
| 1 | - | |||||||
| 2 | void SEED_cbc_encrypt(const unsigned char *in, unsigned char *out, | - | ||||||
| 3 | size_t len, const SEED_KEY_SCHEDULE *ks, | - | ||||||
| 4 | unsigned char ivec[16], int enc) | - | ||||||
| 5 | { | - | ||||||
| 6 | if (enc
| 152-275 | ||||||
| 7 | CRYPTO_cbc128_encrypt(in, out, len, ks, ivec, executed 275 times by 1 test: CRYPTO_cbc128_encrypt(in, out, len, ks, ivec, (block128_f) SEED_encrypt);Executed by:
| 275 | ||||||
| 8 | (block128_f) SEED_encrypt); executed 275 times by 1 test: CRYPTO_cbc128_encrypt(in, out, len, ks, ivec, (block128_f) SEED_encrypt);Executed by:
| 275 | ||||||
| 9 | else | - | ||||||
| 10 | CRYPTO_cbc128_decrypt(in, out, len, ks, ivec, executed 152 times by 1 test: CRYPTO_cbc128_decrypt(in, out, len, ks, ivec, (block128_f) SEED_decrypt);Executed by:
| 152 | ||||||
| 11 | (block128_f) SEED_decrypt); executed 152 times by 1 test: CRYPTO_cbc128_decrypt(in, out, len, ks, ivec, (block128_f) SEED_decrypt);Executed by:
| 152 | ||||||
| 12 | } | - | ||||||
| Switch to Source code | Preprocessed file |