... | ... |
@@ -15,6 +15,7 @@ sources=$(filter-out $(auto_gen), $(wildcard *.c) \ |
15 | 15 |
$(wildcard core/parser/*.c) $(wildcard core/parser/digest/*.c) \ |
16 | 16 |
$(wildcard core/parser/contact/*.c) $(wildcard core/parser/sdp/*.c) \ |
17 | 17 |
$(wildcard core/rand/*.c) $(wildcard core/rand/isaac/*.c) ) \ |
18 |
+ $(wildcard core/crypto/*.c) \ |
|
18 | 19 |
$(wildcard core/cfg/*.c) $(auto_gen) |
19 | 20 |
ifeq ($(CORE_TLS), 1) |
20 | 21 |
sources+= $(wildcard tls/*.c) |
... | ... |
@@ -29,7 +29,7 @@ |
29 | 29 |
#include "parser/msg_parser.h" |
30 | 30 |
#include "parser/parse_to.h" |
31 | 31 |
#include "parser/parse_from.h" |
32 |
-#include "md5utils.h" |
|
32 |
+#include "crypto/md5utils.h" |
|
33 | 33 |
|
34 | 34 |
/*! \brief calculate characteristic value of a message -- this value |
35 | 35 |
is used to identify a transaction during the process of |
30 | 30 |
similarity index 97% |
31 | 31 |
rename from src/core/md5utils.c |
32 | 32 |
rename to src/core/crypto/md5utils.c |
... | ... |
@@ -33,8 +33,8 @@ |
33 | 33 |
#include <string.h> |
34 | 34 |
#include "md5.h" |
35 | 35 |
#include "md5utils.h" |
36 |
-#include "dprint.h" |
|
37 |
-#include "ut.h" |
|
36 |
+#include "../dprint.h" |
|
37 |
+#include "../ut.h" |
|
38 | 38 |
|
39 | 39 |
|
40 | 40 |
/*! |