diff options
author | Szczepan Zalega <szczepan@nitrokey.com> | 2016-11-19 14:14:43 +0100 |
---|---|---|
committer | Szczepan Zalega <szczepan@nitrokey.com> | 2016-12-03 16:01:50 +0100 |
commit | b33681083348588caa3db3885c811a3c42d5b094 (patch) | |
tree | 87bcb02e9fff95534adf46228ad73677ce02bbaa /misc.cc | |
parent | f615000166177dad7128247d5c99679d9560c510 (diff) | |
download | libnitrokey-b33681083348588caa3db3885c811a3c42d5b094.tar.gz libnitrokey-b33681083348588caa3db3885c811a3c42d5b094.tar.bz2 |
Support sending empty OTP secrets for slot edit (+test)
Signed-off-by: Szczepan Zalega <szczepan@nitrokey.com>
Diffstat (limited to 'misc.cc')
-rw-r--r-- | misc.cc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -13,7 +13,7 @@ std::vector<uint8_t> hex_string_to_byte(const char* hexString){ const size_t big_string_size = 256; //arbitrary 'big' number const size_t s_size = strlen(hexString); const size_t d_size = s_size/2; - if (s_size%2!=0 || s_size==0 || s_size>big_string_size){ + if (s_size%2!=0 || s_size>big_string_size){ throw InvalidHexString(0); } auto data = std::vector<uint8_t>(); |