diff options
Diffstat (limited to 'src/utils/debug.h')
-rw-r--r-- | src/utils/debug.h | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/src/utils/debug.h b/src/utils/debug.h index ee93d5ea0..c7f19c1b1 100644 --- a/src/utils/debug.h +++ b/src/utils/debug.h @@ -9,18 +9,29 @@ #define BOTAN_DEBUG_H__ #include <botan/secmem.h> +#include <iostream> namespace Botan { namespace Debug { +template<typename T> void print_vec(const std::string& name, - const byte array[], - size_t array_len); + const T array[], size_t array_len) + { + std::cout << name << " = "; -void print_vec(const std::string& name, - const MemoryRegion<byte>& vec); + for(size_t i = 0; i != array_len; ++i) + std::cout << std::hex << array[i]; + std::cout << std::endl; + } +template<typename T> +void print_vec(const std::string& name, + const MemoryRegion<T>& vec) + { + print_vec(name, &vec[0], vec.size()); + } } |