Changeset 1212
- Timestamp:
- 08/16/08 14:11:12 (3 months ago)
- Files:
-
- fwknop/trunk/fwknopd (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
fwknop/trunk/fwknopd
r1211 r1212 2245 2245 my $gpg_sign_id = ''; 2246 2246 2247 unless ($msg =~ /^hQ/) { 2248 print STDERR localtime() . " [+] Adding 'hQ' prefix to ", 2249 "base64-encoded message.\n" if $debug; 2250 $msg = 'hQ' . $msg; 2251 } 2252 2247 2253 my $equals_padding = &base64_equals_padding($msg); 2248 2254 … … 2253 2259 } 2254 2260 2255 unless ($msg =~ /^hQ/) { 2256 print STDERR localtime() . " [+] Adding 'hQ' prefix to ", 2257 "base64-encoded message.\n" if $debug; 2258 $msg = 'hQ' . $msg; 2261 if ($debug) { 2262 print STDERR localtime() . " [+] decode_base64() against the ", 2263 "following data: $msg\n"; 2259 2264 } 2260 2265 … … 2413 2418 "with '$equals_padding'.\n" if $debug; 2414 2419 $msg .= $equals_padding; 2420 } 2421 2422 if ($debug) { 2423 print STDERR localtime() . " [+] decode_base64() aginast the ", 2424 "following data: $msg\n"; 2415 2425 } 2416 2426
