in reply to Re^2: How to read encrypted data from informix database into a single variable
in thread How to read encrypted data from informix database into a single variable
while(<$input>) { chomp; my $var = pack("H*", $_); die "holy smokes, my hex-dump file is bad" unless length $var == 3 +2; }
-Paul
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: How to read encrypted data from informix database into a single variable
by Dev (Initiate) on May 16, 2007 at 09:07 UTC |