summaryrefslogtreecommitdiffstats
path: root/comm/third_party/botan/src/cli/tss.cpp
blob: 0756616b2a48995c8050d7f8a1be7dcdb0e001e3 (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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
/*
* (C) 2018 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/

#include "cli.h"

#if defined(BOTAN_HAS_THRESHOLD_SECRET_SHARING)
   #include <botan/tss.h>
   #include <botan/hex.h>
   #include <botan/rng.h>
   #include <fstream>
#endif

namespace Botan_CLI {

#if defined(BOTAN_HAS_THRESHOLD_SECRET_SHARING)

class TSS_Split final : public Command
   {
   public:
      TSS_Split() : Command("tss_split M N input --id= --share-prefix=share --share-suffix=tss --hash=SHA-256") {}

      std::string group() const override
         {
         return "tss";
         }

      std::string description() const override
         {
         return "Split a secret into parts";
         }

      void go() override
         {
         const std::string hash_algo = get_arg("hash");
         const std::string input = get_arg("input");
         const std::string id_str = get_arg("id");
         const std::string share_prefix = get_arg("share-prefix");
         const std::string share_suffix = get_arg("share-suffix");
         const size_t N = get_arg_sz("N");
         const size_t M = get_arg_sz("M");

         if(M <= 1 || N <= 1 || M > N || N >= 255)
            throw CLI_Usage_Error("Invalid N/M parameters for secret splitting");

         Botan::secure_vector<uint8_t> secret = slurp_file_lvec(input);

         if(secret.size() > 0xFFFF)
            throw CLI_Usage_Error("Secret is too large for this TSS format");

         std::vector<uint8_t> id = Botan::hex_decode(id_str);

         if(id.empty())
            {
            id.resize(16);
            rng().randomize(id.data(), id.size());
            }

         std::vector<Botan::RTSS_Share> shares =
            Botan::RTSS_Share::split(static_cast<uint8_t>(M), static_cast<uint8_t>(N),
                                     secret.data(), static_cast<uint16_t>(secret.size()),
                                     id, hash_algo, rng());

         for(size_t i = 0; i != shares.size(); ++i)
            {
            const std::string share_name = share_prefix + std::to_string(i + 1) + "." + share_suffix;
            std::ofstream out(share_name.c_str());
            if(!out)
               throw CLI_Error("Failed to open output file " + share_name);

            out.write(reinterpret_cast<const char*>(shares[i].data().data()), shares[i].data().size());
            }

         }

   private:
      Botan::secure_vector<uint8_t> slurp_file_lvec(const std::string& input_file)
         {
         Botan::secure_vector<uint8_t> buf;
         auto insert_fn = [&](const uint8_t b[], size_t l)
            {
            buf.insert(buf.end(), b, b + l);
            };
         this->read_file(input_file, insert_fn, 4096);
         return buf;
         }
   };

BOTAN_REGISTER_COMMAND("tss_split", TSS_Split);

class TSS_Recover final : public Command
   {
   public:
      TSS_Recover() : Command("tss_recover *shares") {}

      std::string group() const override
         {
         return "tss";
         }

      std::string description() const override
         {
         return "Recover a split secret";
         }

      void go() override
         {
         const std::vector<std::string> share_names = get_arg_list("shares");

         if(share_names.empty())
            {
            output() << help_text() << "\n";
            this->set_return_code(1);
            return;
            }

         std::vector<Botan::RTSS_Share> shares;

         for(std::string share_fsname : get_arg_list("shares"))
            {
            auto v = slurp_file(share_fsname);
            shares.push_back(Botan::RTSS_Share(v.data(), v.size()));
            }

         Botan::secure_vector<uint8_t> rec = Botan::RTSS_Share::reconstruct(shares);

         output().write(Botan::cast_uint8_ptr_to_char(rec.data()), rec.size());
         }
   };

BOTAN_REGISTER_COMMAND("tss_recover", TSS_Recover);

#endif

}