multiply method

Ciphertext multiply(
  1. Ciphertext a,
  2. Ciphertext b
)

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);
}