Maksim Ivanov | 7fa05fa | 2022-11-04 18:58:48 | [diff] [blame] | 1 | // Copyright 2022 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 | |||||
Peter Kasting | 134ef9af | 2024-12-28 02:30:09 | [diff] [blame] | 5 | #include "base/base64url.h" |
6 | |||||
Maksim Ivanov | 7fa05fa | 2022-11-04 18:58:48 | [diff] [blame] | 7 | #include <fuzzer/FuzzedDataProvider.h> |
8 | #include <stdint.h> | ||||
9 | |||||
10 | #include <string> | ||||
11 | #include <tuple> | ||||
12 | |||||
Maksim Ivanov | 7fa05fa | 2022-11-04 18:58:48 | [diff] [blame] | 13 | #include "base/check.h" |
14 | #include "base/check_op.h" | ||||
15 | |||||
16 | namespace base { | ||||
17 | |||||