| 37 | } |
| 38 | |
| 39 | static uint32_t bech32_final_constant(bech32_encoding enc) { |
| 40 | if (enc == BECH32_ENCODING_BECH32) return 1; |
| 41 | if (enc == BECH32_ENCODING_BECH32M) return 0x2bc830a3; |
| 42 | assert(0); |
| 43 | } |
| 44 | |
| 45 | const char bech32_charset[] = "qpzry9x8gf2tvdw0s3jn54khce6mua7l"; |
| 46 |
no outgoing calls
no test coverage detected