After imul runs the value is no longer encrypted

This commit is contained in:
Adam
2015-09-10 14:17:47 -04:00
parent 2cfba32e28
commit c8d1ec9e25

View File

@@ -48,12 +48,7 @@ public class IMul extends Instruction
encryption.change(pci, o); encryption.change(pci, o);
} }
else encKey = one.encryption;
// if (one.encryption == other)
// {
// System.out.println("decrr");
// }
encKey = one.encryption;
} }
else if (two.encryption != 0) else if (two.encryption != 0)
{ {
@@ -68,7 +63,7 @@ public class IMul extends Instruction
encryption.change(pci, o); encryption.change(pci, o);
} }
encKey = two.encryption; else encKey = two.encryption;
} }
} }