1 // Copyright 2019 The Chromium Authors. All rights reserved.
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 COMPONENTS_BASE32_BASE32_TEST_UTIL_H_
6 #define COMPONENTS_BASE32_BASE32_TEST_UTIL_H_
7 
8 #include <string>
9 
10 #include "base/strings/string_piece.h"
11 
12 namespace base32 {
13 
14 // Decodes the |input| string piece from base32.
15 std::string Base32Decode(base::StringPiece input);
16 
17 }  // namespace base32
18 
19 #endif  // COMPONENTS_BASE32_BASE32_TEST_UTIL_H_
20