Add initial crypto functionality
[libcontrac.git] / include / contrac / contrac_private.h
1 /** \ingroup contrac
2 * @file
3 * @author David Llewellyn-Jones
4 * @version $(VERSION)
5 *
6 * @section LICENSE
7 *
8 *
9 *
10 * @brief
11 * @section DESCRIPTION
12 *
13 *
14 *
15 */
16
17 #ifndef __CONTRAC_PRIVATE_H
18 #define __CONTRAC_PRIVATE_H
19
20 // Includes
21
22 #include "contrac/contrac.h"
23
24 // Defines
25
26 // Data sizes in bytes
27
28 // Structures
29
30 // Function prototypes
31
32 void contrac_set_tracing_key(Contrac * data, unsigned char const * tracing_key);
33 bool contrac_set_tracing_key_base64(Contrac * data, char const * tracing_key);
34
35 // Function definitions
36
37 #endif // __CONTRAC_PRIVATE_H
38