Home | History | Annotate | Download | only in wpa_supplicant

Lines Matching full:len

26  * @len: Length of the data to be encoded
35 unsigned char * base64_encode(const unsigned char *src, size_t len,
43 olen = len * 4 / 3 + 4; /* 3-byte blocks to 4-byte */
50 end = src + len;
94 * @len: Length of the data to be decoded
101 unsigned char * base64_decode(const unsigned char *src, size_t len,
113 for (i = 0; i < len; i++) {
127 for (i = 0; i < len; i++) {
161 size_t len, elen;
169 buf = os_readfile(argv[2], &len);
174 e = base64_encode(buf, len, &elen);
176 e = base64_decode(buf, len, &elen);