Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Namespaces | Macros | Variables
base64.cc File Reference
#include "flutter/shell/common/base64.h"
#include "flutter/fml/logging.h"
#include <cstdint>

Go to the source code of this file.

Namespaces

namespace  flutter
 

Macros

#define DecodePad   -2
 
#define EncodePad   64
 

Variables

static const char kDefaultEncode []
 
static const signed char kDecodeData []
 

Macro Definition Documentation

◆ DecodePad

#define DecodePad   -2

Definition at line 11 of file base64.cc.

◆ EncodePad

#define EncodePad   64

Definition at line 12 of file base64.cc.

Variable Documentation

◆ kDecodeData

const signed char kDecodeData[]
static
Initial value:
= {
62, -1, -1, -1, 63, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, -1,
-1, -1, DecodePad, -1, -1, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,
10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25,
-1, -1, -1, -1, -1, -1, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35,
36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51}
#define DecodePad
Definition base64.cc:11

Definition at line 19 of file base64.cc.

19 {
20 62, -1, -1, -1, 63, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, -1,
21 -1, -1, DecodePad, -1, -1, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,
22 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25,
23 -1, -1, -1, -1, -1, -1, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35,
24 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51};

◆ kDefaultEncode

const char kDefaultEncode[]
static
Initial value:
=
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
"abcdefghijklmnopqrstuvwxyz"
"0123456789+/="

Definition at line 14 of file base64.cc.