Steve Steiner

1,951
reputation
123 views

Registered User

name Steve Steiner
member for 1 year
seen Dec 14 at 4:06
website
location US
age 36
Dec
8
awarded  Popular Question
Nov
29
comment Are there public key cryptography algorithms that are provably NP-hard to defeat?
Ah ha! ... and on closer reading the paper that published the attack also published a fix! I hope somone with edit capablity can fix McElise-> McEliece in the original answer. This means there is a proposed encryption scheme that meets the parameters with no currently known successful attacks.
Nov
29
comment What’s the purpose of the nop opcode?
There is mass confusion in these answers between the MSIL nop instruction emitted by the language compiler into the assembly and the x86 nop instructions (on that platform) emitted by the JIT compiler when the assembly is run. [In fact the accepted answer is about x86 nops, and has no relation to MSIL.] Ideally this question should get split into 2 different questions: purpose of MSIL::nop? and purpose of native platform nop?
Nov
29
comment What’s the purpose of the nop opcode?
I implemented the debugger support in VS for Edit and continue (I did not implement the CLR or compiler parts). Nops are part of the story to ensure correct mappings from old to new version of a method (specifically in the cases of jumps out of exeception handling code). However, replacing the MSIL is done on a whole function basis. For CLR managed code it is not necessary to 'leave room' in the msil to accomplish that part. What you say here is correct with respect to native Edit and continue.
Nov
29
comment Are there public key cryptography algorithms that are provably NP-hard to defeat?
Hmmm: Search "McEliece". en.wikipedia.org/wiki/McEliece_cryptosystem/… and it looks like it was cracked w/o a Quantum computer: scientificblogging.com/news_releases/… This defintely seems to indicate it is still an open research topic.
Oct
6
awarded  Nice Answer
Sep
19
accepted Remote debugging accross domains
Sep
1
awarded  Yearling
Aug
18
awarded  Nice Answer
Aug
2
accepted Iterator block generates try-fault in IL
Aug
1
comment What should be considered when deciding between explicit vs implicit paging in a UI?
I should note that Outlook Web access updated to use an infinite scroll. So OWA is no longer the counter example it once was :-)
Aug
1
awarded  Scholar
Aug
1
answered Iterator block generates try-fault in IL
Aug
1
answered How do I create a Visual Studio add in to analyze code