| Line | Source | Count |
| 1 | | - |
| 2 | | - |
| 3 | | - |
| 4 | | - |
| 5 | | - |
| 6 | | - |
| 7 | | - |
| 8 | void Camellia_cfb128_encrypt(const unsigned char *in, unsigned char *out, | - |
| 9 | size_t length, const CAMELLIA_KEY *key, | - |
| 10 | unsigned char *ivec, int *num, const int enc) | - |
| 11 | { | - |
| 12 | | - |
| 13 | CRYPTO_cfb128_encrypt(in, out, length, key, ivec, num, enc, | - |
| 14 | (block128_f) Camellia_encrypt); | - |
| 15 | } never executed: end of block | 0 |
| 16 | | - |
| 17 | | - |
| 18 | void Camellia_cfb1_encrypt(const unsigned char *in, unsigned char *out, | - |
| 19 | size_t length, const CAMELLIA_KEY *key, | - |
| 20 | unsigned char *ivec, int *num, const int enc) | - |
| 21 | { | - |
| 22 | CRYPTO_cfb128_1_encrypt(in, out, length, key, ivec, num, enc, | - |
| 23 | (block128_f) Camellia_encrypt); | - |
| 24 | } never executed: end of block | 0 |
| 25 | | - |
| 26 | void Camellia_cfb8_encrypt(const unsigned char *in, unsigned char *out, | - |
| 27 | size_t length, const CAMELLIA_KEY *key, | - |
| 28 | unsigned char *ivec, int *num, const int enc) | - |
| 29 | { | - |
| 30 | CRYPTO_cfb128_8_encrypt(in, out, length, key, ivec, num, enc, | - |
| 31 | (block128_f) Camellia_encrypt); | - |
| 32 | } never executed: end of block | 0 |
| | |