| 207 | } |
| 208 | } |
| 209 | void TenSEALContext::decrypt(const Ciphertext& encrypted, |
| 210 | Plaintext& destination) const { |
| 211 | return this->decryptor()->decrypt(encrypted, destination); |
| 212 | } |
| 213 | |
| 214 | void TenSEALContext::decrypt(const SecretKey& sk, const Ciphertext& encrypted, |
| 215 | Plaintext& destination) const { |
nothing calls this directly
no test coverage detected