Line | Source | Count |
1 | | - |
2 | | - |
3 | | - |
4 | | - |
5 | | - |
6 | | - |
7 | | - |
8 | | - |
9 | | - |
10 | #include <openssl/camellia.h> | - |
11 | #include <openssl/modes.h> | - |
12 | | - |
13 | | - |
14 | | - |
15 | | - |
16 | | - |
17 | | - |
18 | | - |
19 | void Camellia_cfb128_encrypt(const unsigned char *in, unsigned char *out, | - |
20 | size_t length, const CAMELLIA_KEY *key, | - |
21 | unsigned char *ivec, int *num, const int enc) | - |
22 | { | - |
23 | | - |
24 | CRYPTO_cfb128_encrypt(in, out, length, key, ivec, num, enc, | - |
25 | (block128_f) Camellia_encrypt); | - |
26 | } never executed: end of block | 0 |
27 | | - |
28 | | - |
29 | void Camellia_cfb1_encrypt(const unsigned char *in, unsigned char *out, | - |
30 | size_t length, const CAMELLIA_KEY *key, | - |
31 | unsigned char *ivec, int *num, const int enc) | - |
32 | { | - |
33 | CRYPTO_cfb128_1_encrypt(in, out, length, key, ivec, num, enc, | - |
34 | (block128_f) Camellia_encrypt); | - |
35 | } never executed: end of block | 0 |
36 | | - |
37 | void Camellia_cfb8_encrypt(const unsigned char *in, unsigned char *out, | - |
38 | size_t length, const CAMELLIA_KEY *key, | - |
39 | unsigned char *ivec, int *num, const int enc) | - |
40 | { | - |
41 | CRYPTO_cfb128_8_encrypt(in, out, length, key, ivec, num, enc, | - |
42 | (block128_f) Camellia_encrypt); | - |
43 | } never executed: end of block | 0 |
| | |