How would I convert this into a loop and not to use the pointer.

byte[] InputBuffer = new byte[8];
unsafe {
      fixed (byte* pInputBuffer = InputBuffer) {
         ((long*)pInputBuffer)[0] = value;
      }
}

I am trying to use the code from this page: query string parameter obfuscation

link|improve this question
feedback

1 Answer

There's no looping here. You could use BitConverter.GetBytes instead of the unsafe type-punning cast.

byte[] InputBuffer = BitConverter.GetBytes(value);

replaces all six original lines of code.

link|improve this answer
Indeed. The answer to the other question appears to be deliberately opaque and showoffy. The BitConverter call is much more readable and probably has no extra performance cost compared to the unsafe code (especially when taken in the context of all the crypto stuff that's going on in the answer to the other question). – LukeH Feb 3 '11 at 3:50
1  
@LukeH: BitConverter probably does the type-punning, but since it's in an assembly signed by Microsoft, it can be used in all sorts of partial-trust scenarios, the caller remains verifiable and after inlining in the JIT, I'd expect the machine code to be exactly the same. Subverting the type system in this particular case doesn't have any security ramifications, because BitConverter requires the inputs and outputs to be primitive numeric types. – Ben Voigt Feb 3 '11 at 3:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.