lin
2025-08-14 dae8bad597b6607a449b32bf76c523423f7720ed
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
 * Copyright 2006 The Android Open Source Project
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */
 
#ifndef SkBase64_DEFINED
#define SkBase64_DEFINED
 
#include "SkTypes.h"
 
struct SkBase64 {
public:
    enum Error {
        kNoError,
        kPadError,
        kBadCharError
    };
 
    SkBase64();
    Error decode(const char* src, size_t length);
    char* getData() { return fData; }
    /**
       Base64 encodes src into dst. encode is a pointer to at least 65 chars.
       encode[64] will be used as the pad character. Encodings other than the
       default encoding cannot be decoded.
    */
    static size_t Encode(const void* src, size_t length, void* dest, const char* encode = nullptr);
 
private:
    Error decode(const void* srcPtr, size_t length, bool writeDestination);
 
    size_t fLength;
    char* fData;
    friend class SkImageBaseBitmap;
};
 
#endif // SkBase64_DEFINED