Skip to content
Merged
Show file tree
Hide file tree
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
8 changes: 0 additions & 8 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,6 @@ endfunction()
if (BOOST_CAPY_MRDOCS_BUILD)
file(WRITE "${CMAKE_CURRENT_BINARY_DIR}/mrdocs.cpp"
"#include <boost/capy.hpp>\n"
"#include <boost/capy/bcrypt.hpp>\n"
"#include <boost/capy/zlib.hpp>\n"
"#include <boost/capy/brotli.hpp>\n")
add_library(boost_capy_mrdocs "${CMAKE_CURRENT_BINARY_DIR}/mrdocs.cpp")
Expand All @@ -171,13 +170,6 @@ add_library(boost_capy include/boost/capy.hpp build/Jamfile ${BOOST_CAPY_HEADERS
add_library(Boost::capy ALIAS boost_capy)
boost_capy_setup_properties(boost_capy)

# bcrypt requires platform-specific libraries
if (WIN32)
target_link_libraries(boost_capy PRIVATE bcrypt)
elseif (APPLE)
target_link_libraries(boost_capy PRIVATE "-framework Security")
endif ()

# Zlib
find_package(ZLIB)
if (ZLIB_FOUND)
Expand Down
8 changes: 0 additions & 8 deletions build/Jamfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,10 @@ project boost/capy

alias capy_sources : [ glob-tree-ex src : *.cpp ] ;

# Windows CNG library for bcrypt random number generation.
lib bcrypt_sys : : <name>bcrypt ;

lib boost_capy
: capy_sources
: requirements
<include>../
<target-os>windows:<library>bcrypt_sys
<target-os>darwin:<linkflags>"-framework Security"
: usage-requirements
<target-os>windows:<library>bcrypt_sys
<target-os>darwin:<linkflags>"-framework Security"
;

# Zlib
Expand Down
2 changes: 0 additions & 2 deletions doc/modules/ROOT/nav.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@
** xref:buffers/index.adoc[Buffer Types]
** xref:buffers/sequences.adoc[Buffer Sequences]
** xref:buffers/dynamic.adoc[Dynamic Buffers]
* Cryptography
** xref:cryptography/bcrypt.adoc[BCrypt Password Hashing]
* Compression
** xref:compression/brotli.adoc[Brotli]
** xref:compression/zlib.adoc[ZLib]
Expand Down
295 changes: 0 additions & 295 deletions doc/modules/ROOT/pages/cryptography/bcrypt.adoc

This file was deleted.

1 change: 0 additions & 1 deletion include/boost/capy.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
#include <boost/capy/application.hpp>
#include <boost/capy/ex/async_op.hpp>
#include <boost/capy/ex/run_async.hpp>
#include <boost/capy/bcrypt.hpp>
#include <boost/capy/brotli.hpp>
#include <boost/capy/buffers/any_read_source.hpp>
#include <boost/capy/buffers/any_sink.hpp>
Expand Down
Loading
Loading