| 25 | |
| 26 | template <typename... Args> |
| 27 | static encrypted_t Create(Args&&... args) { |
| 28 | return shared_ptr<BFVVector>( |
| 29 | new BFVVector(std::forward<Args>(args)...)); |
| 30 | } |
| 31 | |
| 32 | /** |
| 33 | * Decrypts and returns the plaintext representation of the encrypted vector |
nothing calls this directly
no outgoing calls
no test coverage detected