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