fltrdr

A TUI text reader for the terminal.


fltrdr

/

src

/

ob

/

crypto.hh

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#ifndef OB_CRYPTO_HH
#define OB_CRYPTO_HH

#include <string>
#include <string_view>
#include <optional>

namespace OB::Crypto
{

std::optional<std::string> sha256(std::string_view const str);

} // namespace OB::Crypto

#endif // OB_CRYPTO_HH
Back to Top