Help for this page
sub bigint_to_bytearray { my $bigint = shift; my @bytes; ... } return @bytes; }
## 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; }