HomeSort by: relevance | last modified time | path
    Searched defs:Base64 (Results 1 - 2 of 2) 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.cpp 155 std::string Base64(const Unit &U) {

Completed in 64 milliseconds