Home
last modified time | relevance | path

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

/bsp/stm32/stm32h750-artpi/board/port/
A Dwifi_config.c43 static int str_base64_decode(const char *data, int input_length, char *decoded_data);
115 static int str_base64_decode(const char *data, int input_length, char *decoded_data) in str_base64_decode() argument
139 if (j < out_len) decoded_data[j++] = (triple >> 2 * 8) & 0xFF; in str_base64_decode()
140 if (j < out_len) decoded_data[j++] = (triple >> 1 * 8) & 0xFF; in str_base64_decode()
141 if (j < out_len) decoded_data[j++] = (triple >> 0 * 8) & 0xFF; in str_base64_decode()
/bsp/stm32/stm32l475-atk-pandora/board/ports/wifi/
A Dwifi_config.c29 static int str_base64_decode(const char *data, int input_length, char *decoded_data);
101 static int str_base64_decode(const char *data, int input_length, char *decoded_data) in str_base64_decode() argument
125 if (j < out_len) decoded_data[j++] = (triple >> 2 * 8) & 0xFF; in str_base64_decode()
126 if (j < out_len) decoded_data[j++] = (triple >> 1 * 8) & 0xFF; in str_base64_decode()
127 if (j < out_len) decoded_data[j++] = (triple >> 0 * 8) & 0xFF; in str_base64_decode()

Completed in 6 milliseconds