aboutsummaryrefslogtreecommitdiffstats
path: root/src/constructs/tss/tss.h
blob: 6e623c19385479760a6226f83e9753302f5e0dc4 (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
/*
* RTSS (threshold secret sharing)
* (C) 2009 Jack Lloyd
*
* Distributed under the terms of the Botan license
*/

#ifndef BOTAN_RTSS_H__
#define BOTAN_RTSS_H__

#include <botan/secmem.h>
#include <botan/hash.h>
#include <botan/rng.h>
#include <vector>

namespace Botan {

class RTSS_Share
   {
   public:
      /**
      * @arg M the number of shares needed to reconstruct
      * @arg N the number of shares generated
      * @arg secret the secret to split
      * @arg secret_len the length of the secret
      * @arg identifier the 16 byte share identifier
      * @arg rng the random number generator to use
      */
      static std::vector<RTSS_Share>
         split(byte M, byte N,
               const byte secret[], u16bit secret_len,
               const byte identifier[16],
               RandomNumberGenerator& rng);

      /**
      * @arg shares the list of shares
      */
      static SecureVector<byte>
        reconstruct(const std::vector<RTSS_Share>& shares);

      RTSS_Share() {}
      RTSS_Share(const std::string&);

      std::string to_string() const;
      byte share_id() const;

      u32bit size() const { return contents.size(); }
      bool initialized() const { return contents.size(); }
   private:
      SecureVector<byte> contents;
   };

}

#endif