Help for this page

Select Code to Download


  1. or download this
    sub bigint_to_bytearray {
      my $bigint = shift;
      my @bytes;
    ...
      }
      return @bytes;
    }
    
  2. or download this
    ## This is the one I would like to speed up
    ## The array looks something like (127,6,64,27,166,33 .... )
    sub bytearray_to_bigint {
    ...
      }
      return $result;
    }