Home
last modified time | relevance | path

Searched refs:ciphertextVector (Results 1 – 3 of 3) sorted by relevance

/dports/security/palisade/palisade-release-d76213499af44558170cca6c72c5314755fec23c/src/pke/lib/
H A Dcryptocontext.cpp399 const vector<Ciphertext<Element>>& ciphertextVector) const { in EvalMerge()
400 if (ciphertextVector[0] == nullptr || in EvalMerge()
401 Mismatched(ciphertextVector[0]->GetCryptoContext())) in EvalMerge()
408 ciphertextVector[0]->GetKeyTag()); in EvalMerge()
410 auto rv = GetEncryptionAlgorithm()->EvalMerge(ciphertextVector, in EvalMerge()
/dports/security/palisade/palisade-release-d76213499af44558170cca6c72c5314755fec23c/src/pke/include/
H A Dpubkeylp.h2808 const vector<Ciphertext<Element>> &ciphertextVector, in EvalMerge() argument
2810 if (ciphertextVector.size() == 0) in EvalMerge()
2816 ciphertextVector[0]->GetCryptoParameters(); in EvalMerge()
2818 std::make_shared<CiphertextImpl<Element>>(*(ciphertextVector[0]))); in EvalMerge()
2820 auto cc = ciphertextVector[0]->GetCryptoContext(); in EvalMerge()
2823 if (ciphertextVector[0]->GetEncodingType() == CKKSPacked) { in EvalMerge()
2833 for (size_t i = 1; i < ciphertextVector.size(); i++) { in EvalMerge()
2835 newCiphertext, EvalAtIndex(EvalMult(ciphertextVector[i], plaintext), in EvalMerge()
4178 const vector<Ciphertext<Element>> &ciphertextVector, in EvalMerge() argument
4181 if (!ciphertextVector.size()) in EvalMerge()
[all …]
H A Dcryptocontext.h2296 const vector<Ciphertext<Element>>& ciphertextVector) const; in ReadTopology()