diff options
Diffstat (limited to 'src/codec/hex/hex.h')
-rw-r--r-- | src/codec/hex/hex.h | 37 |
1 files changed, 32 insertions, 5 deletions
diff --git a/src/codec/hex/hex.h b/src/codec/hex/hex.h index bdb5e5365..a64a6c8df 100644 --- a/src/codec/hex/hex.h +++ b/src/codec/hex/hex.h @@ -102,9 +102,10 @@ size_t BOTAN_DLL hex_decode(byte output[], exception if whitespace is encountered * @return decoded hex output */ -secure_vector<byte> BOTAN_DLL hex_decode(const char input[], - size_t input_length, - bool ignore_ws = true); +std::vector<byte> BOTAN_DLL +hex_decode(const char input[], + size_t input_length, + bool ignore_ws = true); /** * Perform hex decoding @@ -113,8 +114,34 @@ secure_vector<byte> BOTAN_DLL hex_decode(const char input[], exception if whitespace is encountered * @return decoded hex output */ -secure_vector<byte> BOTAN_DLL hex_decode(const std::string& input, - bool ignore_ws = true); +std::vector<byte> BOTAN_DLL +hex_decode(const std::string& input, + bool ignore_ws = true); + + +/** +* Perform hex decoding +* @param input some hex input +* @param input_length the length of input in bytes +* @param ignore_ws ignore whitespace on input; if false, throw an + exception if whitespace is encountered +* @return decoded hex output +*/ +secure_vector<byte> BOTAN_DLL +hex_decode_locked(const char input[], + size_t input_length, + bool ignore_ws = true); + +/** +* Perform hex decoding +* @param input some hex input +* @param ignore_ws ignore whitespace on input; if false, throw an + exception if whitespace is encountered +* @return decoded hex output +*/ +secure_vector<byte> BOTAN_DLL +hex_decode_locked(const std::string& input, + bool ignore_ws = true); } |