Home
last modified time | relevance | path

Searched refs:base64_decode_table (Results 1 – 2 of 2) sorted by relevance

/bsp/stm32/stm32h750-artpi/board/port/
A Dwifi_config.c48 static const char base64_decode_table[256] = variable
129 uint32_t sextet_a = data[i] == '=' ? 0 & i++ : base64_decode_table[data[i++]]; in str_base64_decode()
130 uint32_t sextet_b = data[i] == '=' ? 0 & i++ : base64_decode_table[data[i++]]; in str_base64_decode()
131 uint32_t sextet_c = data[i] == '=' ? 0 & i++ : base64_decode_table[data[i++]]; in str_base64_decode()
132 uint32_t sextet_d = data[i] == '=' ? 0 & i++ : base64_decode_table[data[i++]]; in str_base64_decode()
/bsp/stm32/stm32l475-atk-pandora/board/ports/wifi/
A Dwifi_config.c34 static const char base64_decode_table[256] = variable
115 uint32_t sextet_a = data[i] == '=' ? 0 & i++ : base64_decode_table[data[i++]]; in str_base64_decode()
116 uint32_t sextet_b = data[i] == '=' ? 0 & i++ : base64_decode_table[data[i++]]; in str_base64_decode()
117 uint32_t sextet_c = data[i] == '=' ? 0 & i++ : base64_decode_table[data[i++]]; in str_base64_decode()
118 uint32_t sextet_d = data[i] == '=' ? 0 & i++ : base64_decode_table[data[i++]]; in str_base64_decode()

Completed in 57 milliseconds