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

/freebsd-11-stable/contrib/ldns/compat/
H A Db64_pton.c47 static const char Base64[] = variable
70 Table 1: The Base64 Alphabet
140 pos = strchr(Base64, ch);
151 target[tarindex] = (pos - Base64) << 2;
159 target[tarindex] |= (pos - Base64) >> 4;
160 target[tarindex+1] = ((pos - Base64) & 0x0f)
170 target[tarindex] |= (pos - Base64) >> 2;
171 target[tarindex+1] = ((pos - Base64) & 0x03)
181 target[tarindex] |= (pos - Base64);
H A Db64_ntop.c47 static const char Base64[] = variable
70 Table 1: The Base64 Alphabet
148 target[datalength++] = Base64[output[0]];
149 target[datalength++] = Base64[output[1]];
150 target[datalength++] = Base64[output[2]];
151 target[datalength++] = Base64[output[3]];
171 target[datalength++] = Base64[output[0]];
172 target[datalength++] = Base64[output[1]];
176 target[datalength++] = Base64[output[2]];
/freebsd-11-stable/crypto/openssh/openbsd-compat/
H A Dbase64.c65 static const char Base64[] = variable
88 Table 1: The Base64 Alphabet
154 target[datalength++] = Base64[output[0]];
155 target[datalength++] = Base64[output[1]];
156 target[datalength++] = Base64[output[2]];
157 target[datalength++] = Base64[output[3]];
173 target[datalength++] = Base64[output[0]];
174 target[datalength++] = Base64[output[1]];
178 target[datalength++] = Base64[output[2]];
213 pos = strchr(Base64, c
[all...]
/freebsd-11-stable/lib/libc/net/
H A Dbase64.c61 static const char Base64[] = variable
84 Table 1: The Base64 Alphabet
152 target[datalength++] = Base64[output[0]];
153 target[datalength++] = Base64[output[1]];
154 target[datalength++] = Base64[output[2]];
155 target[datalength++] = Base64[output[3]];
174 target[datalength++] = Base64[output[0]];
175 target[datalength++] = Base64[output[1]];
179 target[datalength++] = Base64[output[2]];
211 pos = strchr(Base64, c
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerUtil.h38 std::string Base64(const Unit &U);
H A DFuzzerUtil.cpp154 std::string Base64(const Unit &U) { function in namespace:fuzzer
H A DFuzzerLoop.cpp591 Printf("Base64: %s\n", Base64(U).c_str());
/freebsd-11-stable/secure/caroot/
H A DMAca-bundle.pl38 use MIME::Base64;
/freebsd-11-stable/contrib/sendmail/mail.local/
H A Dmail.local.c1665 char Base64[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+_"; local
1704 b64[(4 * i) + j] = Base64[(bits & 0x3f)];

Completed in 131 milliseconds