Quantum cryptography

  • Thread starter Thread starter leye
  • Start date Start date
L

leye

Hi all,
I'm working on a class research project about quantum cryptography and
I found out this is very interesting information. Could anyone of you
give me more information on this subject? thanks.
Yen Le
 
Hi

This is a C# ng, what makes you think you can get a good answer here?
 
bool quantum = GetQuantumBoolean();

if(quantum)
{
// do normal stuff
}
else if(!quantum)
{
// do normal stuff
}
else
{
// here is where you put the quantum code. ;-)
}
 
Simon Tamman said:
bool quantum = GetQuantumBoolean();

if(quantum)
{
// do normal stuff
}
else if(!quantum)
{
// do normal stuff
}
else
{
// here is where you put the quantum code. ;-)
}

lol, Are you "certain" that's correct?

-- Alan
 
Simon said:
[quantum code, heh-heh]

I'm probably overthinking this, but it strikes me that the "quantum
code" could possibly also run if the variable was declared as volatile
and its value changed twice between the first "if" and the last
"else".

Also, I am now envisioning future errors like "object reference set to
*two* instances of an object".

Eq.
 
Paul E Collins said:
Also, I am now envisioning future errors like "object reference set to
*two* instances of an object".

And maybe something like

volatile const q = [quantum expr]

-- Alan
 
Back
Top