Lines Matching defs:encoded
23 * The RFC defines that encoding is performed in quantums of 8 encoded
39 * Decode a base32 encoded string into the provided buffer.
44 * Handles padding symbols at the end of the encoded input string.
47 * encoded - A null terminated char* containing the encoded base32
54 int base32_decode(const char *encoded, uint8_t *result, int bufSize) {
59 for (; count < bufSize && *encoded; ++encoded) {
60 char ch = *encoded;
102 * If the encoded string does not make up a complete quantum of encoded characters
108 * result - A pre-initialised buffer to store the encoded characters in
112 * A count of length of the encoded string
152 // If the number of encoded characters does not make a full quantum, insert padding