blob: 34711857cf5c08a3bfdcb357d22ef29420ff4002 (
plain)
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
/*
* Encode/decode base64 strings
* (C) 2009 Jack Lloyd
*
* Distributed under the terms of the Botan license
*/
#include "apps.h"
#include <fstream>
#include <iostream>
#include <string>
#include <vector>
#include <cstring>
#include <cstdlib>
#include <botan/b64_filt.h>
#include <botan/pipe.h>
int base64_main(int argc, char* argv[])
{
if(argc < 2)
{
std::cout << "Usage: " << argv[0] << " [-w] [-c n] [-e|-d] files...\n"
" -e : Encode input to base64 strings (default) \n"
" -d : Decode base64 input\n"
" -w : Wrap lines\n"
" -c n: Wrap lines at column n, default 78\n";
return 1;
}
int column = 78;
bool wrap = false;
bool encoding = true;
std::vector<std::string> files;
for(int j = 1; argv[j] != nullptr; j++)
{
std::string this_arg = argv[j];
if(this_arg == "-w")
wrap = true;
else if(this_arg == "-e");
else if(this_arg == "-d")
encoding = false;
else if(this_arg == "-c")
{
if(argv[j+1])
{ column = atoi(argv[j+1]); j++; }
else
{
std::cout << "No argument for -c option" << std::endl;
return 1;
}
}
else files.push_back(argv[j]);
}
for(unsigned int j = 0; j != files.size(); j++)
{
std::istream* stream;
if(files[j] == "-") stream = &std::cin;
else stream = new std::ifstream(files[j].c_str());
if(!*stream)
{
std::cout << "ERROR, couldn't open " << files[j] << std::endl;
continue;
}
Botan::Filter* f = nullptr;
if(encoding)
f = new Botan::Base64_Encoder(wrap, column);
else
f = new Botan::Base64_Decoder;
Botan::Pipe pipe(f);
pipe.start_msg();
*stream >> pipe;
pipe.end_msg();
pipe.set_default_msg(j);
std::cout << pipe;
if(files[j] != "-") delete stream;
}
return 0;
}
|