Remove any whitespace in TlsKey base64

This commit is contained in:
Hadinger 2019-12-07 15:01:39 +01:00
parent 758b255078
commit a8c0c4e312
1 changed files with 13 additions and 0 deletions

View File

@ -1071,6 +1071,19 @@ void CmndTlsKey(void) {
}
memcpy_P(spi_buffer, tls_spi_start, tls_spi_len);
// remove any white space from the base64
char *cursor = XdrvMailbox.data;
uint32_t offset = 0;
while (1) {
*cursor = *(cursor + offset);
if ((' ' == *cursor) || ('\t' == *cursor) || ('\n' == *cursor)) { // if space found, remove this char until end of string
offset++;
} else {
if (0 == *cursor) { break; }
cursor++;
}
}
// allocate buffer for decoded base64
uint32_t bin_len = decode_base64_length((unsigned char*)XdrvMailbox.data);
uint8_t *bin_buf = nullptr;