Sunscreen
Sunscreen copied to clipboard
A compiler for fully homomorphic encryption and zero knowledge proofs
Fix typo
View preview [here](https://sunscreen-tech.github.io/temp-docs/)
Allow setting FHE params without FHE programs. This changes the semantic meaning of the markers on the `Compiler` struct. Now `Compiler` means that the compiler has derivable FHE parameters, either...
Tracking an issue I faced during the ethglobal nyc hackathon. During the hackathon, I wanted to do things like implement counters using field elements. Doing so looked something like the...
It seems that sunscreen only utilized BFV scheme in SEAL, is there any examples for CKKS and BGV?
i hope that seal_fhe can support `seal/util` api, can you help
We can make valid ciphertexts where the sampled $u, e_1, e_2$ are all set to zero. This would allow for `fhe_var!` created variables to be legitimate `Cipher` nodes while still...
pub enum FheProgramInput { /** * The argument is a ciphertext. */ Ciphertext(Ciphertext), /** * The argument is a plaintext. */ Plaintext(Box), } The issue is this enum here. We...