multiply method
Multiplies two Ciphertexts.
Implementation
Ciphertext multiply(Ciphertext a, Ciphertext b) {
Pointer ptr = _c_multiply(library, a.obj, b.obj);
raiseForStatus();
return Ciphertext.fromPointer(backend, ptr);
}
Multiplies two Ciphertexts.
Ciphertext multiply(Ciphertext a, Ciphertext b) {
Pointer ptr = _c_multiply(library, a.obj, b.obj);
raiseForStatus();
return Ciphertext.fromPointer(backend, ptr);
}