OpenCoverage

m_md4.c

Absolute File Name:/home/opencoverage/opencoverage/guest-scripts/openssl/src/crypto/evp/m_md4.c
Switch to Source codePreprocessed file
LineSourceCount
1-
2-
3-
4-
5-
6-
7static int init(EVP_MD_CTX *ctx)-
8{-
9 return
executed 7 times by 1 test: return MD4_Init(EVP_MD_CTX_md_data(ctx));
Executed by:
  • libcrypto.so.1.1
MD4_Init(EVP_MD_CTX_md_data(ctx));
executed 7 times by 1 test: return MD4_Init(EVP_MD_CTX_md_data(ctx));
Executed by:
  • libcrypto.so.1.1
7
10}-
11-
12static int update(EVP_MD_CTX *ctx, const void *data, size_t count)-
13{-
14 return
executed 7 times by 1 test: return MD4_Update(EVP_MD_CTX_md_data(ctx), data, count);
Executed by:
  • libcrypto.so.1.1
MD4_Update(EVP_MD_CTX_md_data(ctx), data, count);
executed 7 times by 1 test: return MD4_Update(EVP_MD_CTX_md_data(ctx), data, count);
Executed by:
  • libcrypto.so.1.1
7
15}-
16-
17static int final(EVP_MD_CTX *ctx, unsigned char *md)-
18{-
19 return
executed 7 times by 1 test: return MD4_Final(md, EVP_MD_CTX_md_data(ctx));
Executed by:
  • libcrypto.so.1.1
MD4_Final(md, EVP_MD_CTX_md_data(ctx));
executed 7 times by 1 test: return MD4_Final(md, EVP_MD_CTX_md_data(ctx));
Executed by:
  • libcrypto.so.1.1
7
20}-
21-
22static const EVP_MD md4_md = {-
23 257,-
24 396,-
25 16,-
26 0,-
27 init,-
28 update,-
29 final,-
30 -
31 ((void *)0)-
32 ,-
33 -
34 ((void *)0)-
35 ,-
36 64,-
37 sizeof(EVP_MD *) + sizeof(MD4_CTX),-
38};-
39-
40const EVP_MD *EVP_md4(void)-
41{-
42 return
executed 1969 times by 1 test: return &md4_md;
Executed by:
  • libcrypto.so.1.1
&md4_md;
executed 1969 times by 1 test: return &md4_md;
Executed by:
  • libcrypto.so.1.1
1969
43}-
Switch to Source codePreprocessed file

Generated by Squish Coco 4.2.2