nsingal

Results 1 issues of nsingal

pub enum FheProgramInput { /** * The argument is a ciphertext. */ Ciphertext(Ciphertext), /** * The argument is a plaintext. */ Plaintext(Box), } The issue is this enum here. We...