I wanted to build an awesome place for people to discuss module specific issues, but I don't have any more time
for this, and there are much better places to discuss Perl-related issues. I'd recommend asking your question on Stack Overflow or
on Perl Monks.
If you are looking for a Perl tutorial or Perl-related news,
I hope these links will serve you well.
Posted on 2006-08-03 12:18:18-07
by rahedin response to 2569
Re: input must be 8 bytes long at DES.pm line 58.
Possible culprit could be encoding.
Your input has to have characters 8 byte long. If it's in e.g. utf8, change it this way:
from_to ($input,'utf8','iso-8859-1') where from_to must be imported from Encode module.
Radek