OpenCoverage

seed_cbc.c

Absolute File Name:/home/opencoverage/opencoverage/guest-scripts/openssl/src/crypto/seed/seed_cbc.c
Switch to Source codePreprocessed file
LineSourceCount
1-
2void 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
encDescription
TRUEevaluated 275 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
FALSEevaluated 152 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
)
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:
  • libcrypto.so.1.1
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:
  • libcrypto.so.1.1
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:
  • libcrypto.so.1.1
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:
  • libcrypto.so.1.1
152
12}-
Switch to Source codePreprocessed file

Generated by Squish Coco 4.2.2