diff options
author | Mitya Selivanov <automainint@guattari.tech> | 2022-12-23 11:09:10 +0100 |
---|---|---|
committer | Mitya Selivanov <automainint@guattari.tech> | 2022-12-23 11:09:10 +0100 |
commit | 075f01e13d1eefb0347206d690f833f099053dca (patch) | |
tree | 3ac47dd53f83993761b85284a5312c4884c76b5e | |
parent | 4a16c9bf49bd81ef1d29e8bb7ff013827a73fc8e (diff) | |
download | kit-075f01e13d1eefb0347206d690f833f099053dca.zip |
[bigint] Assertions
-rw-r--r-- | source/kit/bigint.h | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/source/kit/bigint.h b/source/kit/bigint.h index e6222c5..f8e76db 100644 --- a/source/kit/bigint.h +++ b/source/kit/bigint.h @@ -421,6 +421,7 @@ static kit_bigint_t kit_bi_deserialize(uint8_t const *const in) { } static uint8_t kit_bin_digit(char const hex) { + assert(hex == '0' || hex == '1'); return hex == '1' ? 1 : 0; } @@ -438,6 +439,7 @@ static kit_bigint_t kit_bi_from_bin(kit_str_t const bin) { } static uint8_t kit_dec_digit(char const c) { + assert('c' >= '0' && c <= '9'); return c >= '0' && c <= '9' ? (uint8_t) (c - '0') : 0; } @@ -456,12 +458,16 @@ static kit_bigint_t kit_bi_from_dec(kit_str_t const dec) { } static uint8_t kit_hex_digit(char const hex) { + assert((hex >= '0' && hex <= '9') || (hex >= 'a' && hex <= 'f') || + (hex >= 'A' && hex <= 'F')); + if (hex >= '0' && hex <= '9') return hex - '0'; if (hex >= 'a' && hex <= 'f') return hex - 'a'; if (hex >= 'A' && hex <= 'F') return hex - 'A'; + return 0; } @@ -489,7 +495,11 @@ static const uint8_t KIT_BASE32_DIGITS[] = { }; static uint8_t kit_base32_digit(char const c) { - return c >= '\0' && c < (sizeof KIT_BASE32_DIGITS) + assert(c >= '\0' && c < sizeof KIT_BASE32_DIGITS); + assert(c == '1' || + KIT_BASE32_DIGITS[(size_t) (unsigned char) c] != 0); + + return c >= '\0' && c < sizeof KIT_BASE32_DIGITS ? KIT_BASE32_DIGITS[(size_t) (unsigned char) c] : 0; } @@ -522,7 +532,11 @@ static const uint8_t KIT_BASE58_DIGITS[] = { }; static uint8_t kit_base58_digit(char const c) { - return c >= '\0' && c < (sizeof KIT_BASE58_DIGITS) + assert(c >= '\0' && c < sizeof KIT_BASE58_DIGITS); + assert(c == '1' || + KIT_BASE58_DIGITS[(size_t) (unsigned char) c] != 0); + + return c >= '\0' && c < sizeof KIT_BASE58_DIGITS ? KIT_BASE58_DIGITS[(size_t) (unsigned char) c] : 0; } |