blob: 5fd06f9e3018e830b638298bd066a72e379dd60b (
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
|