blob: 6927607c8f4b55275471d256be4df24f2da2e732 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/**
* @file llbase32.h
* @brief base32 encoding that returns a std::string
* @author James Cook
*
* Copyright (c) 2007-$CurrentYear$, Linden Research, Inc.
* $License$
*/
#ifndef LLBASE32_H
#define LLBASE32_h
class LLBase32
{
public:
static std::string encode(const U8* input, size_t input_size);
};
#endif
|