Re: byte count

2003-01-05 Thread zentara
On Sat, 04 Jan 2003 17:32:22 -0500, [EMAIL PROTECTED] (Mark Goland) wrote: >no, I want to use one of Crypt modules which expacts to be passed strings of >n*16 bytes. How do I go about genereting such blocks ?? #this sub makes all data blocksize of 16 bytes. sub get16 { my $data = shift;

Re: byte count

2003-01-04 Thread Mark Goland
l" <[EMAIL PROTECTED]> Sent: Saturday, January 04, 2003 5:24 AM Subject: Re: byte count > On Sat, Jan 04, 2003 at 05:06:44AM -0500, Mark Goland wrote: > > > hi , I am having a hard time matching n bits at a time. basicly I have a > > string which can be X bytes long, I wa

Re: byte count

2003-01-04 Thread Paul Johnson
On Sat, Jan 04, 2003 at 05:06:44AM -0500, Mark Goland wrote: > hi , I am having a hard time matching n bits at a time. basicly I have a > string which can be X bytes long, I want to creat an array of N bytes long. > So lets say X=23 and N=5, I would have an array of 5, for of which would be > 5 by

byte count

2003-01-04 Thread Mark Goland
hi , I am having a hard time matching n bits at a time. basicly I have a string which can be X bytes long, I want to creat an array of N bytes long. So lets say X=23 and N=5, I would have an array of 5, for of which would be 5 bytes long. Any idea's ?? are there any modules that can split up string