[M108 Migration][VD] Support set time and time zone offset
[platform/framework/web/chromium-efl.git] / base / base64.h
1 // Copyright 2011 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef BASE_BASE64_H_
6 #define BASE_BASE64_H_
7
8 #include <stdint.h>
9
10 #include <string>
11 #include <vector>
12
13 #include "base/base_export.h"
14 #include "base/containers/span.h"
15 #include "base/strings/string_piece.h"
16 #include "third_party/abseil-cpp/absl/types/optional.h"
17
18 namespace base {
19
20 // Encodes the input binary data in base64.
21 BASE_EXPORT std::string Base64Encode(span<const uint8_t> input);
22
23 // Encodes the input binary data in base64 and appends it to the output.
24 BASE_EXPORT void Base64EncodeAppend(span<const uint8_t> input,
25                                     std::string* output);
26
27 // Encodes the input string in base64.
28 BASE_EXPORT void Base64Encode(StringPiece input, std::string* output);
29
30 // Decodes the base64 input string.  Returns true if successful and false
31 // otherwise. The output string is only modified if successful. The decoding can
32 // be done in-place.
33 BASE_EXPORT bool Base64Decode(StringPiece input, std::string* output);
34
35 // Decodes the base64 input string. Returns `absl::nullopt` if unsuccessful.
36 BASE_EXPORT absl::optional<std::vector<uint8_t>> Base64Decode(
37     StringPiece input);
38
39 }  // namespace base
40
41 #endif  // BASE_BASE64_H_