/* * Copyright (C) 2015 Cloudius Systems, Ltd. */ #pragma once #include "core/sstring.hh" #include #include #include using bytes = basic_sstring; using bytes_view = std::experimental::basic_string_view; using bytes_opt = std::experimental::optional; using sstring_view = std::experimental::string_view; namespace std { template <> struct hash { size_t operator()(bytes_view v) const { return hash()({reinterpret_cast(v.begin()), v.size()}); } }; } bytes from_hex(sstring_view s); sstring to_hex(bytes_view b); sstring to_hex(const bytes& b); sstring to_hex(const bytes_opt& b); std::ostream& operator<<(std::ostream& os, const bytes& b); std::ostream& operator<<(std::ostream& os, const bytes_opt& b); namespace std { // Must be in std:: namespace, or ADL fails std::ostream& operator<<(std::ostream& os, const bytes_view& b); }