blob: 100003cfb03c9f67b7a6ce291e97bfde70d62baf (
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
|
#pragma once
#include <erebos/storage.h>
#include "identity.h"
namespace erebos {
struct ChannelRequestData
{
Ref store(const Storage & st) const;
static optional<ChannelRequestData> load(const Ref &);
const vector<Stored<Signed<IdentityData>>> peers;
const Stored<PublicKexKey> key;
};
typedef Signed<ChannelRequestData> ChannelRequest;
struct ChannelAcceptData
{
Ref store(const Storage & st) const;
static optional<ChannelAcceptData> load(const Ref &);
Stored<class Channel> channel() const;
const Stored<ChannelRequest> request;
const Stored<PublicKexKey> key;
};
typedef Signed<ChannelAcceptData> ChannelAccept;
class Channel
{
public:
Channel(const vector<Stored<Signed<IdentityData>>> & peers,
vector<uint8_t> && key):
peers(peers),
key(std::move(key))
{}
Ref store(const Storage & st) const;
static optional<Channel> load(const Ref &);
static Stored<ChannelRequest> generateRequest(const Storage &,
const Identity & self, const Identity & peer);
static optional<Stored<ChannelAccept>> acceptRequest(const Identity & self,
const Identity & peer, const Stored<ChannelRequest> & request);
vector<uint8_t> encrypt(const vector<uint8_t> &) const;
optional<vector<uint8_t>> decrypt(const vector<uint8_t> &) const;
private:
const vector<Stored<Signed<IdentityData>>> peers;
const vector<uint8_t> key;
};
}
|