Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,16 @@ set(HMAC_SOURCES
sha1.cpp
sha256.cpp
sha512.cpp
hmac.cpp
hmac_utils.cpp
hmac.cpp
hmac_utils.cpp
)

set(HMAC_HEADERS
hmac.hpp
hmac_utils.hpp
sha1.hpp
sha256.hpp
sha512.hpp
)

add_library(hmac STATIC ${HMAC_SOURCES})
Expand Down
Loading