Skip to content

Commit

Permalink
Update file path function concept in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mborland committed Jan 8, 2025
1 parent 218b49d commit 7d1751c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions doc/crypt/sha1.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ We also have the ability to scan files and return the sha1 value:
namespace boost::crypt {
template <typename T>
requires std::is_convertible_v<T, std::string> || std::is_convertible_v<T, std::string_view>
inline auto sha1_file(const T& filepath) -> sha1_hasher::return_type;
} // namespace boost::crypt
Expand Down
1 change: 1 addition & 0 deletions doc/crypt/sha224.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ We also have the ability to scan files and return the sha224 value:
namespace boost::crypt {
template <typename T>
requires std::is_convertible_v<T, std::string> || std::is_convertible_v<T, std::string_view>
inline auto sha224_file(const T& filepath) -> sha224_hasher::return_type;
} // namespace boost::crypt
Expand Down

0 comments on commit 7d1751c

Please sign in to comment.