Help for this page

Select Code to Download


  1. or download this
    volatile DWORD r32=0;
    ...
    
  2. or download this
    my $check =  sprintf '%x', int rand( 0xffffffff ); ## Bad!! See [roger
    +]'s post below.
    my $check = sprintf '%x', int( rand(0xffff) )<<16 | int( rand( 0xffff 
    +) ); ## Probably OK.