HomeSort by: relevance | last modified time | path
    Searched defs:Base64 (Results 1 - 8 of 8) sorted by relevancy

  /src/external/bsd/nsd/dist/compat/
b64_ntop.c 58 static const char Base64[] =
75 of which is translated into a single digit in the base64 alphabet.
81 Table 1: The Base64 Alphabet
109 Since all base64 input is an integral number of octets, only the
149 target[datalength++] = Base64[output[0]];
150 target[datalength++] = Base64[output[1]];
151 target[datalength++] = Base64[output[2]];
152 target[datalength++] = Base64[output[3]];
171 target[datalength++] = Base64[output[0]];
172 target[datalength++] = Base64[output[1]]
    [all...]
b64_pton.c 58 static const char Base64[] =
75 of which is translated into a single digit in the base64 alphabet.
81 Table 1: The Base64 Alphabet
109 Since all base64 input is an integral number of octets, only the
158 /* Non-base64 char */
163 /* Fill reverse mapping for base64 chars */
164 for (i = 0; Base64[i] != '\0'; ++i)
165 b64rmap[(uint8_t)Base64[i]] = i;
188 /* End of base64 characters */
191 /* A non-base64 character. *
    [all...]
  /src/lib/libc/net/
base64.c 1 /* $NetBSD: base64.c,v 1.17 2024/01/20 14:52:48 christos Exp $ */
48 static const char rcsid[] = "Id: base64.c,v 1.4 2005/04/27 04:56:34 sra Exp";
50 __RCSID("$NetBSD: base64.c,v 1.17 2024/01/20 14:52:48 christos Exp $");
75 static const char Base64[] =
92 of which is translated into a single digit in the base64 alphabet.
98 Table 1: The Base64 Alphabet
126 Since all base64 input is an integral number of octets, only the
171 target[datalength++] = Base64[output[0]];
172 target[datalength++] = Base64[output[1]];
173 target[datalength++] = Base64[output[2]]
    [all...]
  /src/external/bsd/libbind/dist/isc/
base64.c 1 /* $NetBSD: base64.c,v 1.1.1.2 2012/09/09 16:08:02 christos Exp $ */
46 static const char rcsid[] = "Id: base64.c,v 1.4 2005/04/27 04:56:34 sra Exp ";
69 static const char Base64[] =
86 of which is translated into a single digit in the base64 alphabet.
92 Table 1: The Base64 Alphabet
120 Since all base64 input is an integral number of octets, only the
160 target[datalength++] = Base64[output[0]];
161 target[datalength++] = Base64[output[1]];
162 target[datalength++] = Base64[output[2]];
163 target[datalength++] = Base64[output[3]]
    [all...]
  /src/external/bsd/openldap/dist/libraries/liblutil/
base64.c 1 /* $NetBSD: base64.c,v 1.4 2025/09/05 21:16:23 christos Exp $ */
3 /* base64.c -- routines to encode/decode base64 data */
35 /* This work is based upon Base64 routines (developed by IBM) found
41 __RCSID("$NetBSD: base64.c,v 1.4 2025/09/05 21:16:23 christos Exp $");
55 static const char Base64[] =
72 of which is translated into a single digit in the base64 alphabet.
78 Table 1: The Base64 Alphabet
106 Since all base64 input is an integral number of octets, only the
151 target[datalength++] = Base64[output[0]]
    [all...]
  /src/external/bsd/tmux/dist/compat/
base64.c 1 /* $OpenBSD: base64.c,v 1.8 2015/01/16 16:48:51 deraadt Exp $ */
58 static const char Base64[] =
75 of which is translated into a single digit in the base64 alphabet.
81 Table 1: The Base64 Alphabet
109 Since all base64 input is an integral number of octets, only the
150 target[datalength++] = Base64[output[0]];
151 target[datalength++] = Base64[output[1]];
152 target[datalength++] = Base64[output[2]];
153 target[datalength++] = Base64[output[3]];
169 target[datalength++] = Base64[output[0]]
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerUtil.cpp 155 std::string Base64(const Unit &U) {
  /src/external/apache2/mDNSResponder/dist/mDNSCore/
DNSDigest.c 1171 // MARK: - base64 -> binary conversion
1173 static const char Base64[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
1210 pos = mDNSstrchr(Base64, ch);
1211 if (pos == 0) /* A non-base64 character. */
1219 target[tarindex] = (mDNSu8)((pos - Base64) << 2);
1227 target[tarindex] |= (pos - Base64) >> 4;
1228 target[tarindex+1] = (mDNSu8)(((pos - Base64) & 0x0f) << 4);
1237 target[tarindex] |= (pos - Base64) >> 2;
1238 target[tarindex+1] = (mDNSu8)(((pos - Base64) & 0x03) << 6);
1247 target[tarindex] |= (pos - Base64);
    [all...]

Completed in 21 milliseconds