blob: 9388712539207cf2c44572bd07bbc58fa56a7a57 (
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
|
/*
* (C) 2014,2015 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#include "cli.h"
#if defined(BOTAN_HAS_ASN1)
#include <botan/asn1_print.h>
#if defined(BOTAN_HAS_PEM_CODEC)
#include <botan/pem.h>
#endif
namespace Botan_CLI {
class ASN1_Printer final : public Command
{
public:
ASN1_Printer() : Command("asn1print --pem file") {}
void go() override
{
const std::string input = get_arg("file");
std::vector<uint8_t> contents;
if(flag_set("pem") || (input.size() > 4 && input.substr(input.size() - 4) == ".pem"))
{
#if defined(BOTAN_HAS_PEM_CODEC)
std::string pem_label;
contents = unlock(Botan::PEM_Code::decode(slurp_file_as_str(input), pem_label));
#else
throw CLI_Error_Unsupported("PEM decoding not available in this build");
#endif
}
else
{
contents = slurp_file(input);
}
// TODO make these configurable
const size_t LIMIT = 4 * 1024;
const size_t BIN_LIMIT = 1024;
const bool PRINT_CONTEXT_SPECIFIC = true;
Botan::ASN1_Pretty_Printer printer(LIMIT, BIN_LIMIT, PRINT_CONTEXT_SPECIFIC);
printer.print_to_stream(output(), contents.data(), contents.size());
}
};
BOTAN_REGISTER_COMMAND("asn1print", ASN1_Printer);
}
#endif // BOTAN_HAS_ASN1 && BOTAN_HAS_PEM_CODEC
|