On Tue, Jun 16, 2020 at 5:18 PM David Santiago <demanuel@gmail.com> wrote: > my uint8 @data = $ed.data[0..$ed.data_size-1].Array; > my Blob $bindata = Blob[uint8].new(@data); Not absolutely sure, but it seems like you are copying the data twice. Try just my $bindata = Blob.new($ed.data[^$ed.data_size]);Thread Previous | Thread Next