forked from microsoft/SealPIR
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pir_server.hpp
39 lines (31 loc) · 1.5 KB
/
pir_server.hpp
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
#pragma once
#include "pir.hpp"
#include <map>
#include <memory>
#include <vector>
#include "pir_client.hpp"
class PIRServer {
public:
PIRServer(const seal::EncryptionParameters ¶ms, const PirParams &pir_params);
// NOTE: server takes over ownership of db and frees it when it exits.
// Caller cannot free db
void set_database(std::unique_ptr<std::vector<seal::Plaintext>> &&db);
void set_database(const std::unique_ptr<const std::uint8_t[]> &bytes, std::uint64_t ele_num, std::uint64_t ele_size);
void preprocess_database();
std::vector<seal::Ciphertext> expand_query(
const seal::Ciphertext &encrypted, std::uint32_t m, uint32_t client_id);
PirReply generate_reply(PirQuery query, std::uint32_t client_id);
void set_galois_key(std::uint32_t client_id, seal::GaloisKeys galkey);
private:
std::shared_ptr<seal::SEALContext> context_;
seal::EncryptionParameters params_; // SEAL parameters
PirParams pir_params_; // PIR parameters
std::unique_ptr<Database> db_;
bool is_db_preprocessed_;
std::map<int, seal::GaloisKeys> galoisKeys_;
std::unique_ptr<seal::Evaluator> evaluator_;
void decompose_to_plaintexts_ptr(const seal::Ciphertext &encrypted, seal::Plaintext *plain_ptr, int logt);
std::vector<seal::Plaintext> decompose_to_plaintexts(const seal::Ciphertext &encrypted);
void multiply_power_of_X(const seal::Ciphertext &encrypted, seal::Ciphertext &destination,
std::uint32_t index);
};