OpenCoverage

m_wp.c

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

Generated by Squish Coco 4.2.2