You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, this project does not support decrypting branches encrypted with homomorphic encryption.
Here's a basic representation of how HM works in eaz:
// pretend this is virtualized codevarinput=int.Parse(Console.ReadLine());if(Encrypt(input)==encryptedConstant){// Homomorphic Encryption Start VM OpCodevaroldReader=VM.VMInstructionsReader;VM.VMInstructionsReader=newVMInstructionsReader(decryptionKey:input);// next instructions will be decrypted with the new keyConsole.WriteLine("homomorphic encryption woah");// Homomorphic Encryption End VM OpCodeVM.VMInstructionsReader=oldReader;}// next instructions will be decrypted with the original decryption keyConsole.WriteLine("this uses the original instructions reader");
Untested but looks like it can be nested too.
The text was updated successfully, but these errors were encountered:
Currently, this project does not support decrypting branches encrypted with homomorphic encryption.
Here's a basic representation of how HM works in eaz:
Untested but looks like it can be nested too.
The text was updated successfully, but these errors were encountered: