forked from google/private-join-and-compute
-
Notifications
You must be signed in to change notification settings - Fork 0
/
client_impl.h
107 lines (89 loc) · 4.25 KB
/
client_impl.h
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
/*
* Copyright 2019 Google Inc.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef OPEN_SOURCE_PRIVATE_INTERSECTION_SUM_CLIENT_IMPL_H_
#define OPEN_SOURCE_PRIVATE_INTERSECTION_SUM_CLIENT_IMPL_H_
#include "crypto/context.h"
#include "crypto/paillier.h"
#include "match.pb.h"
#include "message_sink.h"
#include "private_intersection_sum.pb.h"
#include "private_join_and_compute.pb.h"
#include "protocol_client.h"
#include "util/status.inc"
#include "crypto/ec_commutative_cipher.h"
namespace private_join_and_compute {
// This class represents the "client" part of the intersection-sum protocol,
// which supplies the associated values that will be used to compute the sum.
// This is the party that will receive the sum as output.
class PrivateIntersectionSumProtocolClientImpl : public ProtocolClient {
public:
PrivateIntersectionSumProtocolClientImpl(
Context* ctx, const std::vector<std::string>& elements,
const std::vector<BigNum>& values, int32_t modulus_size);
// Generates the StartProtocol message and sends it on the message sink.
Status StartProtocol(
MessageSink<ClientMessage>* client_message_sink) override;
// Executes the next Client round and creates a new server request, which must
// be sent to the server unless the protocol is finished.
//
// If the ServerMessage is ServerRoundOne, a ClientRoundOne will be sent on
// the message sink, containing the encrypted client identifiers and
// associated values, and the re-encrypted and shuffled server identifiers.
//
// If the ServerMessage is ServerRoundTwo, nothing will be sent on
// the message sink, and the client will internally store the intersection sum
// and size. The intersection sum and size can be retrieved either through
// accessors, or by calling PrintOutput.
//
// Fails with InvalidArgument if the message is not a
// PrivateIntersectionSumServerMessage of the expected round, or if the
// message is otherwise not as expected. Forwards all other failures
// encountered.
Status Handle(const ServerMessage& server_message,
MessageSink<ClientMessage>* client_message_sink) override;
// Prints the result, namely the intersection size and the intersection sum.
Status PrintOutput() override;
bool protocol_finished() override { return protocol_finished_; }
// Utility functions for testing.
int64_t intersection_size() const { return intersection_size_; }
const BigNum& intersection_sum() const { return intersection_sum_; }
private:
// The server sends the first message of the protocol, which contains its
// encrypted set. This party then re-encrypts that set and replies with the
// reencrypted values and its own encrypted set.
StatusOr<PrivateIntersectionSumClientMessage::ClientRoundOne> ReEncryptSet(
const PrivateIntersectionSumServerMessage::ServerRoundOne&
server_message);
// After the server computes the intersection-sum, it will send it back to
// this party for decryption, together with the intersection_size. This party
// will decrypt and output the intersection sum and intersection size.
StatusOr<std::pair<int64_t, BigNum>> DecryptSum(
const PrivateIntersectionSumServerMessage::ServerRoundTwo&
server_message);
Context* ctx_; // not owned
std::vector<std::string> elements_;
std::vector<BigNum> values_;
// The Paillier private key
BigNum p_, q_;
// These values will hold the intersection sum and size when the protocol has
// been completed.
int64_t intersection_size_ = 0;
BigNum intersection_sum_;
std::unique_ptr<ECCommutativeCipher> ec_cipher_;
std::unique_ptr<PrivatePaillier> private_paillier_;
bool protocol_finished_ = false;
};
} // namespace private_join_and_compute
#endif // OPEN_SOURCE_PRIVATE_INTERSECTION_SUM_CLIENT_IMPL_H_