| Absolute File Name: | /home/opencoverage/opencoverage/guest-scripts/libressl/src/crypto/camellia/cmll_cfb.c |
| Switch to Source code | Preprocessed file |
| Line | Source | Count |
|---|---|---|
| 1 | void | - |
| 2 | Camellia_cfb128_encrypt(const unsigned char *in, unsigned char *out, | - |
| 3 | size_t length, const CAMELLIA_KEY *key, unsigned char *ivec, int *num, | - |
| 4 | const int enc) | - |
| 5 | { | - |
| 6 | CRYPTO_cfb128_encrypt(in, out, length, key, ivec, num, enc, | - |
| 7 | (block128_f)Camellia_encrypt); | - |
| 8 | } executed 24 times by 1 test: end of blockExecuted by:
| 24 |
| 9 | - | |
| 10 | - | |
| 11 | void | - |
| 12 | Camellia_cfb1_encrypt(const unsigned char *in, unsigned char *out, | - |
| 13 | size_t length, const CAMELLIA_KEY *key, unsigned char *ivec, int *num, | - |
| 14 | const int enc) | - |
| 15 | { | - |
| 16 | CRYPTO_cfb128_1_encrypt(in, out, length, key, ivec, num, enc, | - |
| 17 | (block128_f)Camellia_encrypt); | - |
| 18 | } never executed: end of block | 0 |
| 19 | - | |
| 20 | void | - |
| 21 | Camellia_cfb8_encrypt(const unsigned char *in, unsigned char *out, | - |
| 22 | size_t length, const CAMELLIA_KEY *key, unsigned char *ivec, int *num, | - |
| 23 | const int enc) | - |
| 24 | { | - |
| 25 | CRYPTO_cfb128_8_encrypt(in, out, length, key, ivec, num, enc, | - |
| 26 | (block128_f)Camellia_encrypt); | - |
| 27 | } never executed: end of block | 0 |
| Switch to Source code | Preprocessed file |