Home
last modified time | relevance | path

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

/bionic/libc/upstream-openbsd/lib/libc/net/
Dbase64.c56 static const char Base64[] = variable
145 target[datalength++] = Base64[output[0]]; in b64_ntop()
146 target[datalength++] = Base64[output[1]]; in b64_ntop()
147 target[datalength++] = Base64[output[2]]; in b64_ntop()
148 target[datalength++] = Base64[output[3]]; in b64_ntop()
164 target[datalength++] = Base64[output[0]]; in b64_ntop()
165 target[datalength++] = Base64[output[1]]; in b64_ntop()
169 target[datalength++] = Base64[output[2]]; in b64_ntop()
201 pos = strchr(Base64, ch); in b64_pton()
210 target[tarindex] = (pos - Base64) << 2; in b64_pton()
[all …]