Help for this page

Select Code to Download


  1. or download this
    Function: bgfnTextDecrypt
        Description:
    ...
        Parameters
            String: LPSTR
            Receive String: LPSTR
    
  2. or download this
    #!perl
    use strict;
    ...
    print "Eerk3\n";
    my $decrypt = substr($lpBuffer, 0, $return);
    print "$decrypt\n";
    
  3. or download this
    #!perl
    use strict;
    ...
        
    my $pass = unpack( "L*", $lpBuffer );
    print( "The pass is: $pass\n";