aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/utils/stl_util.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/utils/stl_util.h')
-rw-r--r--src/lib/utils/stl_util.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/utils/stl_util.h b/src/lib/utils/stl_util.h
index 12b749c3c..c05f934c8 100644
--- a/src/lib/utils/stl_util.h
+++ b/src/lib/utils/stl_util.h
@@ -17,12 +17,12 @@
namespace Botan {
-inline std::vector<byte> to_byte_vector(const std::string& s)
+inline std::vector<uint8_t> to_byte_vector(const std::string& s)
{
- return std::vector<byte>(s.cbegin(), s.cend());
+ return std::vector<uint8_t>(s.cbegin(), s.cend());
}
-inline std::string to_string(const secure_vector<byte> &bytes)
+inline std::string to_string(const secure_vector<uint8_t> &bytes)
{
return std::string(bytes.cbegin(), bytes.cend());
}