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