flmsg/src/include/base64.h

46 lines
1.3 KiB
C++

// ----------------------------------------------------------------------------
// Copyright (C) 2014
// David Freese, W1HKJ
//
// This file is part of flmsg
//
// flrig is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 3 of the License, or
// (at your option) any later version.
//
// flrig is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
// ----------------------------------------------------------------------------
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <string>
typedef unsigned char byte;
class base64 {
#define LINELEN 64
private:
std::string output;
size_t iolen;
size_t iocp;
bool ateof;
byte dtable[256];
byte etable[256];
int linelength;
bool crlf;
void init();
public:
base64(bool t = false) {crlf = t; init(); };
~base64(){};
std::string encode(std::string in);
std::string decode(std::string in);
};