pir_client.cpp 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. #include "pir_client.hpp"
  2. using namespace std;
  3. using namespace seal;
  4. using namespace seal::util;
  5. PIRClient::PIRClient(const EncryptionParameters &enc_params,
  6. const PirParams &pir_params) :
  7. enc_params_(enc_params),
  8. pir_params_(pir_params){
  9. context_ = make_shared<SEALContext>(enc_params, true);
  10. keygen_ = make_unique<KeyGenerator>(*context_);
  11. PublicKey public_key;
  12. keygen_->create_public_key(public_key);
  13. SecretKey secret_key = keygen_->secret_key();
  14. if(pir_params_.enable_symmetric){
  15. encryptor_ = make_unique<Encryptor>(*context_, secret_key);
  16. }
  17. else{
  18. encryptor_ = make_unique<Encryptor>(*context_, public_key);
  19. }
  20. decryptor_ = make_unique<Decryptor>(*context_, secret_key);
  21. evaluator_ = make_unique<Evaluator>(*context_);
  22. encoder_ = make_unique<BatchEncoder>(*context_);
  23. }
  24. PirQuery PIRClient::generate_query(uint64_t desiredIndex) {
  25. indices_ = compute_indices(desiredIndex, pir_params_.nvec);
  26. vector<vector<Ciphertext> > result(pir_params_.d);
  27. int N = enc_params_.poly_modulus_degree();
  28. Plaintext pt(enc_params_.poly_modulus_degree());
  29. for (uint32_t i = 0; i < indices_.size(); i++) {
  30. uint32_t num_ptxts = ceil( (pir_params_.nvec[i] + 0.0) / N);
  31. // initialize result.
  32. cout << "Client: index " << i + 1 << "/ " << indices_.size() << " = " << indices_[i] << endl;
  33. cout << "Client: number of ctxts needed for query = " << num_ptxts << endl;
  34. for (uint32_t j =0; j < num_ptxts; j++){
  35. pt.set_zero();
  36. if (indices_[i] >= N*j && indices_[i] <= N*(j+1)){
  37. uint64_t real_index = indices_[i] - N*j;
  38. uint64_t n_i = pir_params_.nvec[i];
  39. uint64_t total = N;
  40. if (j == num_ptxts - 1){
  41. total = n_i % N;
  42. }
  43. uint64_t log_total = ceil(log2(total));
  44. cout << "Client: Inverting " << pow(2, log_total) << endl;
  45. pt[real_index] = invert_mod(pow(2, log_total), enc_params_.plain_modulus());
  46. }
  47. Ciphertext dest;
  48. if(pir_params_.enable_symmetric){
  49. encryptor_->encrypt_symmetric(pt, dest);
  50. }
  51. else{
  52. encryptor_->encrypt(pt, dest);
  53. }
  54. result[i].push_back(dest);
  55. }
  56. }
  57. return result;
  58. }
  59. uint64_t PIRClient::get_fv_index(uint64_t element_index) {
  60. return static_cast<uint64_t>(element_index / pir_params_.elements_per_plaintext);
  61. }
  62. uint64_t PIRClient::get_fv_offset(uint64_t element_index) {
  63. return element_index % pir_params_.elements_per_plaintext;
  64. }
  65. vector<uint8_t> PIRClient::decode_reply(PirReply reply, uint64_t offset){
  66. Plaintext result = decode_reply(reply);
  67. uint32_t N = enc_params_.poly_modulus_degree();
  68. uint32_t logt = floor(log2(enc_params_.plain_modulus().value()));
  69. // Convert from FV plaintext (polynomial) to database element at the client
  70. vector<uint8_t> elems(N * logt / 8);
  71. vector<uint64_t> coeffs;
  72. encoder_->decode(result, coeffs);
  73. coeffs_to_bytes(logt, coeffs, elems.data(), (N * logt) / 8);
  74. return std::vector<uint8_t>(elems.begin() + offset * pir_params_.ele_size, elems.begin() + (offset + 1) * pir_params_.ele_size);
  75. }
  76. Plaintext PIRClient::decode_reply(PirReply reply) {
  77. uint32_t exp_ratio = pir_params_.expansion_ratio;
  78. uint32_t recursion_level = pir_params_.d;
  79. vector<Ciphertext> temp = reply;
  80. uint64_t t = enc_params_.plain_modulus().value();
  81. for (uint32_t i = 0; i < recursion_level; i++) {
  82. cout << "Client: " << i + 1 << "/ " << recursion_level << "-th decryption layer started." << endl;
  83. vector<Ciphertext> newtemp;
  84. vector<Plaintext> tempplain;
  85. for (uint32_t j = 0; j < temp.size(); j++) {
  86. Plaintext ptxt;
  87. decryptor_->decrypt(temp[j], ptxt);
  88. #ifdef DEBUG
  89. cout << "Client: reply noise budget = " << decryptor_->invariant_noise_budget(temp[j]) << endl;
  90. #endif
  91. //cout << "decoded (and scaled) plaintext = " << ptxt.to_string() << endl;
  92. tempplain.push_back(ptxt);
  93. #ifdef DEBUG
  94. cout << "recursion level : " << i << " noise budget : ";
  95. cout << decryptor_->invariant_noise_budget(temp[j]) << endl;
  96. #endif
  97. if ((j + 1) % exp_ratio == 0 && j > 0) {
  98. // Combine into one ciphertext.
  99. Ciphertext combined = compose_to_ciphertext(tempplain);
  100. newtemp.push_back(combined);
  101. tempplain.clear();
  102. // cout << "Client: const term of ciphertext = " << combined[0] << endl;
  103. }
  104. }
  105. cout << "Client: done." << endl;
  106. cout << endl;
  107. if (i == recursion_level - 1) {
  108. assert(temp.size() == 1);
  109. return tempplain[0];
  110. } else {
  111. tempplain.clear();
  112. temp = newtemp;
  113. }
  114. }
  115. // This should never be called
  116. assert(0);
  117. Plaintext fail;
  118. return fail;
  119. }
  120. GaloisKeys PIRClient::generate_galois_keys() {
  121. // Generate the Galois keys needed for coeff_select.
  122. vector<uint32_t> galois_elts;
  123. int N = enc_params_.poly_modulus_degree();
  124. int logN = get_power_of_two(N);
  125. //cout << "printing galois elements...";
  126. for (int i = 0; i < logN; i++) {
  127. galois_elts.push_back((N + exponentiate_uint(2, i)) / exponentiate_uint(2, i));
  128. //#ifdef DEBUG
  129. // cout << galois_elts.back() << ", ";
  130. //#endif
  131. }
  132. GaloisKeys gal_keys;
  133. keygen_->create_galois_keys(galois_elts, gal_keys);
  134. return gal_keys;
  135. }
  136. Ciphertext PIRClient::compose_to_ciphertext(vector<Plaintext> plains) {
  137. size_t encrypted_count = 2;
  138. auto coeff_count = enc_params_.poly_modulus_degree();
  139. auto coeff_mod_count = enc_params_.coeff_modulus().size();
  140. uint64_t plainMod = enc_params_.plain_modulus().value();
  141. int logt = floor(log2(plainMod));
  142. Ciphertext result(*context_);
  143. result.resize(encrypted_count);
  144. // A triple for loop. Going over polys, moduli, and decomposed index.
  145. for (int i = 0; i < encrypted_count; i++) {
  146. uint64_t *encrypted_pointer = result.data(i);
  147. for (int j = 0; j < coeff_mod_count; j++) {
  148. // populate one poly at a time.
  149. // create a polynomial to store the current decomposition value
  150. // which will be copied into the array to populate it at the current
  151. // index.
  152. double logqj = log2(enc_params_.coeff_modulus()[j].value());
  153. int expansion_ratio = ceil(logqj / logt);
  154. uint64_t cur = 1;
  155. // cout << "Client: expansion_ratio = " << expansion_ratio << endl;
  156. for (int k = 0; k < expansion_ratio; k++) {
  157. // Compose here
  158. const uint64_t *plain_coeff =
  159. plains[k + j * (expansion_ratio) + i * (coeff_mod_count * expansion_ratio)]
  160. .data();
  161. for (int m = 0; m < coeff_count; m++) {
  162. if (k == 0) {
  163. *(encrypted_pointer + m + j * coeff_count) = *(plain_coeff + m) * cur;
  164. } else {
  165. *(encrypted_pointer + m + j * coeff_count) += *(plain_coeff + m) * cur;
  166. }
  167. }
  168. cur <<= logt;
  169. }
  170. }
  171. }
  172. return result;
  173. }