| Absolute File Name: | /home/opencoverage/opencoverage/guest-scripts/libressl/src/crypto/poly1305/poly1305.c |
| Switch to Source code | Preprocessed file |
| Line | Source | Count |
|---|---|---|
| 1 | - | |
| 2 | void | - |
| 3 | CRYPTO_poly1305_init(poly1305_context *ctx, const unsigned char key[32]) | - |
| 4 | { | - |
| 5 | poly1305_init(ctx, key); | - |
| 6 | } executed 426 times by 4 tests: end of blockExecuted by:
| 426 |
| 7 | - | |
| 8 | void | - |
| 9 | CRYPTO_poly1305_update(poly1305_context *ctx, const unsigned char *in, | - |
| 10 | size_t len) | - |
| 11 | { | - |
| 12 | poly1305_update(ctx, in, len); | - |
| 13 | } executed 1398 times by 4 tests: end of blockExecuted by:
| 1398 |
| 14 | - | |
| 15 | void | - |
| 16 | CRYPTO_poly1305_finish(poly1305_context *ctx, unsigned char mac[16]) | - |
| 17 | { | - |
| 18 | poly1305_finish(ctx, mac); | - |
| 19 | } executed 426 times by 4 tests: end of blockExecuted by:
| 426 |
| Switch to Source code | Preprocessed file |