/src/brpc/test/fuzzing/fuzz_butil.cpp
Line | Count | Source |
1 | | // Licensed to the Apache Software Foundation (ASF) under one |
2 | | // or more contributor license agreements. See the NOTICE file |
3 | | // distributed with this work for additional information |
4 | | // regarding copyright ownership. The ASF licenses this file |
5 | | // to you under the Apache License, Version 2.0 (the |
6 | | // "License"); you may not use this file except in compliance |
7 | | // with the License. You may obtain a copy of the License at |
8 | | // |
9 | | // http://www.apache.org/licenses/LICENSE-2.0 |
10 | | // |
11 | | // Unless required by applicable law or agreed to in writing, |
12 | | // software distributed under the License is distributed on an |
13 | | // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
14 | | // KIND, either express or implied. See the License for the |
15 | | // specific language governing permissions and limitations |
16 | | // under the License. |
17 | | |
18 | | #include "butil/base64.h" |
19 | | #include "butil/crc32c.h" |
20 | | #include "butil/hash.h" |
21 | | #include "butil/sha1.h" |
22 | | |
23 | 406 | #define kMinInputLength 5 |
24 | 199 | #define kMaxInputLength 1024 |
25 | | |
26 | | extern "C" int |
27 | | LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) |
28 | 203 | { |
29 | 203 | if (size < kMinInputLength || size > kMaxInputLength){ |
30 | 28 | return 1; |
31 | 28 | } |
32 | | |
33 | 175 | std::string input(reinterpret_cast<const char*>(data), size); |
34 | | |
35 | 175 | { |
36 | 175 | std::string encoded; |
37 | 175 | std::string decoded; |
38 | 175 | butil::Base64Encode(input, &encoded); |
39 | 175 | butil::Base64Decode(input, &decoded); |
40 | 175 | } |
41 | 175 | { |
42 | 175 | butil::crc32c::Value(reinterpret_cast<const char*>(data), size); |
43 | 175 | } |
44 | 175 | { |
45 | 175 | butil::Hash(input); |
46 | 175 | } |
47 | 175 | { |
48 | 175 | butil::SHA1HashString(input); |
49 | 175 | } |
50 | | |
51 | 175 | return 0; |
52 | 203 | } |