File: Base64.h

package info (click to toggle)
passenger 2.2.11debian-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 11,576 kB
  • ctags: 28,138
  • sloc: cpp: 66,323; ruby: 9,646; ansic: 2,425; python: 141; sh: 56; makefile: 29
file content (57 lines) | stat: -rw-r--r-- 1,762 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/*
 * Base64 encoding and decoding routines
 *
 * Copyright (C) 2004-2008 René Nyffenegger
 * Modified by Phusion for inclusion in Phusion Passenger.
 *
 * This source code is provided 'as-is', without any express or implied
 * warranty. In no event will the author be held liable for any damages
 * arising from the use of this software.
 *
 * Permission is granted to anyone to use this software for any purpose,
 * including commercial applications, and to alter it and redistribute it
 * freely, subject to the following restrictions:
 *
 * 1. The origin of this source code must not be misrepresented; you must not
 *    claim that you wrote the original source code. If you use this source code
 *    in a product, an acknowledgment in the product documentation would be
 *    appreciated but is not required.
 *
 * 2. Altered source versions must be plainly marked as such, and must not be
 *    misrepresented as being the original source code.
 *
 * 3. This notice may not be removed or altered from any source distribution.
 *
 * René Nyffenegger rene.nyffenegger@adp-gmbh.ch
 *
 */

#ifndef _PASSENGER_BASE64_H_
#define _PASSENGER_BASE64_H_

#include <iostream>
#include <string>
#include "StaticString.h"

namespace Passenger {

using namespace std;

class Base64 {
public:
	static string encode(const StaticString &data) {
		return encode((const unsigned char *) data.data(), data.size());
	}
	
	static string decode(const StaticString &base64_data) {
		return decode((const unsigned char *) base64_data.data(), base64_data.size());
	}
	
	static string encode(const unsigned char *data, unsigned int len);
	
	static string decode(const unsigned char *base64_data, unsigned int len);
};

} // namespace Passenger

#endif /* _PASSENGER_BASE64_H_ */