aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils/debug.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/debug.h')
-rw-r--r--src/utils/debug.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/src/utils/debug.h b/src/utils/debug.h
deleted file mode 100644
index 11de7010e..000000000
--- a/src/utils/debug.h
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
-* Internal-use debugging functions for Botan
-* (C) 2009 Jack Lloyd
-*
-* Distributed under the terms of the Botan license
-*/
-
-#ifndef BOTAN_DEBUG_H__
-#define BOTAN_DEBUG_H__
-
-#include <botan/secmem.h>
-#include <cstdio>
-
-namespace Botan {
-
-namespace Debug {
-
-inline void print_vec(const std::string& name,
- const byte array[], size_t array_len)
- {
- std::printf("%s = ", name.c_str());
- for(size_t i = 0; i != array_len; ++i)
- std::printf("%02X", array[i]);
- std::printf("\n");
- }
-
-inline void print_vec(const std::string& name,
- const MemoryRegion<byte>& vec)
- {
- print_vec(name, &vec[0], vec.size());
- }
-
-}
-
-}
-
-#endif