OpenCoverage

aes_wrap.c

Absolute File Name:/home/opencoverage/opencoverage/guest-scripts/openssl/src/crypto/aes/aes_wrap.c
Switch to Source codePreprocessed file
LineSourceCount
1-
2int AES_wrap_key(AES_KEY *key, const unsigned char *iv,-
3 unsigned char *out,-
4 const unsigned char *in, unsigned int inlen)-
5{-
6 return
executed 2 times by 1 test: return CRYPTO_128_wrap(key, iv, out, in, inlen, (block128_f) AES_encrypt);
Executed by:
  • libcrypto.so.1.1
CRYPTO_128_wrap(key, iv, out, in, inlen, (block128_f) AES_encrypt);
executed 2 times by 1 test: return CRYPTO_128_wrap(key, iv, out, in, inlen, (block128_f) AES_encrypt);
Executed by:
  • libcrypto.so.1.1
2
7}-
8-
9int AES_unwrap_key(AES_KEY *key, const unsigned char *iv,-
10 unsigned char *out,-
11 const unsigned char *in, unsigned int inlen)-
12{-
13 return
executed 2 times by 1 test: return CRYPTO_128_unwrap(key, iv, out, in, inlen, (block128_f) AES_decrypt);
Executed by:
  • libcrypto.so.1.1
CRYPTO_128_unwrap(key, iv, out, in, inlen,
executed 2 times by 1 test: return CRYPTO_128_unwrap(key, iv, out, in, inlen, (block128_f) AES_decrypt);
Executed by:
  • libcrypto.so.1.1
2
14 (block128_f) AES_decrypt);
executed 2 times by 1 test: return CRYPTO_128_unwrap(key, iv, out, in, inlen, (block128_f) AES_decrypt);
Executed by:
  • libcrypto.so.1.1
2
15}-
Switch to Source codePreprocessed file

Generated by Squish Coco 4.2.2