Partial and Fully Homomorphic Encryption
When a homomorphic encryption scheme supports a single operation on the encrypted data like
- RSA has a modular multiplicative operation
- Elgamal has a modular multiplicative operation
- Goldwasser–Micali cryptosystem has x-or operation
- Paillier cryptosystem has a modular addition operation
it is called partial homomorphic. When they support two operations they are called Fully Homomorphic Encryption (FHE) in the sense that one can build arbitrary circuits with them constrained to some conditions.
The two operations in the FHE scheme are usually addition and multiplication. In the bit-based case, the addition is XOR $\oplus$ and the multiplication is AND gates $\wedge$. Though neither the XOR nor the AND are universal logic gates, when combined they can construct any gate. And note that the randomization on the encryption requires a different design than the usual circuit design.
Public Key!
All FHE schemes that I know are based on public-key. Therefore if the randomization is removed then an attacker can use the public parameters to determine the encrypted values. If one looks at the Ind-CPA game for public-key encryption, we consider that the encryption oracle is free to the adversary. As a concrete example, consider TextBook RSA encryption (it has no padding, insecure, and it is multiplicative) with single-bit encryption then you can immediately deduce it, even for a byte or a word.
This is dangerous and we left it with the seminal paper of Shafi Goldwasser and Silvio Micali
You can also get the notion from the famous ECB picture of tux in Wikipedia.
There are many libraries for FHE that you may look at like HeLib, TFHE, Seal. If you like to read how some small circuits are designed, you can read from here Representing a function as FHE circuit and see some of the implementation papers, too.