Help for this page

Select Code to Download


  1. or download this
        my @ar = $t1 =~ /(..)/g;
        $foo->delete("1.0","end");
        foreach (@ar) {
            $foo->insert("1.0",chr(pack("H*",$_)));
    
        }
    
  2. or download this
    $txt3->delete("1.0","end");
        my $hexor = unpack('h*',pack('h*',$t1) ^ pack('h*',$t2));
        $txt3->insert("1.0",$hexor);
    
  3. or download this
    my $hhh = unpack('h*',pack('h*',"20") ^ pack('h*',"61")); #xor ' ' and
    + 'a' should result in 'A'
        print unpack('h*',$hhh);
    
  4. or download this
    sub parse () {
    
        my $t1 = $txt1->Contents();
    ...
            }
        }
    }