Searched refs:b64input (Results 1 – 1 of 1) sorted by relevance
126 size_t calcDecodeLength(const char* b64input) { //Calculates the length of a decoded string in calcDecodeLength() argument127 size_t len = strlen(b64input), padding = 0; in calcDecodeLength()128 if (b64input[len-1] == '=' && b64input[len-2] == '=') //last two chars are = in calcDecodeLength()130 else if (b64input[len-1] == '=') //last char is = in calcDecodeLength()