Hello,
TFHE-rs (the library we are using under the hood) supports signed integers, but we didn’t implement it in fhEVM yet. Clearly, it is planned at some point to support signed integers, but we didn’t see many use cases using signed integers so far. What are you building with signed integers?
As you already noticed, if you substract a number from a uint, it will go from the maximum value of a uint32. Based on that you could implement some logic around it, but I wouldn’t recommend to do this kind of trick.
Thank you for your response. I’m trying to implement the calculation of different statistical operations (mode, median, variance etc) on encrypted numbers in the smart contract.