From e013a8f1130e10108cb7e1e2e6ae750ebe1c86db Mon Sep 17 00:00:00 2001 From: Edouard DUPIN Date: Wed, 15 Dec 2021 22:32:54 +0100 Subject: [PATCH] [DEV] integrate GLD --- GLD_algue.json | 5 ++--- algue/sha512.cpp | 1 + algue/sha512.hpp | 2 ++ 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/GLD_algue.json b/GLD_algue.json index 69ca28b..3bcbc9d 100644 --- a/GLD_algue.json +++ b/GLD_algue.json @@ -3,7 +3,7 @@ "group-id":"com.atria-soft", "description":"Algorithm generic", "license":"MPL-2", - "license-file":"file://LICENCE.txt", + "license-file":"file://LICENSE", "maintainer":"file://authors.txt", "author":"file://authors.txt", "version":"file://version.txt", @@ -26,8 +26,7 @@ "." ], "compilation-version": { - "language": "c++", - "version": 2017 + "c++": 2017 }, "dependency": [ "elog", diff --git a/algue/sha512.cpp b/algue/sha512.cpp index 76b2b79..0f47c05 100644 --- a/algue/sha512.cpp +++ b/algue/sha512.cpp @@ -46,6 +46,7 @@ #include #include #include +#include static const uint32_t ALGUE_SHA384_512_BLOCK_SIZE = (1024/8); static const uint32_t ALGUE_DIGEST_SIZE = ( 512 / 8); diff --git a/algue/sha512.hpp b/algue/sha512.hpp index ad3c950..83c0b94 100644 --- a/algue/sha512.hpp +++ b/algue/sha512.hpp @@ -8,6 +8,8 @@ #include #include #include +#include +#include #include namespace algue {