Skip to content

Commit

Permalink
Merge branch 'dev' of github.com:brainboxdotcc/DPP
Browse files Browse the repository at this point in the history
  • Loading branch information
braindigitalis committed Nov 7, 2024
2 parents 0535266 + 00b848c commit f6d9aa7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
6 changes: 6 additions & 0 deletions mlspp/lib/hpke/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,9 @@ include_directories("${CMAKE_CURRENT_SOURCE_DIR}/../../lib/mls_vectors/include")
include_directories("${CMAKE_CURRENT_SOURCE_DIR}/../../lib/tls_syntax/include")
# For nlohmann/json.hpp
include_directories("${CMAKE_CURRENT_SOURCE_DIR}/../../../include")
if (DPP_USE_EXTERNAL_JSON)
add_compile_definitions(DPP_USE_EXTERNAL_JSON)
message("-- HPKE using external nlohmann::json")
else()
message("-- HPKE using DPP nlohmann::json")
endif()
5 changes: 3 additions & 2 deletions src/dpp/dave/persisted_key_pair_generic.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,10 @@
#include <functional>
#include <iostream>
#ifdef _WIN32
#include <io.h>
#include <io.h>
#else
#include <unistd.h>
#include <unistd.h>
#include <sys/stat.h>
#endif
#include <fcntl.h>
#include <bytes/bytes.h>
Expand Down

0 comments on commit f6d9aa7

Please sign in to comment.