the value is still decrypted if it is 1 or 0 since x*1=x and x*0=0 so this was wrong

This commit is contained in:
Adam
2015-09-12 13:53:13 -04:00
parent 5116d09fa0
commit 53234351f9

View File

@@ -48,7 +48,6 @@ public class IMul extends Instruction
encryption.change(pci, o);
}
else encKey = one.encryption;
}
else if (two.encryption != 0)
{
@@ -63,7 +62,6 @@ public class IMul extends Instruction
encryption.change(pci, o);
}
else encKey = two.encryption;
}
}