diff options
author | Dimitri Staessens <dimitri@ouroboros.rocks> | 2023-02-19 13:18:52 +0100 |
---|---|---|
committer | Sander Vrijders <sander@ouroboros.rocks> | 2023-02-23 14:01:00 +0100 |
commit | 59703c95fb529386574a334c9cff7cd5d4f16255 (patch) | |
tree | a9d0b25b10a2c737410bb9f4fce00504ab51dbbe /src/lib/dev.c | |
parent | 269f25d3bac5ab871d8044935eacc15cfeadeec6 (diff) | |
download | ouroboros-59703c95fb529386574a334c9cff7cd5d4f16255.tar.gz ouroboros-59703c95fb529386574a334c9cff7cd5d4f16255.zip |
lib: Refactor hash internals
The internal hash enum now matches the public one w.r.t. directory
hash policies. This removes some unnecessary conversion.
Signed-off-by: Dimitri Staessens <dimitri@ouroboros.rocks>
Signed-off-by: Sander Vrijders <sander@ouroboros.rocks>
Diffstat (limited to 'src/lib/dev.c')
-rw-r--r-- | src/lib/dev.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/dev.c b/src/lib/dev.c index 360b65d5..c46bbdd7 100644 --- a/src/lib/dev.c +++ b/src/lib/dev.c @@ -50,6 +50,9 @@ #include <ouroboros/rib.h> #endif +#ifdef HAVE_LIBGCRYPT +#include <gcrypt.h> +#endif #include <stdlib.h> #include <string.h> #include <stdio.h> |