OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Base64
(Results
1 - 5
of
5
) sorted by relevancy
/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/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerUtil.h
37
std::string
Base64
(const Unit &U);
FuzzerUtil.cpp
155
std::string
Base64
(const Unit &U) {
FuzzerLoop.cpp
605
Printf("
Base64
: %s\n",
Base64
(U).c_str());
/src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/tests/
FuzzerUnittest.cpp
578
TEST(FuzzerUtil,
Base64
) {
579
EXPECT_EQ("",
Base64
({}));
580
EXPECT_EQ("YQ==",
Base64
({'a'}));
581
EXPECT_EQ("eA==",
Base64
({'x'}));
582
EXPECT_EQ("YWI=",
Base64
({'a', 'b'}));
583
EXPECT_EQ("eHk=",
Base64
({'x', 'y'}));
584
EXPECT_EQ("YWJj",
Base64
({'a', 'b', 'c'}));
585
EXPECT_EQ("eHl6",
Base64
({'x', 'y', 'z'}));
586
EXPECT_EQ("YWJjeA==",
Base64
({'a', 'b', 'c', 'x'}));
587
EXPECT_EQ("YWJjeHk=",
Base64
({'a', 'b', 'c', 'x', 'y'}))
[
all
...]
Completed in 16 milliseconds
Indexes created Sun Feb 22 16:20:20 UTC 2026