summaryrefslogtreecommitdiff
path: root/src/hex.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/hex.h')
-rw-r--r--src/hex.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/hex.h b/src/hex.h
index 87a6aecb4..6f00a79bf 100644
--- a/src/hex.h
+++ b/src/hex.h
@@ -46,4 +46,17 @@ static inline std::string hex_encode(const std::string &data)
return hex_encode(data.c_str(), data.size());
}
+static inline bool hex_digit_decode(char hexdigit, unsigned char &value)
+{
+ if(hexdigit >= '0' && hexdigit <= '9')
+ value = hexdigit - '0';
+ else if(hexdigit >= 'A' && hexdigit <= 'F')
+ value = hexdigit - 'A' + 10;
+ else if(hexdigit >= 'a' && hexdigit <= 'f')
+ value = hexdigit - 'a' + 10;
+ else
+ return false;
+ return true;
+}
+
#endif