Help for this page

Select Code to Download


  1. or download this
    @uchar = split(//,$ucrypt);
    
  2. or download this
    my @vals = unpack('C*', $ucrypt);
    
  3. or download this
    my $mask = 0x80808080;
    ...
    my @vals = map { $_ & $mask } unpack('N*', $ucrypt);