| /freebsd-14.2/crypto/openssh/openbsd-compat/ |
| H A D | base64.c | 64 static const char Base64[] = variable 153 target[datalength++] = Base64[output[0]]; in b64_ntop() 154 target[datalength++] = Base64[output[1]]; in b64_ntop() 155 target[datalength++] = Base64[output[2]]; in b64_ntop() 156 target[datalength++] = Base64[output[3]]; in b64_ntop() 172 target[datalength++] = Base64[output[0]]; in b64_ntop() 173 target[datalength++] = Base64[output[1]]; in b64_ntop() 177 target[datalength++] = Base64[output[2]]; in b64_ntop() 212 pos = strchr(Base64, ch); in b64_pton() 221 target[tarindex] = (pos - Base64) << 2; in b64_pton() [all …]
|
| /freebsd-14.2/lib/libc/net/ |
| H A D | base64.c | 58 static const char Base64[] = variable 149 target[datalength++] = Base64[output[0]]; in b64_ntop() 150 target[datalength++] = Base64[output[1]]; in b64_ntop() 151 target[datalength++] = Base64[output[2]]; in b64_ntop() 152 target[datalength++] = Base64[output[3]]; in b64_ntop() 171 target[datalength++] = Base64[output[0]]; in b64_ntop() 172 target[datalength++] = Base64[output[1]]; in b64_ntop() 176 target[datalength++] = Base64[output[2]]; in b64_ntop() 208 pos = strchr(Base64, ch); in b64_pton() 217 target[tarindex] = (pos - Base64) << 2; in b64_pton() [all …]
|
| /freebsd-14.2/contrib/ldns/compat/ |
| H A D | b64_pton.c | 47 static const char Base64[] = variable 141 pos = strchr(Base64, ch); in ldns_b64_pton() 152 target[tarindex] = (pos - Base64) << 2; in ldns_b64_pton() 160 target[tarindex] |= (pos - Base64) >> 4; in ldns_b64_pton() 161 target[tarindex+1] = ((pos - Base64) & 0x0f) in ldns_b64_pton() 171 target[tarindex] |= (pos - Base64) >> 2; in ldns_b64_pton() 172 target[tarindex+1] = ((pos - Base64) & 0x03) in ldns_b64_pton() 182 target[tarindex] |= (pos - Base64); in ldns_b64_pton()
|
| H A D | b64_ntop.c | 47 static const char Base64[] = variable 148 target[datalength++] = Base64[output[0]]; in ldns_b64_ntop() 149 target[datalength++] = Base64[output[1]]; in ldns_b64_ntop() 150 target[datalength++] = Base64[output[2]]; in ldns_b64_ntop() 151 target[datalength++] = Base64[output[3]]; in ldns_b64_ntop() 171 target[datalength++] = Base64[output[0]]; in ldns_b64_ntop() 172 target[datalength++] = Base64[output[1]]; in ldns_b64_ntop() 176 target[datalength++] = Base64[output[2]]; in ldns_b64_ntop()
|
| /freebsd-14.2/crypto/openssl/doc/man3/ |
| H A D | BIO_f_base64.pod | 22 Base64 BIOs do not support BIO_gets() or BIO_puts(). 53 Base64 encode the string "Hello World\n" and write the result 67 Read Base64 encoded data from standard input and write the decoded
|
| /freebsd-14.2/crypto/openssl/test/recipes/ |
| H A D | 90-test_store_cases.t | 13 use MIME::Base64;
|
| H A D | 90-test_store.t | 11 use MIME::Base64;
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/fuzzer/ |
| H A D | FuzzerUtil.h | 38 std::string Base64(const Unit &U);
|
| H A D | FuzzerUtil.cpp | 155 std::string Base64(const Unit &U) { in Base64() function
|
| H A D | FuzzerLoop.cpp | 649 Printf("Base64: %s\n", Base64(U).c_str()); in WriteUnitToFileWithPrefix()
|
| /freebsd-14.2/secure/caroot/ |
| H A D | MAca-bundle.pl | 38 use MIME::Base64;
|
| /freebsd-14.2/contrib/bearssl/src/codec/ |
| H A D | pemdec.t0 | 171 \ Convert a Base64 character to its numerical value. Returned value is 172 \ 0 to 63 for Base64 characters, -1 for '=', and -2 for all other characters. 222 \ Decode the four next Base64 characters. Returned value is:
|
| /freebsd-14.2/crypto/openssl/test/ |
| H A D | cms-examples.pl | 12 use MIME::Base64;
|
| /freebsd-14.2/crypto/openssl/test/recipes/30-test_evp_data/ |
| H A D | evpencod.txt | 14 Title = Base64 tests
|
| /freebsd-14.2/crypto/openssl/doc/man1/ |
| H A D | openssl-enc.pod.in | 50 or explicitly provided. Base64 encoding or decoding can also be performed 96 Base64 process the data. This means that if encryption is taking place 435 Base64 decode a file then decrypt it using a password supplied in a file:
|
| H A D | openssl.pod | 417 Base64 Encoding
|
| /freebsd-14.2/contrib/sendmail/mail.local/ |
| H A D | mail.local.c | 1701 char Base64[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+_"; local 1740 b64[(4 * i) + j] = Base64[(bits & 0x3f)];
|
| /freebsd-14.2/contrib/sendmail/ |
| H A D | RELEASE_NOTES | 6808 In certain cases, 7->8 bit MIME decoding of Base64 text could leave 7560 If a Base64 encoded text/plain message has no trailing newline in 8754 a seven bit format (Quoted-Printable or Base64). It is
|
| /freebsd-14.2/crypto/openssl/ |
| H A D | CHANGES.md | 5915 Base64 encoding of binary data. If an attacker is able to supply very large 7117 Base64 encoding of binary data. If an attacker is able to supply very large
|